Skip to content

Skill Cheat Sheet

All 22 Claude Code built-in Skills at a glance.

Dev Workflow

SkillOne-LinerTriggerDon't Use For
diagnoseSystematic bug diagnosis/diagnose or "debug", "what's wrong"Exploration, code review
tddTest-driven: red→green→refactor/tdd or "TDD", "test first"Exploratory prototypes
prototypeThrowaway prototype/prototype or "prototype", "try out"Production features

Code Quality

SkillOne-LinerTriggerDon't Use For
reviewComprehensive code review/review or "review", "check this"Security audits
simplifyEliminate duplication/simplify or "simplify", "duplicate"Architecture, performance
security-reviewOWASP Top 10 audit/security-review or "security audit"General code review
improve-codebase-architectureDecoupling, boundaries, testability/improve-codebase-architectureMicro-simplification

Project Management

SkillOne-LinerTriggerDon't Use For
triageBatch issue classification/triage or "triage", "prioritize"Fixing bugs
to-issuesBreak PRD into dev tasks/to-issues or "break down"Unclear requirements
to-prdGenerate structured PRD/to-prd or "write PRD"Pre-discussion ideas
handoffSession handoff document/handoff or "handoff", "continue"Simple one-shot tasks

Config & Tools

SkillOne-LinerTriggerDon't Use For
write-a-skillCreate custom Skill/write-a-skill or "create skill"Editing existing Skills
claude-apiClaude API developmentImport anthropic SDK (auto)Other LLM providers
update-configManage settings.json/update-config or "configure"Code logic changes
initGenerate CLAUDE.md/init or "initialize project"Updating existing CLAUDE.md
keybindings-helpCustom keybindings/keybindings-helpSystem shortcuts
fewer-permission-promptsReduce permission prompts/fewer-permission-promptsUnsafe commands

Productivity

SkillOne-LinerTriggerDon't Use For
cavemanUltra-compact mode, -75% tokens/caveman or "be brief"Detailed explanations
loopRecurring command execution/loop 5m <cmd>One-shot tasks
grill-meDeep interrogation, full decision tree/grill-me or "grill", "challenge"Quick decisions
grill-with-docsReview against project docs/grill-with-docsNo project docs

Codebase Understanding

SkillOne-LinerTriggerDon't Use For
understand-anythingKnowledge graph, architecture viz/understand-anything:*Small file edits

Workflow Quick Reference

Requirement → grill-me → prototype → to-prd
Development → to-issues → tdd → review → simplify
Bug Fix     → triage → diagnose → tdd → review
Architecture → improve-codebase-architecture → grill-with-docs → tdd
Code Review → review → simplify → security-review(optional)
Efficiency  → caveman + loop
Context Mgmt → caveman / handoff
Onboarding  → init → understand-onboard
API Dev     → claude-api → tdd → review