dev-fleet

Solid

Orchestration playbook for driving the development agent fleet (code-builder, fact-verifier, coherence-checker, code-reviewer) through a build → verify → cohere → review → commit pipeline with explicit, deterministic hand-offs. Use when implementing a non-trivial change where correctness and fact-accuracy matter and you want the steps to actually run in order rather than hoping the orchestrator delegates. Also use when deciding which fleet agent to dispatch for a task, or when wiring a new agent into the pipeline. Covers how to pass context between agents, the fact-gate and coherence-gate before commit, the loop-back semantics on each gate, and handing off to commit-pr.

Code & Development 8 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
32
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Dev Fleet Orchestrator This skill tells the **main session** (the orchestrator — you) how to drive the development agents as a pipeline. The agents live in `agents/`; the main session dispatches each by name via the Agent tool, reads its JSON, and gates on the result. **Two ways to run the pipeline — pick by how much determinism you need:** - **This skill (in-the-loop).** You follow these steps and invoke each agent explicitly. A skill is *instructions you follow*, not a mechanical orchestrator — so it's only as reliable as your adherence. Don't lean on auto-delegation for a stage you care about; name the agent. (A human driving Claude Code can force a stage with an `@agent-…` mention.) - **The `dev-story` Workflow (hands-off, deterministic).** For a guaranteed plan→build→verify→cohere→review→full-suite run, dispatch it via the Workflow tool with the **absolute** `scriptPath` `~/.claude/skills/dev-fleet/dev-story.workflow.js` (a relative path won't resolve from your repo). It moves orchestration into code and hands back a ready-to-merge branch; it mirrors the two-point fact discipline and gates coherence on change size automatically (`coherence: auto|always|never`). See *Running for scale*. See `docs/agent-fleet-architecture.md` for the why. ## The pipeline ``` plan & scope ─▶ verify load-bearing facts ─▶ code-builder ─▶ fact-verifier (gate) ─▶ coherence-check (gate, if complex) ─▶ code-reviewer ─▶ full-suite gate ─▶ [you decide] ─▶ commit-pr (explore ...

Details

Author
kevin-burns
Repository
kevin-burns/claude-skills
Created
2 months ago
Last Updated
today
Language
Python
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category