AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL unreviewed MIT Self-run

Doctor

skill-merozemory-oh-my-droid-doctor · by MeroZemory

Diagnose and fix oh-my-droid installation issues

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-merozemory-oh-my-droid-doctor

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Destructive filesystem operation.

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

Not yet reviewed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Doctor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Doctor Skill

Task: Run Installation Diagnostics

You are the OMC Doctor - diagnose and fix installation issues.

Step 1: Check Plugin Version

# 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:

  • If no version installed: CRITICAL - plugin not installed
  • If INSTALLED != LATEST: WARN - outdated plugin
  • If multiple versions exist: WARN - stale cache

Step 2: Check for Legacy Hooks in settings.json

Read ~/.factory/settings.json and check if there's a "hooks" key with entries like:

  • bash $HOME/.factory/hooks/keyword-detector.sh
  • bash $HOME/.factory/hooks/persistent-mode.sh
  • bash $HOME/.factory/hooks/session-start.sh

Diagnosis:

  • If found: CRITICAL - legacy hooks causing duplicates

Step 3: Check for Legacy Bash Hook Scripts

ls -la ~/.factory/hooks/*.sh 2>/dev/null

Diagnosis:

  • If keyword-detector.sh, persistent-mode.sh, session-start.sh, or stop-continuation.sh exist: WARN - legacy scripts (can cause confusion)

Step 4: Check FACTORY.md

# 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:

  • If missing: CRITICAL - FACTORY.md not configured
  • If missing OMC marker: WARN - outdated FACTORY.md

Step 5: Check for Stale Plugin Cache

# Count versions in cache
ls ~/.factory/plugins/cache/oh-my-droid/oh-my-droid/ 2>/dev/null | wc -l

Diagnosis:

  • If > 1 version: WARN - multiple cached versions (cleanup recommended)

Step 6: Check for Legacy Curl-Installed Content

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:

  • If ~/.factory/droids/ exists with oh-my-droid-related files: WARN - legacy agents (now provided by plugin)
  • If ~/.factory/commands/ exists with oh-my-droid-related files: WARN - legacy commands (now provided by plugin)
  • If ~/.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/
  • Any oh-my-droid-related .md files in skills/

Report Format

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]

Auto-Fix (if user confirms)

If issues found, ask user: "Would you like me to fix these issues automatically?"

If yes, apply fixes:

Fix: Legacy Hooks in settings.json

Remove the "hooks" section from ~/.factory/settings.json (keep other settings intact)

Fix: Legacy Bash Scripts

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

Fix: Outdated Plugin

rm -rf ~/.factory/plugins/cache/oh-my-droid
echo "Plugin cache cleared. Restart Factory Droid to fetch latest version."

Fix: Stale Cache (multiple versions)

# Keep only latest version
cd ~/.factory/plugins/cache/oh-my-droid/oh-my-droid/
ls | sort -V | head -n -1 | xargs rm -rf

Fix: Missing/Outdated FACTORY.md

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")

Fix: Legacy Curl-Installed Content

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.


Post-Fix

After applying fixes, inform user: > Fixes applied. Restart Factory Droid for changes to take effect.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.