VeryGoodOpenSource / VeryGoodOpenSource/vgv-ai-flutter-plugin
feat: add vgv-bump-version skill
Nobody has claimed this yet.
- Dominant language
- Shell
- Stars
- 162
- Forks
- 23
- Avg merge
- 2d 22h
- Merged PRs (30d)
- 4
Description
Description
Proposal to add a vgv-bump-version skill to the plugin that automates the Flutter app version bump workflow — from computing the new version to committing the change on a dedicated release branch.
What it does
The skill updates the version field in pubspec.yaml and commits the change on a dedicated release branch. It accepts an optional explicit version (e.g. 5.21.0); when omitted, it analyzes recent git commits and proposes a version following Semantic Versioning 2.0.0
The skill presents its reasoning and the proposed version to the user for confirmation before making any changes.
Workflow
- Read current
version: MAJOR.MINOR.PATCH+BUILDfrompubspec.yaml - Compute new version (explicit argument or SemVer analysis of commits since last tag)
- Update
pubspec.yaml - Confirm with user before proceeding
- Create branch
chore/Release-preparation-X.Y.Z - Commit:
chore(version): bump version to X.Y.Z+BUILD
Usage
/vgv-bump-version # auto-proposes version from commits
/vgv-bump-version 5.21.0 # explicit version
Requirements
- All CI/CD checks are passing.
- There is no drop in the test coverage percentage.
Additional Context
No response
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by inspecting the plugin's existing skill structure, then use pubspec.yaml and recent git commits or tags to trace the version-bump workflow. Done means the skill supports an explicit or proposed SemVer version, asks for confirmation, updates pubspec.yaml, creates the specified release branch, and commits the change with the required message.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- dart, flutter, git
- Domain
- release, tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 52/100