You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,9 +98,7 @@ Wingspan operates at a higher level, orchestrating agentic workflows across the
98
98
|[**Build**](skills/build/SKILL.md)|`/build <plan file path>`| Execute a plan — write code and tests, run quality review, ship a PR |
99
99
|[**Review**](skills/review/SKILL.md)|`/review [path]`| Run quality review agents on demand — assess code quality and identify issues |
100
100
|[**Hotfix**](skills/hotfix/SKILL.md)|`/hotfix <bug description>`| Apply a minimal, targeted fix for emergency bugs — enforces review and testing without brainstorm or planning |
101
-
|[**Create Branch**](skills/create-branch/SKILL.md)|`/create-branch`| Set up a workspace (branch or worktree) before writing artifacts |
102
101
|[**Create**](skills/create/SKILL.md)|`/create <what to create>`| Scaffold a new project by routing to the right companion plugin |
103
-
|[**Create Commit**](skills/create-commit/SKILL.md)|`/create-commit`| Stage and commit changes using conventional commit messages |
104
102
|[**Create PR**](skills/create-pr/SKILL.md)|`/create-pr`| Validate (formatter, linter, tests, and CI checks), stage, commit, push, and open a pull request on the project's Git hosting platform — aborts on any failure |
105
103
|[**Rebase**](skills/rebase/SKILL.md)|`/rebase`| Rebase the current feature branch onto the base branch to stay up-to-date |
106
104
|[**Debrief**](skills/debrief/SKILL.md)|`/debrief <incident or context>`| Produce a structured post-incident analysis — timeline, root cause, and actionable follow-ups |
Copy file name to clipboardExpand all lines: skills/brainstorm/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,9 +101,9 @@ Use **AskUserQuestion tool** to ask which approach the user prefers.
101
101
102
102
#### 1.4. Set up workspace
103
103
104
-
Before writing any files, ensure the session is on a feature branch:
104
+
Before writing any files, ensure the session is not on the base branch:
105
105
106
-
-Call @create-branch to check and optionally create a working branch or worktree.
106
+
-Run `git rev-parse --abbrev-ref HEAD`. If the current branch is a base branch (`main`, `master`, or `develop`), use **AskUserQuestion**to offer creating a feature branch — `git checkout -b <type>/<kebab-topic>`, name under 60 characters — before writing. If already on a feature branch, continue without prompting.
Copy file name to clipboardExpand all lines: skills/create-pr/SKILL.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
name: create-pr
3
3
description: Stage, commit, push, and open a pull request following project conventions and the Conventional Commits spec. Accepts optional skip-checks argument to bypass validation when called from /build.
4
-
when_to_use: Use when user says "create a PR", "open a PR", "ship it", "submit a pull request", or "open a merge request".
4
+
when_to_use: Use when user says "create a PR", "open a PR", "ship it", "submit a pull request", or "open a merge request", or when work on a branch is complete and ready to publish for review.
5
5
argument-hint: "[optional: skip-checks | ticket/issue number e.g. VGV-123 | short description]"
- Propose one commit message following Conventional Commits (`type(scope): subject`). Consult `references/conventional-commits.md` for the full spec. Infer `type` from a plan file in `docs/plan/` if present; otherwise infer from the diff. Extract the ticket number from the branch name (e.g. `feat/VGV-59-...` → `VGV-59`) into a `Refs:` line.
86
+
87
+
Use **AskUserQuestion** to confirm before committing (**Yes** / **No** / **Edit**). On confirm, commit with a HEREDOC to preserve formatting. Do not push yet.
Copy file name to clipboardExpand all lines: skills/debrief/SKILL.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,9 +74,9 @@ Action items are recorded in the document only — they become separate tickets.
74
74
75
75
### 5. Set up workspace
76
76
77
-
Before writing the debrief file, ensure the session is on a feature branch:
77
+
Before writing the debrief file, ensure the session is not on the base branch:
78
78
79
-
-Call @create-branch to check and optionally create a working branch or worktree.
79
+
-Run `git rev-parse --abbrev-ref HEAD`. If the current branch is a base branch (`main`, `master`, or `develop`), use **AskUserQuestion**to offer creating a feature branch — `git checkout -b <type>/<kebab-topic>`, name under 60 characters — before writing. If already on a feature branch, continue without prompting.
0 commit comments