create-pr
Create a pull request
Stage uncommitted changes, commit them, push the branch, and open a pull request on the project's Git hosting platform.
Steps checklist
- Step 0: Parse arguments
- Step 1: Validate (skip if
SKIP_CHECKS) - Step 2: Assess git state and determine base branch
- Step 3: Stage and commit
- Step 4: Push
- Step 5: Run CI checks (skip if
SKIP_CHECKS) - Step 6: Open PR
Important
- Do not push before the user confirms the commit.
- Use the current branch as the source; target is
BASE_BRANCH(determined in Step 2).
More from verygoodopensource/vgv-wingspan
create
Scaffolds a new project by routing to the right companion plugin's create skill. Use when user says "create a project", "new flutter app", "start a dart package", "scaffold", or asks to set up a new codebase.
4debrief
Produces a structured post-incident analysis — timeline, root cause, and actionable follow-ups — while context is fresh. Use when user says "debrief", "post-mortem", "incident review", or "root cause analysis".
4hotfix
Applies a minimal, targeted fix for emergency bugs — enforces review and testing without brainstorm or planning phases.
4rebase
Rebases the current feature branch onto the base branch (main/master/develop). Use when user says "rebase", "sync branch", or "update branch".
4build
Executes an implementation plan — writes code and tests, runs quality review, and ships a pull request. Use when user says "build this", "implement the plan", "start coding", "execute the plan", or "ship it".
4plan
Turns high-level brainstorming and ideas into well-structured, actionable implementation plans. Use when user says "plan this", "create a plan", "how should we implement", or "write an implementation plan".
4