skills/doctor/SKILL.md
Diagnose and fix oh-my-droid installation issues
npx skillsauth add MeroZemory/oh-my-droid doctorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are the OMC Doctor - diagnose and fix installation issues.
# Get installed version
INSTALLED=$(ls ~/.factory/plugins/cache/oh-my-droid/oh-my-droid/ 2>/dev/null | sort -V | tail -1)
echo "Installed: $INSTALLED"
# Get latest from npm
LATEST=$(npm view oh-my-droid version 2>/dev/null)
echo "Latest: $LATEST"
Diagnosis:
Read ~/.factory/settings.json and check if there's a "hooks" key with entries like:
bash $HOME/.factory/hooks/keyword-detector.shbash $HOME/.factory/hooks/persistent-mode.shbash $HOME/.factory/hooks/session-start.shDiagnosis:
ls -la ~/.factory/hooks/*.sh 2>/dev/null
Diagnosis:
keyword-detector.sh, persistent-mode.sh, session-start.sh, or stop-continuation.sh exist: WARN - legacy scripts (can cause confusion)# Check if FACTORY.md exists
ls -la ~/.factory/FACTORY.md 2>/dev/null
# Check for OMC marker
grep -q "oh-my-droid Multi-Agent System" ~/.factory/FACTORY.md 2>/dev/null && echo "Has OMC config" || echo "Missing OMC config"
Diagnosis:
# Count versions in cache
ls ~/.factory/plugins/cache/oh-my-droid/oh-my-droid/ 2>/dev/null | wc -l
Diagnosis:
Check for legacy agents, commands, and skills installed via curl (before plugin system):
# Check for legacy agents directory
ls -la ~/.factory/droids/ 2>/dev/null
# Check for legacy commands directory
ls -la ~/.factory/commands/ 2>/dev/null
# Check for legacy skills directory
ls -la ~/.factory/skills/ 2>/dev/null
Diagnosis:
~/.factory/droids/ exists with oh-my-droid-related files: WARN - legacy agents (now provided by plugin)~/.factory/commands/ exists with oh-my-droid-related files: WARN - legacy commands (now provided by plugin)~/.factory/skills/ exists with oh-my-droid-related files: WARN - legacy skills (now provided by plugin)Look for files like:
architect.md, researcher.md, explore.md, executor.md, etc. in droids/ultrawork.md, deepsearch.md, etc. in commands/.md files in skills/After running all checks, output a report:
## OMC Doctor Report
### Summary
[HEALTHY / ISSUES FOUND]
### Checks
| Check | Status | Details |
|-------|--------|---------|
| Plugin Version | OK/WARN/CRITICAL | ... |
| Legacy Hooks (settings.json) | OK/CRITICAL | ... |
| Legacy Scripts (~/.factory/hooks/) | OK/WARN | ... |
| FACTORY.md | OK/WARN/CRITICAL | ... |
| Plugin Cache | OK/WARN | ... |
| Legacy Agents (~/.factory/droids/) | OK/WARN | ... |
| Legacy Commands (~/.factory/commands/) | OK/WARN | ... |
| Legacy Skills (~/.factory/skills/) | OK/WARN | ... |
### Issues Found
1. [Issue description]
2. [Issue description]
### Recommended Fixes
[List fixes based on issues]
If issues found, ask user: "Would you like me to fix these issues automatically?"
If yes, apply fixes:
Remove the "hooks" section from ~/.factory/settings.json (keep other settings intact)
rm -f ~/.factory/hooks/keyword-detector.sh
rm -f ~/.factory/hooks/persistent-mode.sh
rm -f ~/.factory/hooks/session-start.sh
rm -f ~/.factory/hooks/stop-continuation.sh
rm -rf ~/.factory/plugins/cache/oh-my-droid
echo "Plugin cache cleared. Restart Factory Droid to fetch latest version."
# Keep only latest version
cd ~/.factory/plugins/cache/oh-my-droid/oh-my-droid/
ls | sort -V | head -n -1 | xargs rm -rf
Fetch latest from GitHub and write to ~/.factory/FACTORY.md:
WebFetch(url: "https://raw.githubusercontent.com/MeroZemory/oh-my-droid/main/docs/FACTORY.md", prompt: "Return the complete raw markdown content exactly as-is")
Remove legacy agents, commands, and skills directories (now provided by plugin):
# Backup first (optional - ask user)
# mv ~/.factory/agents ~/.factory/agents.bak
# mv ~/.factory/commands ~/.factory/commands.bak
# mv ~/.factory/skills ~/.factory/skills.bak
# Or remove directly
rm -rf ~/.factory/agents
rm -rf ~/.factory/commands
rm -rf ~/.factory/skills
Note: Only remove if these contain oh-my-droid-related files. If user has custom droids/commands/skills, warn them and ask before removing.
After applying fixes, inform user:
Fixes applied. Restart Factory Droid for changes to take effect.
documentation
Agentic memory system for writers - track characters, relationships, scenes, and themes
development
Decompose multi-step tasks into parallel sub-agent workloads, route each sub-task to the cheapest capable model tier (Haiku/Sonnet/Opus), run long-running commands in the background, and verify all deliverables before stopping. Use when the user asks to 'go fast', 'parallelize', 'ultrawork', or when a request contains 3+ independent sub-tasks that benefit from concurrent execution.
tools
QA cycling workflow - test, verify, fix, repeat until goal met
development
Parallel autopilot with file ownership partitioning