DD openclaw-watchdog
OpenClaw 跨平台配置备份与网关监控。自动备份 openclaw.json,每分钟检查 gateway 状态,宕机时自动恢复。支持 Linux/macOS/Windows。触发:配置备份、gateway 监控、自动恢复、看门狗、watchdog。
As a process D 39/100 · Unfinished process — 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.
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 · 7
-
high Dangerous commands
cmd-persistenceSKILL.md:161Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl unload ~/Library/LaunchAgents/com.openclaw.watchdog.plist
-
high Dangerous commands
cmd-persistenceSKILL.md:162Persistence mechanism (cron / launchd / scheduled task / autorun registry)launchctl load ~/Library/LaunchAgents/com.openclaw.watchdog.plist
Medium and low: 5
-
medium Dangerous commands
cmd-persistencescripts/install.cjs:153Persistence mechanism (cron / launchd / scheduled task / autorun registry) (quoted — discussed, not commanded)execSync(`launchctl load ${plistPath}`, { encoding: 'utf8' });quoted -
medium Dangerous commands
cmd-persistencescripts/install.cjs:213Persistence mechanism (cron / launchd / scheduled task / autorun registry) (quoted — discussed, not commanded)execSync(`schtasks /create /tn "${taskName}" /tr "node ${scriptPath} monitor" /sc onstart /ru SYSTEM /rl highest /f`, { encoding: 'utf8' });quoted -
low Dangerous commands
cmd-background-processscripts/install.cjs:95Starts a background / autostarted process (quoted — discussed, not commanded)execSync('systemctl enable openclaw-watchdog', { encoding: 'utf8' });quoted -
low Dangerous commands
cmd-cron-mentionscripts/install.cjs:172Mentions editing / listing crontab (quoted — discussed, not commanded)current = execSync('crontab -l', { encoding: 'utf8' });quoted -
low Dangerous commands
cmd-cron-mentionscripts/watchdog.cjs:750Mentions editing / listing crontab (quoted — discussed, not commanded)const crontab = execSync('crontab -l', { encoding: 'utf8' });quoted
Files scanned: 5. 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")
Process rating: all ten parameters 39/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
- 30Running it twice. 1 mutating operations with no state check
- 40Consistency. Frontmatter name (openclaw-watchdog) differs from the folder (openclaw-watchdog-pro)
- 60Tools and files. Uses tools (bash, web) that frontmatter does not declare
- 100Steps. 11 steps
- 100Execution cost. Instruction body is 1074 tokens
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)
- +3Output format is not stated: the model decides each time
- -31 of 1 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +3Description length 126: enough signal without eating the budget
- +4Structure: 23 headings
- +3Step-by-step instructions: 11 items
- +4Has examples (14 code blocks)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 69.