A collection of Claude Code skills for structured development workflows.
| Skill | Description | Source |
|---|---|---|
| kickoff | "Interview Me" technique — Claude asks you questions before starting | Original |
| pua | Full dev loop engine: Plan → Execute → Review → Security → Verify → Commit | Adapted from tanweai/pua |
| office-hours | Product thinking partner — reframe the problem before writing code | Adapted from garrytan/gstack |
| brainstorming | Turn ideas into designs before writing any code | Adapted from obra/superpowers |
| challenge | Cross-model adversarial verification — use a second AI to challenge your analysis | Original |
These skills are taken directly (or near-directly) from obra/superpowers — install from there:
systematic-debugging— 4-phase root cause analysis before any fixverification-before-completion— verify with real commands before claiming donefinishing-a-development-branch— structured options for merging/PR/cleanupusing-git-worktrees— isolated worktrees for risky changes
Copy a skill folder into your ~/.claude/skills/ directory:
# Clone this repo
git clone https://github.com/0x43e96f/skills ~/skills-repo
# Copy a skill
cp -r ~/skills-repo/kickoff ~/.claude/skills/
# Or install all at once
cp -r ~/skills-repo/kickoff ~/skills-repo/pua ~/skills-repo/office-hours \
~/skills-repo/brainstorming ~/skills-repo/challenge \
~/.claude/skills/Then invoke with /kickoff, /pua, /office-hours, etc. in Claude Code.
Unclear requirements → /kickoff (let Claude ask you questions first)
Product sanity check → /office-hours (optional)
Implementation plan → /plan
Validate the plan → /challenge (optional — second opinion)
End-to-end execution → /pua
Not every task needs all steps. Small fixes → just /pua. Clear requirements → skip /kickoff.
- tanweai/pua — original PUA pressure escalation concept
- garrytan/gstack — office-hours YC-style forcing questions
- obra/superpowers — brainstorming, systematic-debugging, and other core skills
- yeachan-heo/oh-my-claudecode — multi-agent orchestration inspiration
MIT