Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/zforge:add-featThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Follow this exact sequence. Do NOT skip steps.
Follow this exact sequence. Do NOT skip steps.
git checkout main && git pull
git worktree add .claude/worktrees/feat-<name> -b feat/<feature-name>
cd .claude/worktrees/feat-<name>
All work happens in the worktree — main stays clean.
git diff main...HEADgh pr creategh pr merge <number> --mergecd <project-root> && git worktree remove .claude/worktrees/feat-<name>git checkout main && git pull && git branch -d feat/<feature-name>Before every PR, answer each item and present as a markdown table:
| # | Check | Answer |
|---|---|---|
| 1 | What changed — what was built and how | [brief] |
| 2 | Systematic design — is the design systematic, or patch-by-patch? | [yes/no + evidence] |
| 3 | Single source of truth — no duplicate data paths or redundant caches introduced? | [yes/no + evidence] |
| 4 | Test regression — do all existing tests pass? | [pass count / fail count] |
| 5 | Reuse — did you reuse existing patterns/functions, or reinvent something? | [yes/no + evidence] |
npx claudepluginhub zhengxuyu/zforge --plugin zforgeGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.