From oh-my-auggie
Diagnose and fix common issues. Use for "debug", "fix this", "what's wrong", and "doctor".
npx claudepluginhub r3dlex/oh-my-auggie --plugin oh-my-auggieThis skill uses the workspace's default tool permissions.
Diagnose problems and prescribe solutions based on symptoms.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Share bugs, ideas, or general feedback.
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