featurelisted
Install: claude install-skill event4u-app/agent-config
# /feature
Top-level orchestrator for the `/feature` family. Replaces 5 standalone
commands with a single entry point + sub-command dispatch.
## Sub-commands
| Sub-command | Routes to | Purpose |
|---|---|---|
| `/feature explore` | `commands/feature/explore.md` | Brainstorm an idea before committing to a plan |
| `/feature plan` | `commands/feature/plan.md` | Interactively plan a feature, produce a structured plan doc |
| `/feature refactor` | `commands/feature/refactor.md` | Refine and update an existing feature plan |
| `/feature roadmap` | `commands/feature/roadmap.md` | Generate implementation roadmap(s) from a plan |
| `/feature dev` | `commands/feature/dev.md` | Full 7-phase feature development workflow (heavyweight) |
## Workflow ordering
Typical sequence: `explore` → `plan` → `roadmap` → `dev` (or per-step
implementation). Use `refactor` whenever an existing plan needs an update.
## Dispatch
1. Parse the user's argument: `/feature <sub-command> [args]`.
2. Look up the sub-command in the table above.
3. Load the body of the corresponding `commands/feature/<sub>.md` file and
follow its `## Instructions` (or `## Steps`) section verbatim.
4. If the sub-command is unknown or missing, print the menu and ask:
> 1. explore — brainstorm a feature idea
> 2. plan — produce a structured feature plan
> 3. refactor — update an existing feature plan
> 4. roadmap — generate roadmap(s) from a plan
> 5. dev — run the full 7-phase development workflow
## Rule