Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Orchestrates multi-agent code workflows with planning, delegated implementation, code review, testing, and automated learning from session artifacts to improve future sessions.
npx claudepluginhub dennisonbertram/claude-coordinatorContext reader and situational analyst. Reads files and returns structured briefings for the coordinator. Fast, thorough, and interpretive.
Pure-delegation coordinator. Agent-only control plane — delegates ALL I/O to specialized subagents (briefer, planner, worker variants, reviewer, scribe, testers, validators, learning-extractor).
Validates that completed work actually satisfies the user's original intent — not just the task instructions, but what the user truly wanted. Runs foreground so it can ask the user directly.
Analyzes session work — task outputs, reviewer findings, intent-validator output, AND sub-agent JSONL transcripts — to surface learnings. Captures both successful patterns and process struggles (retries, dead ends, scope drift, confusion) so future sessions improve.
Architecture and task planning agent. Analyzes requirements and codebase to produce task breakdowns with dependencies, file boundaries, and contracts.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Conductor v3 — Multi-agent orchestration with Evaluate-Loop, parallel execution, Board of Directors, and bundled SupaConductor skills for Claude Code
Multi-agent orchestrator — supervisor loop that launches agents to implement plans
Use /ultrathink <TASK_DESCRIPTION> to launch a Coordinator Agent that directs four specialist sub-agents—Architect, Research, Coder, and Tester—to analyze, design, implement, and validate your coding task. The process breaks the task into clear steps, gathers insights, and synthesizes a cohesive solution with actionable outputs. Relevant files can be referenced ad-hoc using @ filename syntax.
Describe your goal, approve the spec, then step away — Claude and Codex loop together until it's right.
Delegation system with workflow orchestration, specialized agents, and parallel execution for Claude Code
This skill should be used when the model's ROLE_TYPE is orchestrator and needs to delegate tasks to specialist sub-agents. Provides scientific delegation framework ensuring world-building context (WHERE, WHAT, WHY) while preserving agent autonomy in implementation decisions (HOW). Use when planning task delegation, structuring sub-agent prompts, or coordinating multi-agent workflows.
UX testing toolkit for Claude Code — generate user journey stories, walk them through a real browser, and implement the issues found.
Comprehensive macOS health, security, and performance monitoring — beautiful daily HTML reports, cron automation, and one-command diagnostics.
A structured orchestration system for Claude Code that plans, delegates, reviews, and learns.
Claude Coordinator is a set of Claude Code agent definitions that turn Claude into a structured project manager. Instead of having a single Claude session try to do everything, this system uses a team of specialized agents working under a pure-delegation control plane:
Agent. It does not read or write files directly.feature / bugfix tasks. Produces an auditable red → green → regression commit trail.The coordinator maintains state across sessions using two mechanisms: machine-readable files in .coord/ and human-readable files in docs/. This means a project can be picked up exactly where it left off, even after days away.
The coordinator operates as an explicit 10-phase state machine:
startup → intake → plan → delegate → integrate → review → test → promote-learnings → validate → close
| Phase | What happens |
|---|---|
| startup | Briefer reads .coord/ and docs/ to orient the session. Fresh sessions add .coord/ to .gitignore via scribe. |
| intake | Capture the user's request as a command-intent doc (verbatim words, interpreted intent, success criteria). User confirms before proceeding. |
| plan | Planner produces a task breakdown with behavioral test specs. User approves before delegation. |
| delegate | Coordinator routes each task to the right worker (worker, worker-refactor, worker-test, worker-investigation) and spawns them in isolated worktrees. No file overlap between concurrent workers. |
| integrate | Collect worker results. Validate output contracts, including audit-trail commit hashes for TDD task types. Reject and re-delegate anything missing the required evidence. |
| review | Reviewer (Opus + GPT-5.4) checks risky changes. Critical/high findings block progress. |
| test | UI tester, UX tester, and system tester validate the built product. UI/UX only run for user-facing changes. |
| promote-learnings | Learning-extractor analyzes task artifacts AND sub-agent transcripts to surface code + process learnings. Scribe records accepted candidates to .coord/learning-inbox.jsonl. |
| validate | Intent-validator (foreground) compares the work against the original intent doc. May ask the user clarifying questions. |
| close | Scribe updates the task ledger and writes a context packet for the next session. Coordinator summarizes for the user. |
The coordinator can revisit earlier phases when new information invalidates the current plan.
Truth is maintained in three places, each with a different purpose:
.coord/ — Machine Operational StateWorking memory. Ephemeral, structured, machine-readable.
.coord/
├── task-ledger.json # All tasks: pending, in-flight, blocked, done, failed
├── learning-inbox.jsonl # Candidate learnings (JSON lines) awaiting promotion
├── context-packet.md # Compressed session context for continuity
├── tasks/
│ └── TASK-XXX.json # Per-task artifacts: output, files changed, test results
├── reviews/
│ └── REVIEW-XXX.json # Per-review artifacts: findings, severity, recommendations
└── milestones/
└── M-XXX.json # Milestone summaries: scope, tasks, learnings promoted