Compose multi-agent workflows with explicit phase definitions, agent sequences, and handoff criteria. Define complex orchestration patterns declaratively.
Design and execute multi-agent workflows with explicit phase sequencing, parallel execution, and conditional handoffs. Use this for complex tasks requiring coordinated AI agents across requirements, implementation, and review phases.
/plugin marketplace add greyhaven-ai/claude-code-config/plugin install agent-orchestration@grey-haven-pluginsDesign and execute multi-agent workflows with explicit coordination.
/workflow-composer [workflow-definition-file or inline-description]
name: feature-development
description: End-to-end feature implementation workflow
phases:
- name: requirements
agents: [product-manager, backend-architect]
outputs: [requirements.md, api-spec.yaml]
- name: implementation
agents: [tdd-python-implementer, frontend-developer]
dependencies: [requirements]
parallel: true
- name: review
agents: [code-quality-analyzer, security-analyzer]
dependencies: [implementation]
- name: deployment
agents: [devops-engineer]
dependencies: [review]
handoff_criteria:
- from: requirements
to: implementation
condition: "API spec approved"
- from: implementation
to: review
condition: "All tests passing"
/workflow-composer feature-auth-api.yaml
Executes multi-phase workflow with automatic agent coordination and context handoff.
/workflow-composer templates list - Show available templates/workflow-composer templates feature - Full-stack feature template/workflow-composer templates bugfix - Debug and fix template/workflow-composer templates refactor - Code refactoring template