Multi-agent dev pipeline for Claude Code: Coordinator → Executor → Verifier
npx claudepluginhub kzzalews/dev-workflow-agentsMulti-agent dev pipeline for Claude Code: Coordinator → Executor → Verifier. Invoke with /dev-workflow.
Agentic development workflow for Claude Code, VS Code Copilot, OpenCode, and GitHub Copilot CLI.
Orchestrates a Coordinator → Executor → Verifier pipeline with an adaptive fix loop. Quality-first: the Verifier reviews code with fresh eyes, without knowledge of implementation decisions.
| Platform | Requirement |
|---|---|
| Claude Code | Claude Code CLI installed |
| VS Code Copilot | VS Code + active GitHub Copilot subscription |
| OpenCode | OpenCode + any LLM provider |
| GitHub Copilot CLI | Copilot CLI installed |
curl -fsSL https://raw.githubusercontent.com/kzzalews/dev-workflow-agents/main/install-claude-code.sh | bash
Installs agents to
~/.claude/agents/and registers the/dev-workflowskill viaclaude plugins.
curl -fsSL https://raw.githubusercontent.com/kzzalews/dev-workflow-agents/main/install-vscode.sh | bash
Installs agents to the VS Code user data
agents/directory and~/.claude/agents/.
curl -fsSL https://raw.githubusercontent.com/kzzalews/dev-workflow-agents/main/install-opencode.sh | bash
Installs agents to
~/.config/opencode/agents/.
curl -fsSL https://raw.githubusercontent.com/kzzalews/dev-workflow-agents/main/install-github-copilot-cli.sh | bash
Installs agents to
~/.copilot/agents/and registers the/dev-workflowskill viacopilot plugin.
Type /dev-workflow in Claude Code to start. You will see:
╔══════════════════════════════════════════╗
║ dev-workflow — configuration ║
╠══════════════════════════════════════════╣
║ Coordinator : claude-sonnet-latest ║
║ Executor : claude-haiku-latest ║
║ Verifier : claude-sonnet-latest ║
╠══════════════════════════════════════════╣
║ Project complexity? ║
║ simple — skip Verifier ║
║ complex — full pipeline (default) ║
╠══════════════════════════════════════════╣
║ Override a model? (optional) ║
║ Syntax: role=model ║
║ Example: verifier=claude-opus-latest ║
╚══════════════════════════════════════════╝
Select dev-workflow from the agent dropdown to start. It guides you through the entire pipeline — tells you which agent to switch to at each step and what to send.
| Agent | Role |
|---|---|
dev-workflow | Entry point — collects requirements, guides the pipeline |
dev-coordinator | Planning, pre-check approval, fix routing |
dev-executor | Code analysis and implementation |
dev-verifier | Fresh-eyes code review |
Custom agents use the dropdown selector — they are NOT invoked via
@mention. The@mentionsyntax only works for built-in chat participants (like@githubor@terminal).
Press Tab (or use your switch_agent keybind) to switch to the dev-workflow agent. Describe your task — the guide walks you through the pipeline using @mention for subagents within the same session.
| Agent | Mode | Role |
|---|---|---|
dev-workflow | primary | Entry point — guides the full pipeline |
dev-coordinator | subagent | Planning, pre-check approval, fix routing |
dev-executor | subagent | Code analysis and implementation |
dev-verifier | subagent | Fresh-eyes code review |
Optional: configure per-agent models in ~/.config/opencode/opencode.json:
{
"agent": {
"dev-coordinator": { "model": "openrouter/anthropic/claude-sonnet-4-5" },
"dev-executor": { "model": "openrouter/anthropic/claude-haiku-4-5" },
"dev-verifier": { "model": "openrouter/anthropic/claude-sonnet-4-5" }
}
}
Type /dev-workflow to start the skill. Or switch to the dev-workflow custom agent with copilot --agent dev-workflow.
The pipeline agents (dev-coordinator, dev-executor, dev-verifier, dev-workflow) are loaded automatically from ~/.copilot/agents/.
| Role | Claude Code | VS Code Copilot | OpenCode | GitHub Copilot CLI |
|---|---|---|---|---|
| Coordinator | claude-sonnet-latest | claude-sonnet-latest | global config | claude-sonnet-latest |
| Executor | claude-haiku-latest | claude-haiku-latest | global config | claude-haiku-latest |
| Verifier | claude-sonnet-latest | claude-sonnet-latest | global config | claude-sonnet-latest |
Claude Code, VS Code Copilot, and GitHub Copilot CLI use *-latest aliases — automatically upgrades to the newest model version.
OpenCode agents inherit the globally configured model by default. Override per-agent via opencode.json (see Usage above).
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.