Feature Research
Research phase of a feature workflow. Explore the codebase in parallel, gather external best practices, and produce an approved Plan file at .claude/plans/<slug>.md. Usage: /feature-research <feature description> [--plan <path>]
Feature Work
Implementation phase of a feature workflow. Consumes an approved Plan file, decomposes its Task Order into TaskCreate items, dispatches parallel agents for non-overlapping files, then runs tests and /simplify. Usage: /feature-work <plan-path>
Feature Review
Review phase of a feature workflow. Runs two parallel verification agents (goal alignment, code quality) against the implemented change, self-heals up to 2 retries per finding, and captures lessons into CLAUDE.md. Usage: /feature-review <plan-path>
New Feature
End-to-end feature workflow wrapper. Chains feature-research → feature-work → feature-test → feature-review and emits the final outline-form report. Usage: /new-feature <feature description>
Claude Md Writer
Author and refactor CLAUDE.md and manage .claude/rules/. Analyzes the codebase to produce a best-practice-aligned, efficient CLAUDE.md plus path-scoped rules. Usage: /claude-md-writer [create|refactor|rules]
Feature Test
Test authoring phase of a feature workflow. Derives scenarios from an approved Plan, writes tests per file via delegated agents, runs them, and self-heals implementation up to 2 retries. Usage: /feature-test <plan-path>