FAQ
turbo is a Claude Code plugin with 157 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes answer-reviewer-questions, apply-findings, assess-technical-debt. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add tobihagemann/turbo --agent claude-code
Repo: tobihagemann/turbo
A composable dev process for agentic coding harnesses, packaged as modular skills. Turbo has sibling editions for Claude Code and Codex.
The Claude Code edition is production-tested. The Codex edition is currently experimental: the skill set has reached parity, but it has seen less real-world use.
TL;DR โ Three steps to ship:
/turboplan (or enter raw plan mode) and describe what you want to build/implement-plan on the plan, or /implement for ad-hoc changes/finalize runs tests, code polishing, commit, and PR. It kicks in automatically once a plan file's steps are done; when no plan file governs the work, /implement offers it alongside a lighter pass or stopping. Run it yourself if you built by hand.This loop is the core. Two more pipelines run alongside it for work that does not fit the loop: /audit for project-wide health checks and /onboard for ramping up on new projects. Beyond the four pipelines, Turbo ships 70+ skills for debugging, reviewing, dependency upgrades, and self-improvement that makes each session teach the next. See the prompt examples for how they look in practice, or read on for the full picture.
Pick your edition: claude/SETUP.md for Claude Code, codex/SETUP.md for Codex. Both editions work best with their respective Max-tier plans (pipeline workflows are context-heavy). Additional tools are installed during setup.
External services: The Claude edition benefits from ChatGPT Plus or higher for Codex peer review. The Codex edition benefits from Claude Code access for Claude peer review. ChatGPT Pro or Business is useful for /consult-oracle, where Pro models are the only ones that reliably solve very hard problems. /peer-review and /consult-oracle are designed as swappable puzzle pieces, so if you don't have access, replace them with alternatives that work for you.
In Claude Code or Codex, prompt:
Walk me through the Turbo setup. Read SETUP.md from the tobihagemann/turbo repo and follow the guide for your edition.
The agent reads the root SETUP.md, picks the file that matches its harness (claude/SETUP.md or codex/SETUP.md), clones the repo, installs skills, configures the environment, and walks you through each step interactively.
Run /update-turbo (Claude Code) or $update-turbo (Codex) to update all skills. It fetches the latest update instructions from GitHub, builds a changelog, handles conflict detection for customized skills, and manages exclusions.
claude/ # Claude Code edition
codex/ # Codex edition
Each edition is a self-contained tree with its own SETUP.md, UPDATE.md, MIGRATION.md, ADDITIONS.md, SKILL-CONVENTIONS.md, and skills/. The root-level files are short routers that point at the per-edition versions.
Turbo covers the full dev lifecycle. Five ideas shape its design:
/turboplan analyzes complexity and routes to the right mode. /finalize runs your entire post-implementation QA in one command. /investigate follows a structured root cause analysis cycle. The skill is the prompt./review-code security runs a single-concern scan. /review-code with no argument runs all six types in parallel. /polish-code loops stage โ format โ lint โ test โ review โ evaluate โ apply โ smoke test until stable. /finalize wraps the whole pipeline with self-improvement and commit. /audit fans out to all analysis skills in parallel, evaluates the combined findings, and produces a health report. Each pipeline composes with a natural, predictable interface. See The Turboplan Pipeline and The Finalize Pipeline for worked examples.The one thing beyond skills is each edition's ADDITIONS.md (e.g. claude/ADDITIONS.md), a small set of behavioral rules added to your harness's instruction file during setup. The most important one is Skill Loading: without it, the agent tends to skip reloading skills it has already seen in a session, which causes it to silently drop steps in nested pipelines like /finalize. The additions are kept in sync by /update-turbo. See claude/docs/skill-loading-reasoning.md for the full rationale (Claude-specific failure modes and mitigations; the Codex edition adapts the same rules in codex/ADDITIONS.md).
The other core piece is /self-improve, which makes the whole system compound: it routes each session's lessons back into your project's instructions, memory, and skills. See Self-Improvement below.
Turbo amplifies your existing process. It shines when your project has the right infrastructure in place:
/polish-code loop inside /finalize runs your test suite and reviews coverage gaps. Without tests, there's no safety net. If your project has none, /smoke-test can fill the gap by launching your app and verifying changes manually in the same loop, but real tests are always better. See Browser and UI Testing for the tools behind that verification./polish-code loop runs your formatter and linter before code review. If you don't have one, style issues slip through./finalize commits, it triggers any pre-commit hooks you have configured and fixes hook failures before retrying. If your project uses tools like husky, lint-staged, or pre-commit, Turbo works with them automatically./find-dead-code and /assess-technical-debt lean on integrated tools (knip, vulture, periphery, lizard, jscpd) when your project already has them.Turbo is for 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.
If your plan is vague, your architecture is unclear, and you skip every review finding, Turbo won't save you. Garbage in, garbage out.
Every skill is a self-contained piece. Pipeline skills like /finalize and /audit compose them into workflows, but each piece works independently too.
Want to swap a piece? For example:
/consult-oracle with your own setup (it's macOS-only and has a cookies workaround)/commit-rules or /changelog-rules with your team's conventions. The pipeline adapts./code-style with your team's style guide. The built-in one teaches general principles rather than opinionated rules, so it's a natural swap point.Skills communicate through standard interfaces: git staging area, PR state, and file conventions.
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.
Claude Code's built-in plan mode tends to produce plans that miss existing patterns, skip edge cases, or propose approaches that don't hold up under scrutiny, and it can feel too restrictive for iterative planning. Turbo replaces it with /turboplan as a universal entry point: whether your task is a single-session change or a multi-subsystem project, you start there. It analyzes the task, routes it through the right pipeline, and produces plans that survive contact with reality, with no need for plan mode to be active. Direct work chains through /discuss-change and /implement to /finalize; plan-mode work halts once for a fresh /implement-plan session, and spec-mode projects halt again after /pick-next-shell before implementation.
/turboplan has three modes, named by what each one produces. Its complexity analysis recommends a mode, then you confirm the route:
/discuss-change, which escalates open product decisions, agrees the implementation shape with you, then runs /implement, which loads /code-style plus any task-specific skills, applies the change, previews any UI/UX change for you to try, and offers /finalize, a lighter pass, or stopping. No plan file is written./draft-plan (survey + consult skills/docs + escalate + discuss + draft) โ /refine-plan โ /self-improve. Halts after self-improve; you run /implement-plan in a fresh session./draft-spec for a guided spec discussion, then /refine-plan to iteratively review and revise the spec, then /draft-shells to decompose the spec into shells with YAML frontmatter, then /refine-plan to review and revise the shells, then to compound planning learnings before context is cleared. Halts after self-improve; you run in fresh sessions to plan each shell, then to implement it.Every sub-skill works standalone too. Run /draft-plan directly if you want to draft a plan without the rest of the pipeline. Run /refine-plan on a plan you wrote yourself. Run /implement-plan in a fresh session on any plan file. Run /draft-spec to write a spec without committing to the full pipeline.
In spec mode, /draft-shells decomposes the spec into shells: structured decomposition artifacts that capture the wiring invariants (Produces, Consumes, Covers spec requirements) and high-level Implementation Steps. Shells lock in the decomposition โ what each session builds, what it depends on, what spec requirements it covers โ without committing to concrete file paths. /refine-plan reviews and tightens the shells until stable.
You then drive implementation one shell at a time. /pick-next-shell picks the next shell whose dependencies are satisfied and chains into /expand-shell, which adds a fresh pattern survey and concrete references against the current codebase, then refine โ self-improve โ halt. You run /implement-plan in a fresh session. Each implementation session gets fresh pattern surveys, so decisions from earlier sessions naturally inform later ones.
/finalize is the QA and commit side of the loop. Run it when you're done implementing, or let /implement / /implement-plan chain into it automatically once a plan file's steps are done. Without a plan file, /implement asks first, offering /simplify-all as a lighter pass or stopping instead. One command runs tests, iterative code polishing, documentation cleanup, changelog updates, self-improvement, and commit.
/finalize runs through these phases automatically:
/self-improve makes each session teach the next. Run it anytime before ending your session (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/AGENTS.md, auto memory, or existing/new skills. Over time, Turbo gets better at your specific project.
/note-improvement captures improvement opportunities that surface during work but fall out of scope: review findings you skipped, refactoring ideas, missing tests, and deliberate simplifications that accept a known ceiling. They're tracked in .turbo/improvements.md (gitignored, so they don't clutter the repo), each tagged direct, investigate, or plan for later routing.
When you're ready to act, /implement-improvements validates each entry against the current codebase, drops stale ones, and runs one lane per session:
direct โ /implement for a clear-scope fixinvestigate โ /investigate, then /implementplan โ /turboplanTwo pipelines run alongside the main loop rather than inside it. They share the same composition style as the plan-implement-finalize core.
/audit fans out to all analysis skills in parallel (correctness, security, API usage, consistency, simplicity, test coverage, dependencies, tooling, dead code, agentic setup), evaluates the combined findings, and produces a health report at .turbo/audit.md with a dashboard and an interactive HTML version. Run it to assess codebase health before a major release, after onboarding to a new project, or on a regular cadence.
/audit is analysis-only: it produces the report and stops there. When you're ready to act on findings, use /apply-findings or address them manually.
/onboard generates a comprehensive onboarding guide for new developers joining a project. It composes /map-codebase (architecture), /review-tooling (development workflow), and /review-agentic-setup (AI coding infrastructure) with inline agents for prerequisites, troubleshooting, and next steps (top GitHub issues). The result is .turbo/onboarding.md with an interactive HTML version.
The guide covers both traditional onboarding (setup, build commands, tooling) and agentic onboarding (what CLAUDE.md/AGENTS.md cover, installed skills, MCP servers, Claude Code vs Codex CLI compatibility). If a threat model exists, security considerations are included too.
/map-codebase also works standalone when you just need the architecture report without the full onboarding guide.
/smoke-test and /exploratory-test (Claude) / $smoke-test and $exploratory-test (Codex) automate manual testing โ the kind of hands-on verification you'd normally do yourself. The underlying tools differ per edition:
For changes where you want to judge the feel yourself, /preview / $preview stands up the live app and hands it to you to try a UI/UX change firsthand, then waits for your verdict before continuing. /implement runs it automatically before /finalize when a change touches a user-facing surface, and you can run it standalone any time you want to poke at the running app.
Claude Code:
/agent-browser skill โ Browser automation with the most control for web app testing.claude-in-chrome MCP โ Built-in Claude Code browser automation using your real Chrome browser. Falls back to this when /agent-browser is not installed.computer-use MCP โ Built-in Claude Code screen control for native app and UI testing on macOS.Codex:
browser-use@openai-bundled plugin โ Browser automation for web app testing. Bundled in Codex's openai-bundled marketplace.computer-use@openai-bundled plugin โ Screen control for native app and UI testing on macOS. Bundled in Codex's openai-bundled marketplace.These are prompts you can type directly into Claude Code or Codex (use $skill-name in Codex). Skill names work as natural words in your sentences.
# Planning a change (single entry โ /turboplan routes based on complexity)
/turboplan add a caching layer to the image pipeline โ plan mode โ draft โ refine โ halt; run /implement-plan after
/turboplan build a notification system with backend, API, and UI โ spec mode โ spec โ shells โ halt
/survey-patterns โ pattern-ground an approach without drafting a plan
/implement-plan โ execute the latest plan in .turbo/plans/ in a fresh session
# Continuing a spec-mode project
/pick-next-shell โ pick next shell โ expand โ refine โ halt; run /implement-plan after
# Investigating bugs
tests are failing in the auth module, can you please /investigate?
/investigate the app crashes when i click "save" after editing a profile
# Reviewing code
/review-code
/review-pr for PR #42
# Auditing project health
/audit
read @.turbo/audit.md and /apply-findings โ follow-up session
# Onboarding to a new project
/onboard
/map-codebase โ architecture report only
# Resolving PR feedback
/resolve-pr-comments
# Updating dependencies
/update-dependencies
# Working through the improvements backlog
the error messages in this module are inconsistent, /note-improvement
/implement-improvements โ dedicated session
# Testing manually
/smoke-test
/exploratory-test
/preview โ stand up the app so you can try a UI change yourself
# Picking the next issue to work on
/pick-next-issue
# Filing an issue
/create-issue for the flaky upload test
# Extracting session learnings
/self-improve
# Saving session state before compacting
/create-handoff
# Creating a new skill
/create-skill for a skill that <description>
For the full skill listing with descriptions and dependencies, see the per-edition index:
claude/SKILL-INDEX.md (/skill-name invocations)codex/SKILL-INDEX.md ($skill-name invocations)Distributed under the MIT License. See the LICENSE file for details.
.github/
CONTRIBUTING.md
FUNDING.yml
.gitignore
AGENTS.md
assets/
CLAUDE.md
how-finalize-connects.drawio
how-finalize-connects.svg
how-turboplan-connects.drawio
how-turboplan-connects.svg
claude/
CLAUDE.md
ADDITIONS.md
AGENTS.md
CLAUDE.md
docs/
harness-vocabulary.md
skill-loading-reasoning.md
MIGRATION.md
SETUP.md
SKILL-CONVENTIONS.md
SKILL-INDEX.md
skills/
answer-reviewer-questions/
SKILL.md
apply-findings/
SKILL.md
assess-technical-debt/
references/
debt-reviewer.md
SKILL.md
audit/
SKILL.md
changelog-rules/
SKILL.md
code-style/
SKILL.md
codex-exec/
references/
parallel-execution.md
SKILL.md
codex-review/
SKILL.md
commit-rules/
SKILL.md
commit-staged/
commit-staged-push/
SKILL.md
SKILL.md
consult-codex/
SKILL.md
consult-oracle/
scripts/
run_oracle.py
SKILL.md
contribute-turbo/
SKILL.md
create-changelog/
SKILL.md
create-handoff/
SKILL.md
create-issue/
SKILL.md
create-pr/
SKILL.md
create-project-skills/
references/
pattern-extractor.md
SKILL.md
create-skill/
references/
composition.md
evaluation.md
harness.md
principles.md
scripts.md
skill-reviewer.md
structure.md
tools.md
workflows.md
writing.md
SKILL.md
create-test-plan/
SKILL.md
create-threat-model/
references/
analysis-guide.md
SKILL.md
discuss-change/
SKILL.md
draft-plan/
SKILL.md
draft-shells/
SKILL.md
draft-spec/
SKILL.md
evaluate-findings/
SKILL.md
expand-shell/
SKILL.md
explain-this/
SKILL.md
exploratory-test/
SKILL.md
fetch-pr-comments/
scripts/
fetch-pr-data.sh
SKILL.md
finalize/
SKILL.md
find-dead-code/
SKILL.md
frontend-design/
SKILL.md
github-voice/
SKILL.md
implement/
implement-improvements/
references/
direct-lane.md
investigate-lane.md
plan-lane.md
SKILL.md
implement-plan/
SKILL.md
SKILL.md
interpret-feedback/
SKILL.md
investigate/
references/
problem-type-playbooks.md
SKILL.md
map-codebase/
SKILL.md
migrate-turbo-files/
SKILL.md
note-improvement/
SKILL.md
onboard/
SKILL.md
peer-review/
references/
subagent-wrapping.md
SKILL.md
pick-next-issue/
SKILL.md
pick-next-shell/
SKILL.md
polish-code/
SKILL.md
preview/
SKILL.md
recall-reasoning/
scripts/
find_transcript.py
SKILL.md
refine-plan/
SKILL.md
reply-to-pr-conversation/
SKILL.md
reply-to-pr-threads/
SKILL.md
resolve-findings/
references/
direct-path.md
plan-path.md
SKILL.md
resolve-pr-comments/
scripts/
fetch-pr-data.sh
SKILL.md
review-agentic-setup/
SKILL.md
review-code/
references/
api-usage-review.md
consistency-review.md
correctness-review.md
coverage-review.md
security-review.md
simplicity-review.md
SKILL.md
review-dependencies/
SKILL.md
review-plan/
references/
plan-scope-review.md
plan-structure-review.md
shells-scope-review.md
shells-structure-review.md
spec-scope-review.md
spec-structure-review.md
SKILL.md
review-pr/
SKILL.md
review-tooling/
SKILL.md
self-improve/
references/
transcript-miner.md
SKILL.md
ship/
SKILL.md
simplify-all/
SKILL.md
simplify-code/
SKILL.md
simplify-docs/
SKILL.md
smoke-test/
SKILL.md
split-and-ship/
SKILL.md
stage/
stage-commit/
stage-commit-push/
SKILL.md
SKILL.md
SKILL.md
survey-patterns/
references/
pattern-surveyor.md
SKILL.md
turboplan/
references/
direct-mode.md
plan-mode.md
spec-mode.md
SKILL.md
understand-change/
SKILL.md
update-changelog/
SKILL.md
update-dependencies/
SKILL.md
update-pr/
SKILL.md
update-turbo/
SKILL.md
user-experience/
SKILL.md
UPDATE.md
codex/
ADDITIONS.md
AGENTS.md
CLAUDE.md
docs/
harness-vocabulary.md
MIGRATION.md
SETUP.md
SKILL-CONVENTIONS.md
SKILL-INDEX.md
skills/
answer-reviewer-questions/
SKILL.md
apply-findings/
SKILL.md
assess-technical-debt/
references/
debt-reviewer.md
SKILL.md
audit/
SKILL.md
changelog-rules/
SKILL.md
claude-print/
SKILL.md
code-style/
SKILL.md
commit-rules/
SKILL.md
commit-staged/
commit-staged-push/
SKILL.md
SKILL.md
consult-claude/
SKILL.md
consult-oracle/
scripts/
run_oracle.py
SKILL.md
contribute-turbo/
SKILL.md
create-changelog/
SKILL.md
create-handoff/
SKILL.md
create-issue/
SKILL.md
create-pr/
SKILL.md
create-project-skills/
references/
pattern-extractor.md
SKILL.md
create-skill/
references/
composition.md
evaluation.md
harness.md
principles.md
scripts.md
skill-reviewer.md
structure.md
tools.md
workflows.md
writing.md
SKILL.md
create-test-plan/
SKILL.md
create-threat-model/
references/
analysis-guide.md
SKILL.md
discuss-change/
SKILL.md
draft-plan/
SKILL.md
draft-shells/
SKILL.md
draft-spec/
SKILL.md
evaluate-findings/
SKILL.md
expand-shell/
SKILL.md
explain-this/
SKILL.md
exploratory-test/
SKILL.md
fetch-pr-comments/
scripts/
fetch-pr-data.sh
SKILL.md
finalize/
SKILL.md
find-dead-code/
SKILL.md
frontend-design/
SKILL.md
github-voice/
SKILL.md
implement/
implement-improvements/
references/
direct-lane.md
investigate-lane.md
plan-lane.md
SKILL.md
implement-plan/
SKILL.md
SKILL.md
interpret-feedback/
SKILL.md
investigate/
references/
problem-type-playbooks.md
SKILL.md
map-codebase/
SKILL.md
migrate-turbo-files/
SKILL.md
note-improvement/
SKILL.md
onboard/
SKILL.md
peer-review/
SKILL.md
pick-next-issue/
SKILL.md
pick-next-shell/
SKILL.md
polish-code/
SKILL.md
preview/
SKILL.md
recall-reasoning/
SKILL.md
refine-plan/
SKILL.md
reply-to-pr-conversation/
SKILL.md
reply-to-pr-threads/
SKILL.md
resolve-findings/
references/
direct-path.md
plan-path.md
SKILL.md
resolve-pr-comments/
scripts/
fetch-pr-data.sh
SKILL.md
review-agentic-setup/
SKILL.md
review-code/
references/
api-usage-review.md
consistency-review.md
... 71 moreยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic
/self-improve