Three Claude Code skills for rigorous planning, review, and design — with built-in anti-sycophancy
Three Claude Code skills for rigorous planning, review, and design — with built-in anti-sycophancy.
/think — Brainstorm & ValidateStructured brainstorming with two modes:
Output: Design document with premises, alternatives, and a concrete next action.
/audit — Plan & Architecture ReviewRigorous plan review with adaptive depth:
Output: Error & Rescue Map, Failure Modes Registry, Completion Summary with Lake Score.
/critique — Design Review & Design SystemDesign review with teeth:
Output: Design ratings with fixes / DESIGN.md with preview page.
# Clone to your Claude Code skills directory
git clone https://github.com/deadjoe/badpowers.git ~/.claude/skills/badpowers
That’s it. The skills are available immediately as /think, /audit, and /critique in Claude Code.
cd ~/.claude/skills/badpowers && git pull
badpowers/
├── think/
│ └── SKILL.md # Brainstorming & validation
├── audit/
│ └── SKILL.md # Plan & architecture review
├── critique/
│ └── SKILL.md # Design review & system creation
└── references/
├── anti-sycophancy.md # Pushback framework (shared by think + audit)
├── review-framework.md # Error maps, failure registries, test diagrams (audit)
└── design-knowledge.md # Aesthetics, fonts, AI slop patterns (critique)
| You’re thinking… | Use | Mode |
|---|---|---|
| “Is this worth building?” | /think |
Product |
| “Weekend project, brainstorm with me” | /think |
Builder |
| “Review my plan for adding auth” | /audit |
STANDARD |
| “Big refactor, audit this deeply” | /audit |
DEEP |
| “My UI looks generic” | /critique |
Review |
| “New project, need a design system” | /critique |
Create |
/think ──→ /audit ──→ /critique ──→ code
│ │ │
design doc audit report DESIGN.md
Each skill’s output feeds the next. /think produces a design doc that /audit reviews. /audit’s findings inform /critique’s design decisions. /critique’s DESIGN.md becomes the reference for implementation.
MIT