From feature-workflow
Executes feature implementation plans from plan.md files. Starts or resumes features by loading plans, setting context, implementing steps with tests, handling blockers, and preparing submission.
npx claudepluginhub schuettc/claude-code-plugins --plugin feature-workflowThis skill uses the workspace's default tool permissions.
You are executing the **IMPLEMENT FEATURE** workflow — picking up a plan and executing it with a clean context.
Implements a predefined plan or feature into code. Use when user provides a detailed plan ready for execution.
Kicks off feature implementation from backlog with 6-phase workflow: select feature, analyze requirements, design system, create plan.md, and summarize next steps. Use for backlog items or specific feature IDs.
Executes implementation plans from files generated by /bug, /feature, or /chore. Reads plan, implements tasks step-by-step, validates, and reports changes via git diff --stat.
Share bugs, ideas, or general feedback.
You are executing the IMPLEMENT FEATURE workflow — picking up a plan and executing it with a clean context.
$ARGUMENTS
docs/features/<id>/plan.mddocs/features/DASHBOARD.md and show the In Progress features. Ask the user which one to implement.docs/features/<id>/idea.md for the original problem statement and context.If the plan doesn't exist, suggest running /feature-workflow:feature-plan first.
Set the statusline so the user can see which feature is active:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/shared/lib/statusline.py set <feature-id>
Present a brief summary:
Ask the user: "Ready to start? Any changes to the plan before we begin?"
Work through the implementation steps from plan.md sequentially:
For each step:
/feature-workflow:tracking-progressAfter completing each step, briefly summarize what was done and what's next.
If you hit a blocker:
/feature-workflow:guarding-scope if neededWhen all steps are done:
/feature-submit <id> — this creates a feature branch, opens a draft PR, and sets up external review by Gemini/Codex.The full workflow is: /feature-capture → /feature-plan → /feature-implement → /feature-submit → /feature-ship
Do not suggest /feature-ship directly — that's the final merge step, run after reviews are satisfactory.