Setup
- 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.
- 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:", 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.
Source: josstei/maestro-orchestrate → claude/skills/execute/SKILL.md
1---2name: execute3description: Execute an approved Maestro implementation plan using the shared session-state contract4---567## Setup891. Call `get_runtime_context` if it appears in your available tools. Use the returned tool mappings,10 agent dispatch syntax, MCP prefix, and paths throughout this session.112. If `get_runtime_context` is unavailable, use this compact fallback:12 - 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=ExitPlanMode13 - 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 / Glob14 - Agent dispatch: Agent(subagent_type: "maestro:<name>", prompt: "...")15 - MCP prefix: mcp__plugin_maestro_maestro__16 - Shared skills/templates/references/protocols: call `get_skill_content(resources: ["<name>"])`1718## Execute1920Call `get_skill_content` with resources: ["execution", "delegation", "session-management", "validation"].2122Read 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.2324---2526**Source:** [`josstei/maestro-orchestrate`](https://github.com/josstei/maestro-orchestrate) → `claude/skills/execute/SKILL.md`