| name | feature-setup |
| description | Create feature infrastructure: branch, worktree, docs directory, and initial project documents derived from a feature definition. |
Feature Setup
Use this when the user wants to create the project-management scaffolding for a new feature.
Workflow
- Determine the slug.
- Read
/tmp/feature-definition-<slug>.md if it exists.
- Create the worktree and branch:
git worktree add ~/work/audiocontrol-work/audiocontrol-<slug> -b feature/<slug>
- Create
docs/1.0/001-IN-PROGRESS/<slug>/.
- Create:
prd.md
workplan.md
README.md
implementation-summary.md
- Populate those files from the definition if present; otherwise create minimal templates.
- Report the branch, worktree, docs path, and whether the docs were template-only or definition-backed.
Do not start implementation as part of setup.