一键导入
feature-extend
Extend a feature's scope mid-implementation: add phases to the PRD, workplan, and create new GitHub issues. Reuses the existing worktree and branch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Extend a feature's scope mid-implementation: add phases to the PRD, workplan, and create new GitHub issues. Reuses the existing worktree and branch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run upfront discovery for a system-wide feature. Fans out discovery agents in parallel, synthesizes a strawman scope-manifest.yaml, writes the evidence trail to the feature docs directory.
Run targeted discovery for a mid-implementation operator complaint. Identifies all sibling surfaces consuming the same primitive/pattern; produces a widening proposal in the dispatch-wrapper-grammar format.
Use when shipping a new midi-macro-bridge version — bumping Cargo.toml, cutting a v-tag, publishing a GitHub Release, or updating the Homebrew tap.
Extend a feature's scope mid-implementation by adding new phases to the existing docs and issue plan without creating a new branch or worktree.
Explain the audiocontrol feature lifecycle and report the current state of active, in-progress, or partially defined features.
Wrap up a Codex work session by updating feature docs, recording development notes, and closing the loop on issue and hardware notes where needed.
| name | feature-extend |
| description | Extend a feature's scope mid-implementation: add phases to the PRD, workplan, and create new GitHub issues. Reuses the existing worktree and branch. |
| user_invocable | true |
Broaden the scope of an in-progress feature. Adds new phases and tasks to existing docs and issue infrastructure without creating a new worktree or branch.
Use this when: you're implementing a feature and realize it needs more work than originally scoped — new phases, new tasks, new acceptance criteria.
Do NOT use this for: starting a new feature (use /feature-define + /feature-setup), or for breaking a feature into smaller features (create a new feature instead).
basename $(pwd)
git rev-parse --abbrev-ref HEAD
docs/1.0/001-IN-PROGRESS/<slug>/prd.mddocs/1.0/001-IN-PROGRESS/<slug>/workplan.mddocs/1.0/001-IN-PROGRESS/<slug>/README.mdgh issue list --state open
Ask the user:
If the user has already described what they want (in the prompt that invoked this skill), extract answers from their description instead of re-asking.
Based on the interview:
Append to the existing PRD's scope section:
Use the Edit tool to modify the file.
Append new phase sections to the workplan, following the existing format exactly:
Use the Edit tool to modify the file.
For each new phase, create an implementation issue:
gh issue create \
--title "<phase title>" \
--body "$(cat <<'EOF'
Part of #<parent-number>
## Acceptance Criteria
- [ ] [criterion from workplan]
EOF
)" \
--label "enhancement"
Tell the user: