From copilot-cli-toolkit
Orchestrates deprecated workflow phases via /0-init to /4-security commands for session init, task planning, implementation, QA checks, and security reviews using agents.
npx claudepluginhub rjmurillo/ai-agentsThis skill uses the workspace's default tool permissions.
This skill is deprecated. The numbered workflow commands (`/0-init` through `/4-security`) have been replaced by lifecycle commands: `/spec`, `/plan`, `/build`, `/test`, `/review`, `/ship`. Scripts in this directory may still be referenced by other skills.
modules/WorkflowHelpers.psm1scripts/Get-AgentHistory.ps1scripts/Invoke-Impl.ps1scripts/Invoke-Init.ps1scripts/Invoke-Plan.ps1scripts/Invoke-QA.ps1scripts/Invoke-Security.ps1scripts/Invoke-WorkflowCommand.ps1scripts/Sync-SessionDocumentation.ps1scripts/get_agent_history.pyscripts/sync_session_documentation.pyscripts/test_tier_compatibility.pyDEPRECATED: Orchestrates legacy workflow commands (/0-init to /4-security) for development session init, planning, implementation, QA, and security using agent chains.
Executes approved Maestro implementation plans using shared session-state contract, coordinating tools like Agent, Bash, task management for complex workflows.
Orchestrates AI coding workflows with self-correction loops, pre-flight discipline rules, 18 hook events, 5 agents, orchestration patterns, and cross-agent support for Claude Code and Cursor.
Share bugs, ideas, or general feedback.
This skill is deprecated. The numbered workflow commands (/0-init through /4-security) have been replaced by lifecycle commands: /spec, /plan, /build, /test, /review, /ship. Scripts in this directory may still be referenced by other skills.
Use this skill when:
/0-init)/1-plan)/2-impl)/3-qa)/4-security)| Command | Purpose | Agents |
|---|---|---|
/0-init | Session initialization (ADR-007) | Agent Orchestration MCP |
/1-plan | Planning phase | planner / architect / roadmap+advisor |
/2-impl | Implementation | implementer (+ qa + security) |
/3-qa | Quality assurance | qa |
/4-security | Security review (opus) | security |
/0-init)AGENTS.md and HANDOFF.md for context.agents/sessions//1-plan)planner--arch: architect--strategic: roadmap → high-level-advisorGet-WorkflowContextLastCommand=1-plan and PlanningAgent to workflow context/2-impl)--full: Sequential implementer → qa → security--parallel: Parallel qa + security after implementerLastCommand=2-impl to workflow context/3-qa)LastCommand=3-qa to workflow context/4-security)--owasp-only: OWASP checks only--secrets-only: Secrets scan onlyLastCommand=4-security to workflow context/0-init → /1-plan → /2-impl → /3-qa → /4-security
Variants:
/1-plan --arch — architecture decisions/1-plan --strategic — roadmap chain/2-impl --full — sequential impl+qa+security/2-impl --parallel — parallel qa+security.claude/skills/workflow/
├── modules/
│ ├── WorkflowHelpers.psm1 # Shared MCP wrappers
│ └── WorkflowHelpers.Tests.ps1
├── scripts/
│ ├── Invoke-Init.ps1 # /0-init
│ ├── Invoke-Plan.ps1 # /1-plan
│ ├── Invoke-Impl.ps1 # /2-impl
│ ├── Invoke-QA.ps1 # /3-qa
│ ├── Invoke-Security.ps1 # /4-security
│ ├── Invoke-WorkflowCommand.ps1 # Generic router
│ ├── Get-AgentHistory.ps1 # Query MCP history
│ └── Sync-SessionDocumentation.ps1
└── SKILL.md
Agent Orchestration MCP tools used:
invoke_agent — all commandstrack_handoff — context preservation between agentsstart_parallel_execution — /2-impl --parallelaggregate_parallel_results — parallel result mergingagents://history — history queriesSession State MCP: /0-init records evidence via record_evidence.
Agent Orchestration MCP: /0-init activates project and loads memories per ADR-007.
All commands gracefully degrade when MCP is unavailable:
/0-init creates session log in .agents/sessions//1-plan routes to correct agent based on flags/2-impl --parallel aggregates results from concurrent agents/3-qa respects --coverage-threshold parameter/4-security filters checks based on --owasp-only/--secrets-onlySync-SessionDocumentation.ps1 blocks paths outside .agents/sessions//0-init — session context will be missing for subsequent commands/2-impl without a prior /1-plan — no planning artifacts to guide implementation.mcp.json or AGENT_ORCHESTRATION_MCP_URL env varSync-SessionDocumentation.ps1 from outside .agents/sessions/Invoke-<Name>.ps1 and registering in Invoke-WorkflowCommand.ps1 $CommandMapInvoke-*.ps1 scriptWorkflowHelpers.psm1 module| Issue | Solution |
|---|---|
| MCP unavailable | Set AGENT_ORCHESTRATION_MCP_URL env var or add .mcp.json |
| Session log not created | Verify .claude/skills/session-init/scripts/New-SessionLog.ps1 exists |
| Context not persisting | Check .agents/workflow-context.json write permissions |