Sequential agent workflow for complex tasks.
Orchestrates sequential AI agents to execute complex development workflows like feature implementation and bug fixes.
/plugin marketplace add https://www.claudepluginhub.com/api/plugins/worldflowai-everything-claude-code/marketplace.json/plugin install worldflowai-everything-claude-code@cpd-worldflowai-everything-claude-codeSequential agent workflow for complex tasks.
/orchestrate [workflow-type] [task-description]
Full feature implementation workflow:
planner -> tdd-guide -> code-reviewer -> security-reviewer
Bug investigation and fix workflow:
explorer -> tdd-guide -> code-reviewer
Safe refactoring workflow:
architect -> code-reviewer -> tdd-guide
Security-focused review:
security-reviewer -> code-reviewer -> architect
For each agent in the workflow:
Between agents, create handoff document:
## HANDOFF: [previous-agent] -> [next-agent]
### Context
[Summary of what was done]
### Findings
[Key discoveries or decisions]
### Files Modified
[List of files touched]
### Open Questions
[Unresolved items for next agent]
### Recommendations
[Suggested next steps]
/orchestrate feature "Add user authentication"
Executes:
Planner Agent
HANDOFF: planner -> tdd-guideTDD Guide Agent
HANDOFF: tdd-guide -> code-reviewerCode Reviewer Agent
HANDOFF: code-reviewer -> security-reviewerSecurity Reviewer Agent
ORCHESTRATION REPORT
====================
Workflow: feature
Task: Add user authentication
Agents: planner -> tdd-guide -> code-reviewer -> security-reviewer
SUMMARY
-------
[One paragraph summary]
AGENT OUTPUTS
-------------
Planner: [summary]
TDD Guide: [summary]
Code Reviewer: [summary]
Security Reviewer: [summary]
FILES CHANGED
-------------
[List all files modified]
TEST RESULTS
------------
[Test pass/fail summary]
SECURITY STATUS
---------------
[Security findings]
RECOMMENDATION
--------------
[SHIP / NEEDS WORK / BLOCKED]
For independent checks, run agents in parallel:
### Parallel Phase
Run simultaneously:
- code-reviewer (quality)
- security-reviewer (security)
- architect (design)
### Merge Results
Combine outputs into single report
$ARGUMENTS:
feature <description> - Full feature workflowbugfix <description> - Bug fix workflowrefactor <description> - Refactoring workflowsecurity <description> - Security review workflowcustom <agents> <description> - Custom agent sequence/orchestrate custom "architect,tdd-guide,code-reviewer" "Redesign caching layer"