A modular collection of Claude Code skills that speed up everyday dev tasks while keeping quality high. Heavily optimized and battle-tested with Claude Code and the Opus model.
Turbo is a skill set for Claude Code. Each skill teaches Claude a specific workflow: reviewing code, creating PRs, investigating bugs, distilling session learnings, and more. The skills are designed to work together.
The key idea: skills aren't just standalone tools you use next to each other. They're puzzle pieces that connect into larger workflows. The main orchestrator, /finalize, chains testing, code simplification, AI review, committing, and PR creation into one command. But each piece is small and swappable. Replace one skill with your own and the rest of the pipeline still works.
The other core piece is /distill-session, which makes the whole system compound. After each session, it extracts lessons from the conversation and routes them to the right place: project CLAUDE.md, auto memory, or existing/new skills. Every session teaches Claude something, and future sessions benefit.
Turbo amplifies your existing process. If your plan is vague, your architecture is unclear, and you skip every review finding, Turbo won't save you. Garbage in, garbage out.
It works best when your project has the right infrastructure in place:
- Tests —
/finalizeruns your test suite and writes missing tests. Without tests, there's no safety net. If your project doesn't have automated tests,/smoke-test(standalone skill, not part of/finalize) can fill the gap by launching your app and verifying changes manually, but real tests are always better. - Linters and formatters —
/finalizeruns your linter after code review fixes. If you don't have one, style issues slip through. - Dead code analysis —
/find-dead-code(standalone skill, not part of/finalize) identifies unused code via parallel analysis, but it's even better when your project already has tools likeknip,vulture, orperipheryintegrated.
The target audience is experienced developers who want to move faster without sacrificing quality. That said, beginners are welcome too. Turbo is a great way to learn how a professional dev workflow looks. Just don't blindly trust outputs. Review what Claude produces, understand why it made those choices, and build your own judgment alongside it.
Every skill is a self-contained piece. Orchestrator skills like /finalize compose them into workflows, but each piece works independently too.
Want to swap a piece? For example:
- Replace
/oraclewith your own setup (it's macOS-only and has a cookies workaround) - Replace
/commit-stagedor/stage-commitwith your team's commit convention. The pipeline adapts.
The skills communicate through standard interfaces (git staging area, PR state, file conventions), not tight coupling.
If Turbo has helped you ship faster and you're so inclined, I'd greatly appreciate it if you'd consider sponsoring my open source work.
graph TD
%% Planning pipeline (optional)
subgraph planning ["Planning Pipeline (Optional)"]
direction TB
create-spec([/create-spec]):::plan --> create-prompt-plan([/create-prompt-plan]):::plan
create-prompt-plan --> pick-next-prompt([/pick-next-prompt]):::plan
pick-next-prompt --> plan-implementation([/plan-implementation]):::plan
end
plan-implementation -- "implement, then..." --> stage
%% Finalize phases
subgraph finalize ["/finalize — QA Orchestrator"]
direction TB
subgraph p1 ["Phase 1 — Stage & Test"]
stage(["Stage changes & run tests"]):::git
end
subgraph p2 ["Phase 2 — Simplify Code"]
simplify-plus([/simplify-plus]):::review
end
subgraph p3 ["Phase 3 — Code Review"]
peer-review([/peer-review]):::review --> evaluate-findings([/evaluate-findings]):::review
end
subgraph p4 ["Phase 4 — Distill Session"]
distill-session([/distill-session]):::know
end
subgraph p5 ["Phase 5 — Commit"]
commit-staged([/commit-staged]):::git
end
subgraph p6 ["Phase 6 — Pull Request"]
create-pr([/create-pr / /update-pr]):::git --> resolve-pr-comments([/resolve-pr-comments]):::git
end
stage --> simplify-plus
simplify-plus --> peer-review
evaluate-findings --> distill-session
distill-session --> commit-staged
commit-staged --> create-pr
end
%% Review branch
review-feature-branch([/review-feature-branch]):::review --> peer-review
review-feature-branch --> review-pr-comments([/review-pr-comments]):::review
review-feature-branch --> evaluate-findings
%% Delegation
peer-review -.-> codex([/codex]):::review
%% Debugging
stage -. "test failures" .-> investigate([/investigate]):::debug
review-feature-branch -. "phase failures" .-> investigate
investigate -. "escalate" .-> oracle([/oracle]):::debug
%% Knowledge
subgraph knowledge ["/distill-session — Self-Improvement"]
direction TB
ds-detect(["1. Detect Context"]):::know --> ds-scan(["2. Scan Session"]):::know --> ds-filter(["3. Filter"]):::know --> ds-route(["4. Route"]):::know --> ds-present(["5. Present"]):::know --> ds-execute(["6. Execute"]):::know
end
ds-execute -.-> create-skill([/create-skill]):::know
ds-execute -.-> note-improvement([/note-improvement]):::know
distill-session -. "routes learnings" .-> ds-detect
classDef plan fill:#dcfce7,stroke:#22c55e
classDef review fill:#dbeafe,stroke:#3b82f6
classDef debug fill:#ffedd5,stroke:#f97316
classDef know fill:#f3e8ff,stroke:#a855f7
classDef git fill:#fef9c3,stroke:#eab308
style planning fill:#f0fdf4,stroke:#22c55e
style finalize fill:#f8fafc,stroke:#3b82f6
style p1 fill:#fefce8,stroke:#eab308
style p2 fill:#eff6ff,stroke:#3b82f6
style p3 fill:#eff6ff,stroke:#3b82f6
style p4 fill:#faf5ff,stroke:#a855f7
style p5 fill:#fefce8,stroke:#eab308
style p6 fill:#fefce8,stroke:#eab308
style knowledge fill:#faf5ff,stroke:#a855f7
| Tool | What it's for | Install |
|---|---|---|
| Claude Code | AI coding agent that runs Turbo skills | npm install -g @anthropic-ai/claude-code |
| GitHub CLI | PR creation, review comments, repo queries | brew install gh |
| Codex CLI | AI-powered code review in /finalize |
npm install -g @openai/codex |
Works best with: Claude Code Max 5x, Max 20x, or Team plan with Premium seats (orchestrator workflows are context-heavy), ChatGPT Plus or higher (for codex review), and ChatGPT Pro or Business (for /oracle, where Pro models are the only ones that reliably solve very hard problems). That said, /peer-review and /oracle are designed as swappable puzzle pieces, so if you don't have access, replace them with alternatives that work for you.
Open Claude Code and prompt:
Walk me through the Turbo setup. Read SETUP.md from the tobihagemann/turbo repo and guide me through each step.
Claude will install the skills, configure your environment, and walk you through each step interactively.
npx skills updateAs long as there are no breaking changes (skills being added or removed), updates are safe to apply anytime. Otherwise, re-run the install skills command below.
See SETUP.md for the full guide, or follow the steps below.
npx skills add tobihagemann/turbo --skill '*' --agent claude-code -gInstall all skills. Many depend on each other (e.g., /finalize orchestrates /simplify-plus, /peer-review, /evaluate-findings, and more), so installing them individually will leave gaps in the workflows. See skills.sh/docs for more on the skills CLI.
Some skills store project-level files in a .turbo/ directory (specs, prompt plans, improvements). Add it to your global gitignore to keep project repos clean:
echo '.turbo/' >> ~/.gitignore
git config --global core.excludesfile ~/.gitignoreOrchestrator workflows like /finalize invoke many skills in sequence. Without allowlisting them, you'll get prompted for each one, breaking the flow.
Add all Turbo skills to the permissions.allow array in ~/.claude/settings.json. Generate the entries from the Turbo repo:
gh api repos/tobihagemann/turbo/contents/skills --jq '.[].name' | sed 's/.*/"Skill(&)"/'Merge the output into your existing permissions.allow array.
Turbo workflows like /finalize consume significant context. Knowing how much context you have left prevents unexpected compaction mid-workflow.
Add this to ~/.claude/settings.json:
{
"statusLine": {
"type": "command",
"command": "jq -r '\"\\(.context_window.remaining_percentage | floor)% context left\"'"
}
}Add this to your ~/.claude/CLAUDE.md (create the file if it doesn't exist):
# Pre-Implementation Prep
After plan approval (ExitPlanMode) and before making edits:
1. Run `/code-style` to load code style principles
2. Read all files referenced by the user in their request
3. Read all files mentioned in the plan
4. Read similar files in the project to mirror their styleTurbo's orchestrator workflows work best when you control compaction timing. Disable auto-compact in Claude Code via /config.
The /oracle skill requires additional setup (Chrome, Python, ChatGPT access). See the oracle skill for configuration via ~/.turbo/config.json. If not set up, everything still works.
The recommended way to use Turbo:
- Enter plan mode and plan the implementation
- Approve the plan (tip: clear context when approving to maximize room for implementation)
- Run
/finalizewhen you're done implementing
/finalize runs through these phases automatically:
- Stage & Test — Stage changed files, write missing tests, run test suite
- Simplify Code — Multi-agent review for reuse, quality, efficiency, clarity
- Code Review — AI peer review, evaluate findings, apply fixes, re-test
- Distill Session — Extract learnings, route to CLAUDE.md / memory / skills
- Commit — Formulate commit message, create commit
- Pull Request — Create or update PR, optionally resolve review comments
- Disable auto-compact. You want to control when compaction happens.
- Keep >50% context free before running
/finalize(>40% may also work). If you're low, run/compactfirst. - The status line from step 3 above makes this easy to track.
/distill-session is another core skill. Run it anytime before your context runs out (it's also part of /finalize Phase 4). It scans the conversation for corrections, repeated guidance, failure modes, and preferences, then routes each lesson to the right place: project CLAUDE.md, auto memory, or existing/new skills. It routes lessons through Claude Code's built-in knowledge layers and, over time, makes Claude better at your specific project.
/note-improvement captures improvement opportunities that come up during work but are out of scope: code review findings you chose to skip, refactoring ideas, missing tests. These get tracked in .turbo/improvements.md so they don't get lost. Since .turbo/ is gitignored, it doesn't clutter the repo.
For larger projects, Turbo offers a full spec-to-implementation pipeline. You can skip this entirely and jump straight to implementation + /finalize.
- Run
/create-spec— Guided discussion that produces a spec at.turbo/spec.md - Run
/create-prompt-plan— Breaks the spec into context-sized prompts at.turbo/prompts.md - For each prompt, open a new session:
- Enter plan mode and run
/pick-next-prompt - Approve the plan (clear context to maximize room for implementation)
- Implement the changes
/compactif needed, then/finalize
- Enter plan mode and run
Each session handles one prompt. This keeps context focused and avoids running out mid-implementation.
| Skill | What it does |
|---|---|
/finalize |
Post-implementation QA: test, simplify, review, commit, PR |
/review-feature-branch |
Full branch review: AI review + PR comments + evaluation |
| Skill | What it does |
|---|---|
/create-spec |
Guided discussion that produces a spec at .turbo/spec.md |
/plan-implementation |
Decompose work into sized, ordered implementation units |
/create-prompt-plan |
Break a spec into context-sized implementation prompts |
/pick-next-prompt |
Pick the next prompt from .turbo/prompts.md and plan it |
| Skill | What it does |
|---|---|
/code-style |
Enforce mirror, reuse, and symmetry principles |
/simplify-plus |
Multi-agent review for reuse, quality, efficiency, clarity |
/peer-review |
AI code review interface that delegates to /codex by default |
/codex |
AI code review and task execution via codex CLI |
/evaluate-findings |
Confidence-based triage of review feedback |
/find-dead-code |
Identify unused code via parallel analysis |
| Skill | What it does |
|---|---|
/stage-commit |
Stage files and commit in one step |
/commit-staged |
Commit already-staged files with good message |
/create-pr |
Draft and create a GitHub PR |
/update-pr |
Update existing PR title and description |
/review-pr-comments |
Read-only summary of unresolved PR comments |
/resolve-pr-comments |
Evaluate, fix, and reply to PR comments |
| Skill | What it does |
|---|---|
/investigate |
Systematic root cause analysis for bugs and failures |
/smoke-test |
Launch the app and verify changes manually |
/oracle |
Consult ChatGPT when completely stuck (requires setup) |
| Skill | What it does |
|---|---|
/distill-session |
Extract session learnings to CLAUDE.md, memory, or skills |
/note-improvement |
Capture out-of-scope improvement ideas for later |
/create-skill |
Create or update a skill with proper structure |
/update-npm-deps |
Smart npm dependency upgrades with breaking change research |
Distributed under the MIT License. See the LICENSE file for details.