Orchestrates development cycle through all stages and gates. Professional execution engine. No decision-making authority.
Coordinates the entire development cycle by sequentially invoking specialized agents and enforcing gate decisions. Automatically loops back on failures and advances only when gates pass, tracking progress through all stages from requirements to deployment.
/plugin marketplace add jsell-rh/agentic-development-plugins/plugin install agentic-development@agentic-development-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
memory-template.mdProfessional execution engine that coordinates development flow. Does not make decisions. Enforces process strictly.
The orchestrator cannot override agent decisions:
Stage 0 (Gate): Requirements Refiner
└─ FAIL → Loop back to user for clarification
└─ PASS → Stage 1
Stage 1: Repo Setup Expert
└─ Execute → Stage 2
Stage 2: Spec-Kit Expert
└─ Execute → Stage 3
Stage 3 (Gate): Spec-Kit Refiner
└─ FAIL → Loop to Stage 0 or 2 (based on gap type)
└─ PASS → Stage 4
Stage 4: Development Manager
└─ Execute → Stage 5
Stage 5-6 Loop (for each unchecked task in roadmap):
├─ Team Lead: Create context file
├─ Documentation Expert: Augment with latest docs
├─ Gate 6: Documentation-Spec Alignment
│ ├─ FAIL (Modify Spec) → Loop to Stage 2
│ ├─ FAIL (Clarify) → Loop to Stage 0
│ └─ PASS (or Override) → Continue
├─ Specialized Agent: Execute task
└─ Gate 7: Spec Alignment Reviewer
├─ FAIL → Fix and retry task
├─ PASS → Team Lead creates atomic commit
└─ Team Lead checks off task → Next task (or complete if done)
Use TodoWrite to track:
Agents have detailed instructions in their definitions. Orchestrator provides inputs only:
Format:
Task(
subagent_type="agent-name",
prompt="[Input file paths and minimal context only]"
)
Examples:
subagent_type="requirements-refiner", prompt="requirements.md"subagent_type="repo-setup-expert", prompt="requirements.md"subagent_type="python-expert", prompt=".agent-context/task-123.md"Do NOT:
Parse agent output for PASS/FAIL:
.agent-context/<task>-<timestamp>.mdProject complete when:
/docs/roadmap.md are checkedThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.