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.
TL;DR — Three steps to ship:
- Plan — Enter plan mode and describe what you want to build
- Implement — Build it with Claude
- Run
/finalize— Tests, code simplification, AI review, commit, and PR. One command.
Everything else in Turbo builds on this loop: planning pipelines for large projects, debugging tools for when things break, and self-improvement that makes each session teach the next. There are 30+ skills beyond /finalize. Read on for the full picture.
Turbo is a skill set for Claude Code. Each skill teaches Claude a specific workflow: reviewing code, creating PRs, investigating bugs, self-improving from 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 /self-improve, 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-ruleswith 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
end
pick-next-prompt -- "implement, then..." --> p1-stage
%% Finalize phases
subgraph finalize ["/finalize — QA Orchestrator"]
direction TB
subgraph p1 ["Phase 1 — Stage & Test"]
p1-stage([/stage]):::git --> p1-write-tests([/write-tests]):::git
end
subgraph p2 ["Phase 2 — Simplify Code"]
simplify-code([/simplify-code]):::review
end
subgraph p3 ["Phase 3 — Code Review"]
p3-review-code([/review-code]):::review
end
subgraph p4 ["Phase 4 — Self-Improve"]
self-improve([/self-improve]):::know
end
subgraph p5 ["Phase 5 — Commit and PR"]
cp["1. Branch if needed
2. /commit-staged
3. /create-pr or /update-pr
4. /resolve-pr-comments"]:::git
end
p1-write-tests --> simplify-code
simplify-code --> p3-review-code
p3-review-code --> self-improve
self-improve --> cp
end
%% Simplify (multi-agent review)
subgraph simplifycode ["/simplify-code — Multi-Agent Review"]
sp-steps["1. Determine diff command
2. Launch 4 review agents
3. Fix issues"]:::review
end
simplify-code -. "runs review" .-> sp-steps
%% Code review (review, apply, verify)
subgraph reviewcode ["/review-code — AI Review, Fix & Verify"]
cr-peer([/peer-review]):::review -. "runs review" .-> codex([/codex]):::review --> cr-eval([/evaluate-findings]):::review --> cr-fix["Apply fixes
/simplify-code
Test & lint"]:::review
end
p3-review-code -. "runs review" .-> cr-peer
%% Evaluate findings (confidence-based triage)
subgraph evalfindings ["/evaluate-findings — Confidence-Based Triage"]
ef-steps["1. Assess each finding
2. Devil's Advocate
3. Reconciliation
4. Present results"]:::review
end
cr-eval -. "triages findings" .-> ef-steps
%% Debugging
subgraph debugging ["/investigate — Root Cause Analysis"]
inv-steps["1. Characterize
2. Isolate
3. Hypothesize
4. Test"]:::debug
inv-steps -. "stuck after 2 cycles" .-> oracle([/oracle]):::debug
end
p1-write-tests -. "test failures" .-> inv-steps
cr-fix -. "test failures" .-> inv-steps
%% Knowledge
subgraph knowledge ["/self-improve — Self-Improvement"]
si-steps["1. Detect Context
2. Scan Session
3. Filter
4. Route
5. Present
6. Execute"]:::know
si-steps -. "skill-shaped lesson" .-> create-skill([/create-skill]):::know
si-steps -. "out-of-scope fix" .-> note-improvement([/note-improvement]):::know
si-steps -. "turbo skill change" .-> contribute-turbo([/contribute-turbo]):::know
end
self-improve -. "has learnings" .-> si-steps
classDef plan fill:#dcfce7,stroke:#22c55e,color:#14532d
classDef review fill:#dbeafe,stroke:#3b82f6,color:#1e3a5f
classDef debug fill:#ffedd5,stroke:#f97316,color:#7c2d12
classDef know fill:#f3e8ff,stroke:#a855f7,color:#581c87
classDef git fill:#fef9c3,stroke:#eab308,color:#713f12
style planning fill:#f0fdf4,stroke:#22c55e,color:#14532d
style finalize fill:#f8fafc,stroke:#3b82f6,color:#1e3a5f
style simplifycode fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
style reviewcode fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
style evalfindings fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
style debugging fill:#fff7ed,stroke:#f97316,color:#7c2d12
style knowledge fill:#faf5ff,stroke:#a855f7,color:#581c87
style p1 fill:#fefce8,stroke:#eab308,color:#713f12
style p2 fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
style p3 fill:#eff6ff,stroke:#3b82f6,color:#1e3a5f
style p4 fill:#faf5ff,stroke:#a855f7,color:#581c87
style p5 fill:#fefce8,stroke:#eab308,color:#713f12
Turbo requires Claude Code. Works best with Claude Code Max 5x, Max 20x, or Team plan with Premium seats (orchestrator workflows are context-heavy). Additional tools are installed during setup (steps 5 and 6).
External services: 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 clone the repo, copy the skills, configure your environment, and walk you through each step interactively.
Run /update-turbo in Claude Code to update all skills from the local repo. It builds a changelog from local git history, handles conflict detection for customized skills, and manages exclusions.
See SETUP.md for the full guide, or follow the steps below.
Clone (or fork) the Turbo repo to ~/.turbo/repo/:
git clone https://github.com/tobihagemann/turbo.git ~/.turbo/repoTo contribute improvements back, fork the repo on GitHub first, then clone your fork and add the upstream remote:
git clone https://github.com/<your-username>/turbo.git ~/.turbo/repo
cd ~/.turbo/repo && git remote add upstream https://github.com/tobihagemann/turbo.gitCopy all skill directories to your global skills location:
for skill in $(ls ~/.turbo/repo/skills/); do
cp -r ~/.turbo/repo/skills/$skill ~/.claude/skills/$skill
doneMany skills depend on each other (e.g., /finalize orchestrates /simplify-code, /peer-review, /evaluate-findings, and more), so installing only a subset will leave gaps in the workflows.
Create ~/.turbo/config.json:
mkdir -p ~/.turbo
cat > ~/.turbo/config.json << EOF
{
"repoMode": "clone",
"excludeSkills": [],
"lastUpdateHead": "$(git -C ~/.turbo/repo rev-parse HEAD)"
}
EOFSet repoMode to "clone" (consumer), "fork" (contributor), or "source" (maintainer).
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:
mkdir -p ~/.config/git
echo '.turbo/' >> ~/.config/git/ignoreThis uses Git's standard XDG path ($XDG_CONFIG_HOME/git/ignore), which Git reads automatically without needing core.excludesfile. If core.excludesfile is already set, add .turbo/ to that file instead.
GitHub CLI is used by many skills for PR operations, review comments, and repo queries:
brew install gh
gh auth loginCodex CLI is used by /peer-review for AI-powered code review during /finalize. Requires ChatGPT Plus or higher:
npm install -g @openai/codexThe /smoke-test skill uses external skills for browser and UI automation:
| Skill | What it's for | Install |
|---|---|---|
| agent-browser | Browser automation for web app smoke testing (highly recommended) | npx skills add https://github.com/vercel-labs/agent-browser --skill agent-browser --agent claude-code -y -g |
| peekaboo | macOS UI automation for native app smoke testing | npx skills add https://github.com/openclaw/openclaw --skill peekaboo --agent claude-code -y -g |
Without these, /smoke-test falls back to terminal-based verification.
Orchestrator 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 local repo:
ls ~/.turbo/repo/skills/ | 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 styleWith the 1M context window, compaction is rarely needed. If you prefer to 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 (optionally clear context if planning used significant context)
- 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
- Self-Improve — Extract learnings, route to CLAUDE.md / memory / skills
- Commit and PR — Branch if needed, commit, push, create or update PR
With the 1M context window, running out of context during /finalize is unlikely for most sessions. If you do hit the limit on very long sessions:
- Run
/self-improvebefore/compact. Compaction loses conversational detail that/self-improvemines for lessons. Capture learnings first, then compact. - The status line from step 6 above makes remaining context easy to track.
/self-improve 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. When you're ready to act on them, /implement-improvements validates each entry against the current codebase (filtering out stale items), then plans and implements the remaining ones.
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 (optionally clear context if planning used significant context)
- Implement the changes
- Run
/finalize
- Enter plan mode and run
Each session handles one prompt to keep context focused.
| Skill | What it does |
|---|---|
/finalize |
Post-implementation QA: test, simplify, review, commit, PR |
/review-feature-branch |
Full branch review: code review + evaluation + optional finalization |
/review-pr |
Full PR review: code review + PR comments + evaluation + optional finalization |
| Skill | What it does |
|---|---|
/create-spec |
Guided discussion that produces a spec at .turbo/spec.md |
/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 |
/pick-next-issue |
Pick the most popular open GitHub issue and plan it |
/create-threat-model |
Analyze a codebase and produce a structured threat model |
/enhance-plan |
Add task tracking, a skills line, and a finalize step to a plan |
/capture-context |
Capture session knowledge into the plan file before clearing context |
| Skill | What it does |
|---|---|
/code-style |
Enforce mirror, reuse, and symmetry principles |
/write-tests |
Write missing tests matching project conventions |
/simplify-code |
Multi-agent review for reuse, quality, efficiency, clarity |
/review-code |
AI code review, apply fixes, simplify, and verify |
/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 |
Stage implementation changes with precise file selection |
/stage-commit |
Stage files and commit in one step |
/stage-commit-push |
Stage, commit, and push in one step |
/commit-staged |
Commit already-staged files with good message |
/commit-staged-push |
Commit already-staged files and push |
/commit-rules |
Shared commit message rules and technical constraints |
/create-pr |
Draft and create a GitHub PR |
/update-pr |
Update existing PR title and description |
/fetch-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 |
|---|---|
/self-improve |
Extract session learnings to CLAUDE.md, memory, or skills |
/note-improvement |
Capture out-of-scope improvement ideas for later |
/implement-improvements |
Validate and implement improvements from the backlog |
/create-skill |
Create or update a skill with proper structure |
/update-deps |
Smart dependency upgrades with breaking change research |
/update-turbo |
Update Turbo skills from local repo with changelog and conflict detection |
/contribute-turbo |
Submit turbo skill improvements back to upstream |
Distributed under the MIT License. See the LICENSE file for details.