SKILLEMALL.ai

FB openclaw-doctor-pro

Comprehensive diagnostic, error-fixing, and skill recommendation tool for OpenClaw

Not recommendedcritical or high security findings · low grade F
modbender/skill-library-mcp Claude Code author: modbender MIT 50 files body ≈ 803 tokens Open the sourcegithub.com analyzed 2 d ago

Comprehensive diagnostic, error-fixing, and skill recommendation tool for OpenClaw

As a process B 67/100 · Nearly there — weak spots: when it triggers, inputs and preconditions, progress reporting

AnalyzerSoftware developmenttype and topics are labelled automatically from the skill text
JSON
Technical rating
F
36/100
safety, quality, tests
Safety 60%
0
Quality 40%
91
Run on models
none yet
Process rating
B
67/100
Nearly there
Inputs and preconditions w 11
0
Progress reporting w 2
0
When it triggers w 12
20
the three weakest of ten parameters · all ten

What is at stake

The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.

Dangerous commands
If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

How to improve

  1. Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 25

  • high Dangerous commands cmd-disable-security references/gateway-errors.md:159
    Disables a security control (Defender, Gatekeeper, SIP, firewall, execution policy)
    sudo setenforce 0
  • high Dangerous commands cmd-disable-security references/sandbox-errors.md:220
    Disables a security control (Defender, Gatekeeper, SIP, firewall, execution policy)
    sudo setenforce 0
Medium and low: 23
  • medium Dangerous commands cmd-shell-rc references/auto-fix-capabilities.md:262
    Writes to a shell startup file
    echo 'export PATH="'$NPM_BIN':$PATH"' >> ~/.bashrc
  • medium Dangerous commands cmd-shell-rc references/auto-fix-capabilities.md:265
    Writes to a shell startup file
    echo 'export PATH="'$NPM_BIN':$PATH"' >> ~/.zshrc
  • medium Dangerous commands cmd-privilege references/gateway-errors.md:255
    Privilege escalation / world-writable permissions
    echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf
  • medium Dangerous commands cmd-pipe-to-shell-known-host references/installation-errors.md:32
    Pipe-to-shell installer from a well-known host (still executes remote code)
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
  • medium Dangerous commands cmd-pipe-to-shell-known-host references/installation-errors.md:105
    Pipe-to-shell installer from a well-known host (still executes remote code)
    curl -fsSL https://get.pnpm.io/install.sh | sh -
  • medium Dangerous commands cmd-shell-rc references/installation-errors.md:120
    Writes to a shell startup file
    echo 'export PATH="$HOME/.local/share/pnpm:$PATH"' >> ~/.bashrc
  • medium Dangerous commands cmd-shell-rc references/installation-errors.md:186
    Writes to a shell startup file
    echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.profile
  • medium Dangerous commands cmd-privilege references/installation-errors.md:193
    Privilege escalation / world-writable permissions
    sudo chown -R $USER:$USER ~/.npm
  • medium Dangerous commands cmd-privilege references/installation-errors.md:194
    Privilege escalation / world-writable permissions
    sudo chown -R $USER:$USER ~/.pnpm-store
  • medium Dangerous commands cmd-shell-rc references/installation-errors.md:252
    Writes to a shell startup file
    echo 'export PATH="$(npm bin -g):$PATH"' >> ~/.bashrc
  • medium Dangerous commands cmd-shell-rc references/installation-errors.md:256
    Writes to a shell startup file
    echo 'export PATH="$(pnpm bin -g):$PATH"' >> ~/.bashrc
  • medium Dangerous commands cmd-shell-rc references/installation-errors.md:260
    Writes to a shell startup file
    echo 'export PATH="$HOME/.npm-global/bin:$PATH"' >> ~/.bashrc
  • medium Dangerous commands cmd-privilege references/installation-errors.md:525
    Privilege escalation / world-writable permissions
    sudo chown -R $USER:$USER ~/.npm
  • medium Dangerous commands cmd-privilege references/installation-errors.md:526
    Privilege escalation / world-writable permissions
    sudo chown -R $USER:$USER ~/.pnpm-store
  • medium Dangerous commands cmd-privilege references/sandbox-errors.md:49
    Privilege escalation / world-writable permissions
    sudo chmod 666 /var/run/docker.sock
  • medium Dangerous commands cmd-privilege references/sandbox-errors.md:211
    Privilege escalation / world-writable permissions
    sudo chown -R $USER:$USER ~/.openclaw/workspace
  • medium Dangerous commands cmd-privilege references/sandbox-errors.md:268
    Privilege escalation / world-writable permissions
    sudo chown -R 1000:1000 ~/.openclaw/workspace/
  • low Exfiltration read-dotenv references/authentication-errors.md:159
    Reads a .env file
    cat .env.example
  • low Exfiltration read-dotenv references/authentication-errors.md:165
    Reads a .env file
    cp .env.example .env
  • low Exfiltration exfil-webhook-url references/channel-errors.md:101
    Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)
    curl "https://api.telegram.org/bot<TOKEN>/getMe"
    placeholder
  • low Exfiltration exfil-webhook-url references/channel-errors.md:107
    Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)
    curl "https://api.telegram.org/bot<TOKEN>/getWebhookInfo"
    placeholder
  • low Dangerous commands cmd-background-process references/sandbox-errors.md:39
    Starts a background / autostarted process
    sudo systemctl enable docker
  • low Exfiltration exfil-webhook-url references/troubleshooting-workflow.md:166
    Webhook / callback URL commonly used for exfiltration (verify the destination) (placeholder value)
    ├─ curl "https://api.telegram.org/bot<TOKEN>/getMe"
    placeholder

Files scanned: 50. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

  • note frontmatter-key unknown frontmatter key "homepage"

Process rating: all ten parameters 67/100

  • 0Inputs and preconditions. Does not say what the process needs to start
  • 0Progress reporting. Says nothing while it works
  • 20When it triggers. No condition that starts the skill
  • 50Failures and branches. 0 branches, has a failure section
  • 60Result and completion. Output format stated, no completion criterion
  • 100Tools and files. No external tools needed
  • 100Steps. 20 steps
  • 100Consistency. Name and required fields are in place
  • 100Execution cost. Instruction body is 803 tokens
  • 100Running it twice. No mutating operations

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +5Description has no quoted example phrases that should trigger the skill
  • +4Description does not say when NOT to use the skill (false activations)
  • +3Description length 82: 120–800 characters recommended
  • +2Single-language instructions
  • +4Structure: 10 headings
  • +3Step-by-step instructions: 20 items
  • +3Output format is stated explicitly
  • +4Has examples (5 code blocks)
  • +4Reference files are cited in the instructions (12 of 12)
  • +3All 5 scripts are documented
  • +1License stated

Quality base 70; lint remarks subtract, signals add up to 100. Result: 91.