원클릭으로
debugging
Use for systematic debugging. Auto-triggered when verification fails 3 times. Triggers on "디버깅", "debug", "왜 안 돼".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use for systematic debugging. Auto-triggered when verification fails 3 times. Triggers on "디버깅", "debug", "왜 안 돼".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Loaded automatically at session start. Teaches the orchestrator how to route requests to skills and agents. Do not invoke manually.
Use when the user wants to explore an idea, design an approach, or think through a problem before implementing. Triggers on "고민", "논의", "아이디어", "brs".
Use when code review is needed. Triggers on "코드 리뷰", "리뷰해줘", "code review", or at completion of implementation.
Use to harvest `debt:` markers across the repo into a debt ledger and optionally persist it to the Obsidian vault. Triggers on "부채", "기술부채", "debt", "지름길 정리", "/debt". Read-only — does not modify code.
Use when the user wants to run an implementation plan. Triggers on "실행해줘", "구현해줘", "시작해줘", "execute", or after plan approval.
Implement an entire Figma page as Android Jetpack Compose screens by auto-splitting into frames with visual verification. Use whenever a user shares a figma.com/design URL and wants the page built as Compose code. Triggers on '안드로이드 피그마', 'Android Figma', 'Compose 구현'. Covers any multi-frame page. Does NOT apply to Figma asset downloads or single component edits.
| name | debugging |
| description | Use for systematic debugging. Auto-triggered when verification fails 3 times. Triggers on "디버깅", "debug", "왜 안 돼". |
If a fix has been attempted 3 times without success, do NOT try a 4th fix. Instead, escalate to Phase 4.5 (architecture review).
Before starting any phase, lock the original issue scope:
Confirm the failure is reproducible. Run the failing command/test and capture the exact error.
Before isolating, search for related prior knowledge:
scripts/vault-read.sh to directly read vault wisdom files (learnings.md, issues.md)agmo:vault-search skill with relevant keywords (e.g., error message, module name, symptom)Narrow down the scope:
Delegate to explore agent (standard) to search for related code.
5-step root cause tracing:
Delegate to architect agent for analysis.
Classify the error type before attempting a fix:
| Type | Description | Data to Collect |
|---|---|---|
| syntax | Invalid code structure caught at parse/compile time | File, line number, exact parse error message |
| runtime | Valid code that fails during execution | Stack trace, input values, execution context |
| logic | Code runs but produces wrong output | Expected vs actual values, affected code path |
| config | Wrong or missing configuration values | Config file path, key, expected vs actual value |
| dependency | External package or service mismatch | Package name, version, error from dependency |
Delegate to executor agent to implement the fix. Then run agmo:verification.
If 3 fixes have failed:
architect agent:
Requires codex-plugin-cc installed. Check
hud.json→codexfield. Iffalse, skip Codex rescue and proceed with architect's analysis only.
After the architect completes the architecture review, dispatch codex:codex-rescue agent to get a fresh perspective from a different model. Pass the architect's analysis as context so Codex can build on it rather than starting from scratch.
How to dispatch:
Agent(subagent_type="codex:codex-rescue", prompt="""
A debugging effort has failed 3 times. The architect has reviewed the architecture.
Provide a fresh perspective on the root cause and suggest alternative fix approaches.
Architect's analysis:
{architect_analysis}
Error context:
{error_details_and_prior_attempts}
""")
Sequential execution order:
codex:codex-rescue agent dispatch with architect's findings as input contextHandling Codex rescue results:
Rationale: When the same model fails 3 times on the same issue, a different model's perspective can identify blind spots that repeated attempts with the same model cannot.
After the fix, run verification. The fix is not done until verification passes.
After Phase 5 verification passes, automatically record the resolved issue:
agmo:wisdom with the issue summary, root cause, and fix applied4 layers of validation: