dev-fleet
SolidOrchestration 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.
Install
Quality Score: 81/100
Skill Content
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
fleet
Run an agent-fleet wave on the current repo — Claude (Fable) acts as boss, decomposes a goal into file-disjoint tasks, fans out tiered subagents (opus/sonnet/haiku) in isolated git worktrees via the Workflow tool, adversarially verifies each result, then merges survivors serially so main stays green. Use when the user runs /fleet <goal> or asks to "run the fleet" / "fleet this".
workflow
Orchestrate a MULTI-PHASE, dependent, or resumable run over many provider subagents from a JS script, off the main context (`cc-fleet workflow`). Use for fan-out→barrier→synthesis, per-item pipelines, loop-until-dry, or a run that must survive a kill and `--resume` from its journal. NOT a flat fan-out of independent tasks (that is /cc-fleet:subagent — cheaper, no script); NOT interactive collaboration (that is /cc-fleet:team); NOT trivial single-shot work for the main session.
fleet
Orchestrate the PlausiDen agent fleet (Conductor + worker swarm). Validate a multi-agent plan's scope-disjointness, dispatch a run, run the verify/burn gates, inspect live status or an individual worker, and engage/clear the global STOP. Use when the user wants to run, plan, gate, inspect, or stop the fleet, or open the fleet console. Heavy ops defer to the `fleet` MCP server.