Ship fast.
Ship correct.
Eight skills that cascade through the development lifecycle. Each one invokes the next. The chain catches what you miss.
Each skill invokes the next
Independently invokable. Naturally cascading. You don't memorize the workflow — the skills guide you through it.
/dev-pause … /dev-start resumes
/dev-bug → fix → check → commit
/dev-teach scaffolds everything
/dev-check before every commit
Four stages. In order. Smart skip rules prevent unnecessary work — doc-only commits fly through, feature code gets the full treatment.
| Change type | Correctness | Quality | Mechanical | Behavioral |
|---|---|---|---|---|
| Feature / Fix | Run | Run | Run | Run |
| Refactor | skip — tests are proof | Run | Run | skip |
| Docs only | skip | skip | skip | skip |
| Tests only | skip | Run | Run | skip |
| Config | Run | skip | Run | Run |
Before and after
Each skill replaces a bad habit with a disciplined one. Toggle to see what changes.
- Don't hand-roll — searches codebase, deps, stdlib first
- Gray areas — forces concrete choices before coding
- Boundary maps — declares produces/consumes for 3+ file changes
- Session resume — loads .continue-here.md from /dev-pause
- Subagent isolation — correctness proofs stay out of context
- Smart skips — doc-only commits fly through
- Behavioral check — actually runs the feature
- Pre-gate — runs /dev-check if it hasn't been run
- Imperative mood — "add", not "added" or "adds"
- Split signals — detects multi-concern commits
- ~500 words max — decisions, not deliberations
- Ephemeral — consumed and deleted by /dev-start
- Prevents re-debate — records WHY, not just WHAT
- P0/P1/P2 — severity drives response urgency
- TDD regression — test fails → fix → test passes
- Paper trail — bugs.md, ROADMAP, Fixes: footer, CHANGELOG
- Three-tier summaries — each regenerated from source, never re-compressed
- Doc sync — ROADMAP, CHANGELOG, bugs.md updated
- Branch completion — merge, PR, or discard via superpowers
- Auto-discovery — reads package.json, tsconfig, git log
- Scaffolds — CLAUDE.md, ref/workflow.md, ROADMAP, CHANGELOG, docs/bugs.md
- Language-agnostic — TypeScript, Python, Rust, Go
- Semver — reviews commits to suggest patch/minor/major
- Full checklist — gates, CHANGELOG, version, tag, journal, deploy
- Post-deploy verify — checks the release actually works
Composes with existing skills
The cascade orchestrates — it never duplicates. Each integration adds project-specific context and sequencing.
During implementation
- /proving-correctnesspushback + inline checkpoints
- superpowers:tddtests alongside features
- superpowers:debuggingroot cause for bugs
Quality chain
- /proving-correctnessGate 3 in subagent
- /simplify3 parallel reviews
- superpowers:verifyevidence before claims
Complex work
- superpowers:brainstormideation for 8+ files
- superpowers:plansimplementation plans
Branch completion
- superpowers:finishmerge/PR workflow
- superpowers:worktreesisolated workspaces
"LLMs write plausible code, not correct code. Code that compiles and passes tests can still be 20,000x slower than it should be."
/proving-correctness