Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/zforge:fix-bugThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Follow this exact sequence. No plan needed — go straight to debugging.
Follow this exact sequence. No plan needed — go straight to debugging.
git checkout main && git pull
git log --oneline -10), gather evidencegit worktree add .claude/worktrees/fix-<name> -b fix/<bug-description>
cd .claude/worktrees/fix-<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/fix-<name>git checkout main && git pull && git branch -d fix/<bug-description>Before every PR, answer each item and present as a markdown table:
| # | Check | Answer |
|---|---|---|
| 1 | What changed — what was fixed and how | [brief] |
| 2 | Root cause fix — does this fix the root cause, or just the symptom? | [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.