Maestro-orchestrate debug-workflow
Run the Maestro debugging workflow for investigation-heavy tasks
install
source · Clone the upstream repo
git clone https://github.com/josstei/maestro-orchestrate
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/josstei/maestro-orchestrate "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/maestro/skills/debug-workflow" ~/.claude/skills/josstei-maestro-orchestrate-debug-workflow-e2fcbf && rm -rf "$T"
manifest:
plugins/maestro/skills/debug-workflow/SKILL.mdsource content
Read
../../references/runtime-guide.md.
Call get_skill_content with resources: ["architecture", "delegation"].
Call get_agent with agents: ["debugger"].
Workflow
- Establish the failing behavior, repro path, and expected behavior
- Form concrete hypotheses (2-3 likely root causes)
- Gather evidence from code, logs, tests, and runtime behavior before proposing fixes
- Isolate the most likely root cause and trace the execution path from trigger to failure
- Verify the conclusion explains all symptoms and present the recommended fix with specific code location