Install
openclaw skills install @infectit007/skill-safety-scannerScan your installed ClawHub skills for dangerous code patterns — credential harvesting, shell injection, unauthorized network calls, and known malicious signatures. Produces a per-skill safety report with SAFE/WARN/DANGEROUS ratings and one-command removal instructions. Use when you want to audit skills before trusting them, after installing new skills, or after the ClawHub security incident. No data leaves your machine.
openclaw skills install @infectit007/skill-safety-scannerScans every installed skill in your OpenClaw workspace for dangerous code patterns. Produces a per-skill SAFE / WARN / DANGEROUS rating with exact evidence and removal commands.
Why this exists: ~20% of ClawHub skills have been flagged for malicious patterns including credential harvesting, shell injection, and C2 callbacks. This skill surfaces those issues before they can cause damage — using OpenClaw's own built-in scanner, not a third party.
Privacy guarantee: Runs entirely on your machine. Zero network calls. Zero data exfiltration. You can read every line of this skill — it is a single SKILL.md file.
This skill uses openclaw security audit --deep --json which already scans all installed skills
for dangerous patterns. It then parses, formats, and explains the findings per-skill.
No new scanning code. No dependencies. Just OpenClaw's own trusted scanner with better output.
openclaw security audit --deep --json
Capture the full JSON output.
From the JSON, find all entries where id starts with skills. — these are skill-specific findings.
Key finding IDs to look for:
| Finding ID | Meaning |
|---|---|
skills.code_safety | Dangerous patterns detected in skill code |
skills.untrusted_exec | Skill executes shell commands |
skills.env_harvesting | Skill reads env vars AND makes network calls |
skills.network_exfil | Skill sends data to external hosts |
skills.permission_escalation | Skill requests elevated permissions |
For each installed skill, assign a rating:
| Rating | Criteria |
|---|---|
| ✅ SAFE | No dangerous patterns found |
| ⚠️ WARN | Shell exec OR env access (not combined) — review source |
| 🔴 DANGEROUS | Env harvesting + network send combined, or known malicious signature |
SKILL SAFETY SCAN — YYYY-MM-DD HH:MM
Scanned: X skills Safe: X Warn: X Dangerous: X
──────────────────────────────────────
🔴 DANGEROUS — [skill-name]
Path: ~/.openclaw/workspace/skills/[skill-name]
Issue: [env-harvesting] Reads API keys and sends to external host
Evidence: [filename]:[line] — [code snippet]
Action: clawhub uninstall [skill-name]
rm -rf ~/.openclaw/workspace/skills/[skill-name]
⚠️ WARN — [skill-name]
Path: ~/.openclaw/workspace/skills/[skill-name]
Issue: [dangerous-exec] Executes shell commands via child_process
Evidence: [filename]:[line]
Action: Review source before use. Remove if not needed:
clawhub uninstall [skill-name]
✅ SAFE — [skill-name] (no findings)
──────────────────────────────────────
RECOMMENDATION
[If any DANGEROUS skills]: Remove immediately — treat as compromised.
[If any WARN skills]: Review source at the path above before next use.
[If all SAFE]: Your skill set is clean. Re-scan after any new install.
If the user confirms, execute removal for DANGEROUS-rated skills:
# For each DANGEROUS skill named [skill-name]:
clawhub uninstall [skill-name] 2>/dev/null
rm -rf ~/.openclaw/workspace/skills/[skill-name]
Always show the command and ask for confirmation before removing anything.
After any removals:
openclaw security audit --deep
Confirm the skills.code_safety finding is gone.
To scan automatically after every new skill install, or on a daily schedule:
openclaw cron add --name "skill-safety-scanner:daily" --cron "0 3 * * *" \
--prompt "Run the skill-safety-scanner skill and report findings to memory."