mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-01-31 19:53:07 +08:00
- Add .claude-plugin/plugin.json manifest for direct installation - Add .claude-plugin/marketplace.json for marketplace distribution - Reorganize skills to proper skill-name/SKILL.md format - Update hooks.json with relative paths for portability - Add new skills: continuous-learning, strategic-compact, eval-harness, verification-loop - Add new commands: checkpoint, eval, orchestrate, verify - Update README with plugin installation instructions Install via: /plugin marketplace add affaan-m/everything-claude-code /plugin install everything-claude-code@everything-claude-code
3.3 KiB
3.3 KiB
Orchestrate Command
Sequential agent workflow for complex tasks.
Usage
/orchestrate [workflow-type] [task-description]
Workflow Types
feature
Full feature implementation workflow:
planner -> tdd-guide -> code-reviewer -> security-reviewer
bugfix
Bug investigation and fix workflow:
explorer -> tdd-guide -> code-reviewer
refactor
Safe refactoring workflow:
architect -> code-reviewer -> tdd-guide
security
Security-focused review:
security-reviewer -> code-reviewer -> architect
Execution Pattern
For each agent in the workflow:
- Invoke agent with context from previous agent
- Collect output as structured handoff document
- Pass to next agent in chain
- Aggregate results into final report
Handoff Document Format
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]
Example: Feature Workflow
/orchestrate feature "Add user authentication"
Executes:
-
Planner Agent
- Analyzes requirements
- Creates implementation plan
- Identifies dependencies
- Output:
HANDOFF: planner -> tdd-guide
-
TDD Guide Agent
- Reads planner handoff
- Writes tests first
- Implements to pass tests
- Output:
HANDOFF: tdd-guide -> code-reviewer
-
Code Reviewer Agent
- Reviews implementation
- Checks for issues
- Suggests improvements
- Output:
HANDOFF: code-reviewer -> security-reviewer
-
Security Reviewer Agent
- Security audit
- Vulnerability check
- Final approval
- Output: Final Report
Final Report Format
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]
Parallel Execution
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
$ARGUMENTS:
feature <description>- Full feature workflowbugfix <description>- Bug fix workflowrefactor <description>- Refactoring workflowsecurity <description>- Security review workflowcustom <agents> <description>- Custom agent sequence
Custom Workflow Example
/orchestrate custom "architect,tdd-guide,code-reviewer" "Redesign caching layer"
Tips
- Start with planner for complex features
- Always include code-reviewer before merge
- Use security-reviewer for auth/payment/PII
- Keep handoffs concise - focus on what next agent needs
- Run verification between agents if needed