00— Plugin for Claude Code · v0.2.4
vibe-flowSpec to merged code.
Spec to merged code. Multi-agent orchestration for Claude Code. A pipeline of specialist skills that plan, dispatch, link, review, and merge — with verification gates at every step.
What it is
A plugin for Claude Code. Ten coordinated skills that turn a spec into merged code.
You hand it a spec. It decomposes into atomic issues on your vibe-kanban board, assigns a complexity tier, dispatches workspaces in parallel waves, opens PRs, runs a two-stage review with an isolated subagent, merges clean, and posts a standup. When a run hits a CI failure or a conflict, it routes to the fix or rebase sub-skill and loops — with an escalation ceiling so it can’t thrash forever.
Every transition is gated. Nothing ships without a fresh verification.
Skills
Each one is a skill you can invoke directly. Or let the meta skill run the full loop.
Executor routing
Five tiers. The cheapest model that can do the job, and no cheaper.
| Tier | Executor | When |
|---|---|---|
| T0 | Gemini flash | Typo, copy, trivial CSS |
| T1 | Codex mini / Sonnet medium | Simple CRUD, <150 LoC |
| T2 | Sonnet high | Multi-file, moderate |
| T3 | Opus | Architecture, migration |
| T4 | Opus + brainstorm | Research, RFC |
Install
One command to add the marketplace, one to install, one to init.
# In Claude Code:
/plugin marketplace add OAI-Labs/vibe-flow
/plugin install vibe-flow@vibe-flow
# Then, in your repo:
/vibe-flow:vibe-initRequires the vibe-kanban MCP server. See installation for wiring.
Philosophy
Why it’s shaped this way.
- Verify fresh, always.No hope-based merges. Every gate re-checked before it lets code through.
- Humans pick scope.Plan approval, tier overrides, cost budget — human owns the contract.
- Agents do the work.Parallel waves, strict isolation, bounded escalation. The graph stays tight.
- State is the source of truth.state.json + vibe-kanban board mirror reality. No guessing.
- Ship small, ship often.Atomic issues, one-PR-per-issue, squash merge. No epics that never land.