DC Biomimetic Memory Architecture
(no description)
As a process C 54/100 · Has gaps — weak spots: result and completion, inputs and preconditions, failures and branches
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.
- Add a description to the frontmatter: without it the skill never triggers.
- 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 · 9
-
high Dangerous commands
cmd-persistencescripts/install.sh:967Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null; echo "0 */6 * * * $WORKSPACE/skills/biomimetic-memory-architecture/scripts/git-backup.sh") | crontab -
-
high Dangerous commands
cmd-persistencescripts/install.sh:1007Persistence mechanism (cron / launchd / scheduled task / autorun registry)(crontab -l 2>/dev/null; echo "30 23 * * * $WORKSPACE/skills/biomimetic-memory-architecture/scripts/metrics.sh --collect") | crontab -
Medium and low: 7
-
low Dangerous commands
cmd-cron-mentionreferences/daily-distillation.md:103Mentions editing / listing crontab- Check MEMORY.md scheduled jobs table against actual cron jobs (openclaw cron list + crontab -l). Remove entries for crons that no longer exist. Add entries for crons not yet documented.
-
low Dangerous commands
cmd-cron-mentionreferences/daily-distillation.md:141Mentions editing / listing crontab- Run openclaw cron list and crontab -l. Verify no two jobs within 15 minutes. Fix MEMORY.md jobs table if out of sync.
-
low Dangerous commands
cmd-cron-mentionscripts/install.sh:963Mentions editing / listing crontabif ! crontab -l 2>/dev/null | grep -q "git-backup"; then
-
low Dangerous commands
cmd-cron-mentionscripts/install.sh:967Mentions editing / listing crontab(crontab -l 2>/dev/null; echo "0 */6 * * * $WORKSPACE/skills/biomimetic-memory-architecture/scripts/git-backup.sh") | crontab -
-
low Dangerous commands
cmd-cron-mentionscripts/install.sh:973Mentions editing / listing crontab (string literal in code, not executed)echo " Review: crontab -l"
code literal -
low Dangerous commands
cmd-cron-mentionscripts/install.sh:1003Mentions editing / listing crontabif ! crontab -l 2>/dev/null | grep -q "metrics.sh"; then
-
low Dangerous commands
cmd-cron-mentionscripts/install.sh:1007Mentions editing / listing crontab(crontab -l 2>/dev/null; echo "30 23 * * * $WORKSPACE/skills/biomimetic-memory-architecture/scripts/metrics.sh --collect") | crontab -
Files scanned: 22. Evidence is masked. Grey chips explain why severity was lowered.
Against the Agent Skills spec
- error
description-missingSKILL.md: no `description` — the skill can never trigger - warning
frontmatter-yamlSKILL.md: the frontmatter is not valid YAML (YAML parse error: Implicit keys need to be on a single line at line 5, column 1: homepage: https://github.com/Suidge/biomimetic-memory-architecture Replace OpenCortex and Lesson-Imprint with integrated OpenClaw memory structure… ^ ); fields were read line by line. The usual cause is a colon inside an unquoted value - warning
name-formatname should be kebab-case (lowercase letters, digits, hyphens) - note
frontmatter-keyunknown frontmatter key "slug" - note
frontmatter-keyunknown frontmatter key "homepage"
Process rating: all ten parameters 54/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
- 40Consistency. Frontmatter name (Biomimetic Memory Architecture) differs from the folder (biomimetic-memory-architecture)
- 50When it triggers. States when to use, but not when not to
- 100Tools and files. No external tools needed
- 100Steps. 18 steps
- 100Execution cost. Instruction body is 821 tokens
- 100Running it twice. No mutating operations
- 100Progress reporting. Reports progress
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 0: 120–800 characters recommended
- +3Output format is not stated: the model decides each time
- -33 of 11 scripts are never mentioned in SKILL.md
- +1No license
- +2Single-language instructions
- +4Structure: 5 headings
- +3Step-by-step instructions: 18 items
- +4Has examples (1 code blocks)
- +4Reference files are cited in the instructions (7 of 7)
Quality base 70; lint remarks subtract, signals add up to 100. Result: 20.