/execute
Execute an approved Maestro implementation plan using the shared session-state contract
$ npx -y skills add josstei/maestro-orchestrate --skill execute --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/execute
Context preview
The summary Claude sees to decide when to auto-load this skill.
Execute an approved Maestro implementation plan using the shared session-state contract
SKILL.md
execute.SKILL.mdname: execute
description: Execute an approved Maestro implementation plan using the shared session-state contract
allowed-tools:
- Read
- Write
- Edit
- Bash
- Agent
- Glob
- Grep
- WebSearch
- WebFetch
- AskUserQuestion
- TaskCreate
- TaskUpdate
- TaskList
- Skill
- EnterPlanMode
- ExitPlanMode
Setup
1. Call `get_runtime_context` if it appears in your available tools. Use the returned tool mappings, agent dispatch syntax, MCP prefix, and paths throughout this session. 2. If `get_runtime_context` is unavailable, use this compact fallback:
- Core tools: read_file=Read, write_file=Write, replace=Edit, run_shell_command=Bash, glob=Glob, grep_search=Grep, activate_skill=Skill, ask_user=AskUserQuestion, enter_plan_mode=EnterPlanMode, exit_plan_mode=ExitPlanMode
- Extended tools: google_web_search=WebSearch, web_fetch=WebFetch, write_todos=[TaskCreate,TaskUpdate,TaskList], read_many_files=Read, list_directory=Glob, codebase_investigator=Agent (Explore) / Grep / Glob
- Agent dispatch: Agent(subagent_type: "maestro:<name>", prompt: "...")
- MCP prefix: mcp__plugin_maestro_maestro__
- Shared skills/templates/references/protocols: call `get_skill_content(resources: ["<name>"])`
Execute
Call `get_skill_content` with resources: ["execution", "delegation", "session-management", "validation"].
Read the approved implementation plan at the user-provided path (or check `docs/maestro/plans/` for the most recent plan). Resolve the execution mode gate, create or resume session state, then execute phases through child agents following the loaded methodology.
Read more
name: execute description: Execute an approved Maestro implementation plan using the shared session-state contract allowed-tools: - Read - Write - Edit - Bash - Agent - Glob - Grep - WebSearch - WebFetch - AskUserQuestion - TaskCreate - TaskUpdate - TaskList - Skill - EnterPlanMode - ExitPlanMode
Setup
1. Call `get_runtime_context` if it appears in your available tools. Use the returned tool mappings, agent dispatch syntax, MCP prefix, and paths throughout this session. 2. If `get_runtime_context` is unavailable, use this compact fallback:
- Core tools: read_file=Read, write_file=Write, replace=Edit, run_shell_command=Bash, glob=Glob, grep_search=Grep, activate_skill=Skill, ask_user=AskUserQuestion, enter_plan_mode=EnterPlanMode, exit_plan_mode=ExitPlanMode
- Extended tools: google_web_search=WebSearch, web_fetch=WebFetch, write_todos=[TaskCreate,TaskUpdate,TaskList], read_many_files=Read, list_directory=Glob, codebase_investigator=Agent (Explore) / Grep / Glob
- Agent dispatch: Agent(subagent_type: "maestro:<name>", prompt: "...")
- MCP prefix: mcp__plugin_maestro_maestro__
- Shared skills/templates/references/protocols: call `get_skill_content(resources: ["<name>"])`
Execute
Call `get_skill_content` with resources: ["execution", "delegation", "session-management", "validation"].
Read the approved implementation plan at the user-provided path (or check `docs/maestro/plans/` for the most recent plan). Resolve the execution mode gate, create or resume session state, then execute phases through child agents following the loaded methodology.
Maestro is a multi-agent development orchestration platform with 39 specialists, an Express path for simple work, a 4-phase standard workflow for medium and complex work, persistent session state, and standalone
Repo: josstei/maestro-orchestrate
Other skills on maestro-orchestrate.
- /a11y-audit
Run a Maestro-style accessibility audit for WCAG compliance, ARIA usage, keyboard navigation, and screen reader compatibility
Open skill - /archive
Archive the active Maestro session while preserving the shared state layout
Open skill - /code-review
Standalone code review methodology for structured, severity-classified code assessment
Open skill - /compliance-check
Run a Maestro-style regulatory compliance review for GDPR/CCPA, cookie consent, data handling, and licensing
Open skill - /debug-workflow
Run the Maestro debugging workflow for investigation-heavy tasks
Open skill - /delegation
Agent delegation best practices for constructing effective subagent prompts with proper scoping
Open skill

