
debugging
by XcluEzy7
AG4ONE - Unified agentic engineering workflow combining GWD methodology, Serena semantic analysis, and Ralph autonomous looping for next-generation AI pair programming across multiple platforms
SKILL.md
name: debugging description: Comprehensive debugging skill combining systematic approaches, mindsets, techniques, hypothesis testing, verification patterns, and guidance on when to research
Orchestrator role: Gather symptoms interactively, spawn investigation subagent, handle checkpoints, spawn continuation agents as needed.
Why subagent: Investigation burns context fast (reading files, forming hypotheses, testing). Fresh 200k context per investigation attempt. Main context stays lean for user interaction.
<execution_context>
@/.claude/ag4one/workflows/debug.md
@/.claude/ag4one/templates/DEBUG.md
@~/.claude/ag4one/templates/debug-subagent-prompt.md
</execution_context>
Check for active debug sessions:
ls .planning/debug/*.md 2>/dev/null | grep -v resolved | head -5
1. Check Active Sessions
If active sessions exist AND no $ARGUMENTS:
- List sessions with status, hypothesis, next action
- User picks number to resume OR describes new issue
If $ARGUMENTS provided OR user describes new issue:
- Continue to symptom gathering
2. Gather Symptoms (Main Context)
Use AskUserQuestion for each:
- Expected behavior - What should happen?
- Actual behavior - What happens instead?
- Error messages - Any errors? (paste or describe)
- Timeline - When did this start? Ever worked?
- Reproduction - How do you trigger it?
After each answer, note it. After all gathered, confirm ready to investigate.
3. Create Debug File
mkdir -p .planning/debug
Create .planning/debug/{slug}.md with:
- status: investigating
- trigger: user's original description
- Symptoms section filled from gathering
- Empty Evidence, Eliminated, Resolution sections
4. Spawn Investigation Subagent
Fill debug-subagent-prompt template with:
{slug}: Generated slug{trigger}: Original issue description{expected}: From symptom gathering{actual}: From symptom gathering{errors}: From symptom gathering{reproduction}: From symptom gathering{timeline}: From symptom gathering
Task(
prompt=filled_debug_subagent_prompt,
subagent_type="general-purpose",
description="Debug {slug}"
)
5. Handle Subagent Return
If ## ROOT CAUSE FOUND:
- Display root cause and evidence summary
- Offer options:
- "Fix now" → spawn fix subagent
- "Plan fix" → suggest /ag4:plan-phase --gaps
- "Manual fix" → done
If ## CHECKPOINT REACHED:
- Present checkpoint details to user
- Get user response
- Spawn continuation agent (see step 6)
If ## INVESTIGATION INCONCLUSIVE:
- Show what was checked and eliminated
- Offer options:
- "Continue investigating" → spawn new agent with additional context
- "Manual investigation" → done
- "Add more context" → gather more symptoms, spawn again
6. Spawn Continuation Agent (After Checkpoint)
When user responds to checkpoint, spawn fresh agent:
<objective>
Continue debugging {slug}.
**DO NOT REDO** previous investigation. Evidence is in the debug file.
</objective>
<prior_state>
Debug file: @.planning/debug/{slug}.md
Read this file - it contains all evidence gathered so far.
</prior_state>
<checkpoint_response>
**Checkpoint was:** {checkpoint_type}
**User response:** {user_response}
{interpretation based on checkpoint type}
</checkpoint_response>
<execution_context>
@~/.claude/ag4one/workflows/debug.md
@~/.claude/ag4one/templates/DEBUG.md
</execution_context>
<instructions>
1. Read the debug file to understand current state
2. Incorporate user's checkpoint response
3. Continue investigation from Current Focus
4. Update debug file continuously
5. Return with ROOT CAUSE FOUND, CHECKPOINT REACHED, or INVESTIGATION INCONCLUSIVE
</instructions>
7. Fix (Optional)
If user chooses "Fix now" after root cause found:
<objective>
Fix the root cause identified in {slug} debug session.
</objective>
<context>
Debug file: @.planning/debug/{slug}.md
Root cause: {root_cause}
Files involved: {files}
</context>
<instructions>
1. Implement minimal fix addressing root cause
2. Verify fix against original symptoms
3. Update debug file Resolution section
4. Commit with message referencing debug session
5. Archive to .planning/debug/resolved/
</instructions>
<checkpoint_types> Subagent may return checkpoints for:
human-verify: "Can you confirm you see X when you do Y?"
- Present verification request
- User responds with confirmation or what they see instead
human-action: "I need you to run this command / check this thing"
- Present action request
- User responds "done" or with results
decision: "Should I investigate path A or path B?"
- Present options with context
- User picks direction </checkpoint_types>
<success_criteria>
- Symptoms gathered interactively in main context
- Investigation runs in subagent (fresh context)
- Debug file tracks all state across agent boundaries
- Checkpoints handled via continuation agents
- Root cause confirmed with evidence before fixing
- Fix verified and session archived </success_criteria>
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon