CF openclaw-memory-system
Use whenever the user wants persistent memory across OpenClaw sessions, mentions MEMORY.md, daily notes, cron inbox, heartbeat routines, agent identity, or 'my agent forgot everything.' Also trigger when setting up a new agent workspace, configuring memory extraction crons, or any time the user asks how to make their agent remember things between runs.
As a process F 46/100 · Will not run — References files that are not bundled: scripts/heartbeat-check.*
The same skill appears in 1 more place: ClawHub
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 skill asks for more than the task needs: broad tool access, credential environment variables, binaries. Every extra permission widens the damage from a mistake or a compromise.
Narrow allowed-tools and the variable list to the minimum; replace binaries with readable sources or scripts.
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.
- The text references files that are not there: add them or drop the references.
- 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 · 8
-
high Dangerous commands
cmd-persistencescripts/setup-cron.ps1:48Persistence mechanism (cron / launchd / scheduled task / autorun registry)Register-ScheduledTask -TaskName $NightlyTask -Action $NightlyAction -Trigger $NightlyTrigger -Settings $NightlySettings -Description "OpenClaw Memory System: Nightly memory extraction from daily note
Medium and low: 7
-
medium Broad scope
meta-agent-memory-dumpdemo/HEARTBEAT.mdAgent memory / workspace files bundled with the skill (8) — likely a workspace dump with personal data or tokensdemo/HEARTBEAT.md, demo/memory/2026-05-23.md, demo/memory/cron-inbox.md, demo/memory/platform-posts.md, demo/memory/strategy-notes.md
-
medium Dangerous commands
cmd-persistencescripts/setup-cron.ps1:56Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)Register-ScheduledTask -TaskName $ReminderTask -Action $ReminderAction -Trigger $ReminderTrigger -Settings $ReminderSettings -Description "OpenClaw Memory System: Daily notes reminder" | Out-Null
code literal -
medium Dangerous commands
cmd-persistencescripts/setup-cron.ps1:64Persistence mechanism (cron / launchd / scheduled task / autorun registry) (string literal in code, not executed)Register-ScheduledTask -TaskName $HeartbeatTask -Action $HeartbeatAction -Trigger $HeartbeatTrigger -Settings $HeartbeatSettings -Description "OpenClaw Memory System: Periodic heartbeat check and cron
code literal -
low Dangerous commands
cmd-execpolicy-bypassscripts/setup-cron.ps1:45Runs PowerShell with execution policy bypassed (detector / deny-list definition; string literal in code, not executed)$NightlyAction = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-ExecutionPolicy Bypass -File `"$SkillRoot\scripts\memo…ps1`" -WorkspacePath `"$Workspace`"" -WorkingDirectory $
detectorcode literal -
low Dangerous commands
cmd-execpolicy-bypassscripts/setup-cron.ps1:61Runs PowerShell with execution policy bypassed (detector / deny-list definition; string literal in code, not executed)$HeartbeatAction = New-ScheduledTaskAction -Execute "powershell.exe" -Argument "-ExecutionPolicy Bypass -File `"$SkillRoot\scripts\hear…ps1`" -WorkspacePath `"$Workspace`"" -WorkingDirector
detectorcode literal -
low Dangerous commands
cmd-cron-mentionscripts/setup-cron.sh:26Mentions editing / listing crontabcrontab -l > "$TEMP_CRON" 2> /dev/null || true
-
low Dangerous commands
cmd-cron-mentionscripts/setup-cron.sh:63Mentions editing / listing crontab (string literal in code, not executed)echo "View with: crontab -l"
code literal
Files scanned: 27. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- warning
missing-refreference to a missing file: scripts/heartbeat-check.*
Process rating: all ten parameters 46/100
- 0Tools and files. 1 referenced file(s) missing: scripts/heartbeat-check.*
- 0Result and completion. Does not say what the result is
- 0Inputs and preconditions. Does not say what the process needs to start
- 40Consistency. Frontmatter name (openclaw-memory-system) differs from the folder (agent-notebook)
- 70When it triggers. States when to use, but not when not to
- 85Steps. 81 steps, 1 vague phrases
- 100Failures and branches. 1 branches, has a failure section
- 100Execution cost. Instruction body is 1601 tokens
- 100Running it twice. Mutating operations check current state
- 100Progress reporting. Reports progress
- medium Safety rules and hard prohibitions inside a skill: they belong in the system prompt, here they protect nothing
- low 14 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
- +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
- +1No license
- +2Single-language instructions
- +3Description length 354: enough signal without eating the budget
- +4Structure: 21 headings
- +3Step-by-step instructions: 81 items
- +4Has examples (1 code blocks)
- +3All 8 scripts are documented
Quality base 70; lint remarks subtract, signals add up to 100. Result: 81.