소스 정보
- 저장소
- materialofair/oh-my-codex
- 최근 소스 활동
- 2026년 7월 8일 09:00
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 12
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/materialofair/oh-my-codex --skill debug-analysis명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | debug-analysis |
| description | 深度调试分析 - 使用 Codex 本地证据检索、命令验证和只读 child agent 进行系统性根因诊断。 |
| auto_invoke | true |
| tags | ["debug","analysis","troubleshooting","codex-native"] |
| version | 0.2.0 |
| source | fork |
| checksum | 9f7edc9f189455069a8701e56b2c24f9b642d4308f9536aed2430fd95d37635a |
| updated_at | 2026-05-29T03:50:00.000Z |
| intent | debugging |
| layer | research |
使用当前 Codex 会话、仓库检索、可复现命令和只读 child agent 完成根因分析。不调用外部模型 CLI、不依赖长上下文外部包装器。
手动触发:
使用 debug-analysis 分析:<问题描述>
收集并确认:
优先使用本地证据:
rg -n "<error-keyword>|<symbol>|<route>" .
rg --files | rg "<suspected-area>"
git diff --stat
git log --oneline -5
输出 3-5 个根因假设,每个假设包含:
当问题跨模块、影响面不清或需要独立视角时,派发只读 child agent:
spawn_agent(agent_type="explorer", message="<trace prompt>")
wait_agent
close_agent
推荐 prompt 框架:
Your task is to trace a bug from evidence. Read-only.
<agent-instructions>
Inputs:
- Symptom: <错误现象>
- Logs: <关键日志>
- Suspected files: <文件列表>
- Reproduction command: <命令>
Trace the real execution path. Cite exact files, symbols, and lines where possible.
Return:
1. Most likely root cause
2. Evidence chain
3. Minimal verification command
4. Risky assumptions
5. Files likely needing changes
</agent-instructions>
如果需要严苛复核,可再派发:
spawn_agent(agent_type="reviewer", message="<review the diagnosis>")
按问题类型选择最小验证:
## Debug Analysis
### Symptom
[用户可见问题]
### Evidence
- [file:line or command output summary]
### Root Cause
[最可能根因,带证据链]
### Verification
- Command: `<command>`
Result: [pass/fail/key output]
[最小修复路径]
[需要补测的地方]
[未验证假设或外部依赖]
如果 child agent 不可用,在当前回复中用 [EXPLORER]、[REVIEWER]、[SYNTHESIS] 三段自演同样流程,但仍必须基于本地文件、日志和命令验证。