FC openclaw-omni-expert
OpenClaw全能专家系统;支持多种远程软件(UU/RustDesk/ToDesk/向日葵/RDP)、一键安装、TOP3专家诊断、全自动驾驶、Agent/Workflow编排、工具链配置、记忆系统、插件开发、监控运维、100+实战案例库和故障排查手册;用户说"安装 OpenClaw"、"配置 OpenClaw"、"诊断 OpenClaw 问题"、"创建 Agent"、"编排 Workflow"、"远程控制电脑"、"用鼠标操作"时使用
As a process C 53/100 · Has gaps — weak spots: result and completion, when it triggers, inputs and preconditions
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.
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.
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.
Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.
The instructions or scripts send data out: environment variables, keys, file contents, chat history. You may never notice, because the agent performs the upload as "part of the task".
If the upload is not needed for the task, remove it: catalogs flag such skills and delist them. If it is needed, name the destination explicitly, say what leaves the machine, and give the user a switch.
How to improve
- 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.
- Say in the description WHEN to use the skill ("use when…", example requests): that is the agent's main cue.
- 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 · 32
-
high Dangerous commands
cmd-pipe-to-shellreferences/desktop-remote-guide.md:462Downloads and executes remote code from an unrecognised host (pipe to shell)curl -fsSL https://rpm.nodesource.com/setup_22.x | sudo bash -
-
high Dangerous commands
cmd-disable-securityreferences/troubleshooting-guide.md:714Disables a security control (Defender, Gatekeeper, SIP, firewall, execution policy)Add-MpPreference -ExclusionPath "$env:USERPROFILE\.openclaw"
-
high Dangerous commands
cmd-disable-securityreferences/troubleshooting-guide.md:717Disables a security control (Defender, Gatekeeper, SIP, firewall, execution policy)Add-MpPreference -ExclusionPath "$env:USERPROFILE\.npm-global"
Medium and low: 29
-
medium Exfiltration
exfil-webhook-urlreferences/monitoring-guide.md:215Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)"webhook_url": "https://hooks.slack.com/services/xxx"
quoted -
medium Exfiltration
exfil-webhook-urlreferences/monitoring-guide.md:245Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)"webhook_url": "https://hooks.slack.com/services/xxx",
quoted -
medium Dangerous commands
cmd-pipe-to-shell-known-hostreferences/troubleshooting-guide.md:40Pipe-to-shell installer from a well-known host (still executes remote code)curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
-
medium Dangerous commands
cmd-privilegereferences/troubleshooting-guide.md:77Privilege escalation / world-writable permissionssudo chown -R $(whoami) $(npm config get prefix)/lib/node_modules
-
medium Dangerous commands
cmd-privilegereferences/troubleshooting-guide.md:78Privilege escalation / world-writable permissionssudo chown -R $(whoami) $(npm config get prefix)/bin
-
medium Dangerous commands
cmd-shell-rcreferences/troubleshooting-guide.md:90Writes to a shell startup fileecho 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc # 或 ~/.zshrc
-
medium Dangerous commands
cmd-pipe-to-shellreferences/troubleshooting-guide.md:100Downloads and executes remote code from an unrecognised host (pipe to shell) (the skill's own vendor host)curl -fsSL https://openclaw.ai/install.sh | bash
vendor-host -
medium Dangerous commands
cmd-shell-rcreferences/troubleshooting-guide.md:209Writes to a shell startup fileecho 'export PATH=$(npm config get prefix)/bin:$PATH' >> ~/.bashrc
-
medium Dangerous commands
cmd-execpolicy-bypassreferences/troubleshooting-guide.md:630Runs PowerShell with execution policy bypassedSet-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
-
medium Dangerous commands
cmd-execpolicy-bypassreferences/troubleshooting-guide.md:641Runs PowerShell with execution policy bypassedpowershell -ExecutionPolicy Bypass -File inst…ps1
-
medium Dangerous commands
cmd-pipe-to-shell-known-hostreferences/troubleshooting.md:37Pipe-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-shell-rcreferences/troubleshooting.md:62Writes to a shell startup fileecho 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc
-
medium Dangerous commands
cmd-pipe-to-shellscripts/config_expert.py:136Downloads and executes remote code from an unrecognised host (pipe to shell) (string literal in code, not executed)"step1": "安装 Ollama: curl -fsSL https://ollama.com/install.sh | sh",
code literal -
medium Dangerous commands
cmd-pipe-to-shellscripts/desktop-remote-helper.py:504Downloads and executes remote code from an unrecognised host (pipe to shell) (string literal in code, not executed)curl -fsSL https://rpm.nodesource.com/setup_22.x | sudo bash -
code literal -
medium Dangerous commands
cmd-pipe-to-shell-known-hostscripts/install_openclaw.sh:110Pipe-to-shell installer from a well-known host (still executes remote code)curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
-
medium Dangerous commands
cmd-privilegescripts/install_openclaw.sh:235Privilege escalation / world-writable permissionssudo chown -R $(whoami) "$npm_global/lib/node_modules"
-
medium Dangerous commands
cmd-privilegescripts/install_openclaw.sh:236Privilege escalation / world-writable permissionssudo chown -R $(whoami) "$npm_global/bin"
-
medium Exfiltration
exfil-webhook-urlscripts/monitoring_expert.py:486Webhook / callback URL commonly used for exfiltration (verify the destination) (quoted — discussed, not commanded)"webhook_url": "https://hooks.slack.com/services/xxx",
quoted -
low Dangerous commands
cmd-privilegereferences/desktop-remote-guide.md:462Privilege escalation / world-writable permissions (detector / deny-list definition)curl -fsSL https://rpm.nodesource.com/setup_22.x | sudo bash -
detector -
low Dangerous commands
cmd-cron-mentionreferences/troubleshooting-guide.md:959Mentions editing / listing crontabcrontab -e
-
low Dangerous commands
cmd-pipe-to-shell-known-hostscripts/autopilot.py:519Pipe-to-shell installer from a well-known host (still executes remote code) (string literal in code, not executed)curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
code literal -
low Dangerous commands
cmd-privilegescripts/desktop-remote-helper.py:504Privilege escalation / world-writable permissions (detector / deny-list definition; string literal in code, not executed)curl -fsSL https://rpm.nodesource.com/setup_22.x | sudo bash -
detectorcode literal -
low Dangerous commands
cmd-background-processscripts/desktop-remote-helper.py:652Starts a background / autostarted process (string literal in code, not executed)sudo systemctl enable openclaw-gateway
code literal -
low Dangerous commands
cmd-pipe-to-shell-known-hostscripts/env_check.py:447Pipe-to-shell installer from a well-known host (still executes remote code) (string literal in code, not executed)"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash",
code literal -
low Dangerous commands
cmd-pipe-to-shell-known-hostscripts/fix_issues.py:111Pipe-to-shell installer from a well-known host (still executes remote code) (string literal in code, not executed)"curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash",
code literal -
low Dangerous commands
cmd-pipe-to-shell-known-hostscripts/remote_executor.py:159Pipe-to-shell installer from a well-known host (still executes remote code) (string literal in code, not executed)curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
code literal -
low Dangerous commands
cmd-execpolicy-bypassscripts/remote-helper.py:260Runs PowerShell with execution policy bypassed (quoted — discussed, not commanded)command = f"powershell -ExecutionPolicy Bypass -File {remote_script}"quoted -
low Dangerous commands
cmd-pipe-to-shell-known-hostscripts/troubleshooting.py:73Pipe-to-shell installer from a well-known host (still executes remote code) (string literal in code, not executed)"安装 nvm: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash",
code literal -
low Dangerous commands
cmd-shell-rcscripts/troubleshooting.py:112Writes to a shell startup file (string literal in code, not executed)"添加到 PATH: echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.bashrc",
code literal
Files scanned: 40. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
description-no-whendescription does not say WHEN to use the skill (no "use when") - note
frontmatter-keyunknown frontmatter key "dependency"
Process rating: all ten parameters 53/100
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 0Failures and branches. Linear process with no failure handling
- 0Progress reporting. Says nothing while it works
- 20When it triggers. No condition that starts the skill
- 100Tools and files. No external tools needed
- 100Steps. 9 steps
- 100Consistency. Name and required fields are in place
- 100Execution cost. Instruction body is 1798 tokens
- 100Running it twice. No mutating operations
- low 12 top-level sections: this looks like several domains in one skill
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
- +4Description does not say when NOT to use the skill (false activations)
- +3Output format is not stated: the model decides each time
- -413 reference files, but SKILL.md never points to them: the model will not open them
- -311 of 25 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +5Description quotes 6 example trigger phrases
- +3Description length 219: enough signal without eating the budget
- +4Structure: 31 headings
- +3Step-by-step instructions: 9 items
- +4Has examples (18 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 69.