원클릭으로
doctor
Diagnose and fix common issues. Use for "debug", "fix this", "what's wrong", and "doctor".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Diagnose and fix common issues. Use for "debug", "fix this", "what's wrong", and "doctor".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage OMA skills — list, add, remove, search, and edit skills
Socratic deep interview with mathematical ambiguity gating before autonomous execution
Remove AI slop - low-quality, generic, or verbose content. Use for "clean up", "remove fluff", and "make concise".
Consensus planning - agree before executing. Use for "ralplan", "consensus", "pre-execution review".
Setup routing and environment configuration. Use for "setup", "configure", and "get started".
N coordinated agents on shared task list using Claude Code native teams, with git worktree isolation per executor
| name | doctor |
| description | Diagnose and fix common issues. Use for "debug", "fix this", "what's wrong", and "doctor". |
| trigger | /oma:doctor |
Diagnose problems and prescribe solutions based on symptoms.
Possible causes:
Fix:
# Check PATH
echo $PATH
# Verify installation
which {command}
# Reload shell
source ~/.zshrc
Possible causes:
Fix:
# Fix ownership
chown {user}:{group} {file}
# Add execute
chmod +x {file}
Possible causes:
Fix:
# Install if needed
pip install {module}
# Check environment
which python
# Set PYTHONPATH
export PYTHONPATH={path}
## Doctor: {issue}
### Symptoms Reported
- {symptom 1}
- {symptom 2}
### Diagnosis
#### Possible Causes
| Cause | Likelihood | Evidence |
|-------|------------|----------|
| {cause 1} | High | {evidence} |
| {cause 2} | Low | {evidence} |
#### Root Cause
**Identified:** {cause}
**Confidence:** {percentage}
### Prescription
#### Fix Steps
```bash
{step 1}
{step 2}
{verify command}
{how to prevent recurrence}
Status: {resolved|partial|unresolved} Follow-up: {if needed}
## Constraints
- Collect evidence before diagnosing
- Start with common causes
- Verify fixes work
- Document solutions
- Build pattern library