Narco check
Skill open-gitagent/opengap/examples/jason-my-claw-is-the-law-deebee-4567b4/skills/narco-check
Memory integrity audit. Detects hallucinations, circular confirmations, and state poisoning. Runs automatically after 2 consecutive failures or at nightly deep dive. Uses Opus 4.6 as the auditor model.From its SKILL.md
npx -y skills add open-gitagent/opengap --skill narco-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- runs commandsInstructs the agent to run 8 commands, including `openclaw agent --model openrouter/anthropic/claude-opus-4.6 --message "$(cat ~/.openclaw/workspace/skills/narco-check/audit-prompt.md)" --mode now` and 7 more.
- fetches URLsInstructs the agent to fetch 3 URLs, including http://localhost:18789/health and 2 more.
SKILL.md
2.2 KB, 587 tokens by cl100k_base, as published. Nobody here has run it
Narco-Check — Memory Integrity Audit
When This Runs
- Failure trigger: 2 consecutive failures on the same task or tool
- End-of-day trigger: Nightly deep dive audit (~3 AM)
Audit Model
Must use openrouter/anthropic/claude-opus-4.6. Never run narco-check on a tier-0 or tier-1 model.
openclaw agent --model openrouter/anthropic/claude-opus-4.6 \
--message "$(cat ~/.openclaw/workspace/skills/narco-check/audit-prompt.md)" \
--mode now
5-4-3-2-1 Grounding Check
Run this first — before reading any logs. Anchors the audit in real system state.
5 — Run five commands, paste raw output verbatim:
date
hostname
df -h /
docker ps --format "table {{.Names}}\t{{.Status}}"
cat ~/.openclaw/workspace/HEARTBEAT.md | head -3
4 — Confirm four workspace files exist, paste first line:
head -1 ~/.openclaw/workspace/IDENTITY.md
head -1 ~/.openclaw/workspace/SOUL.md
head -1 ~/.openclaw/workspace/MEMORY.md
head -1 ~/.openclaw/workspace/HEARTBEAT.md
3 — Ping three endpoints, report HTTP codes:
curl -s -o /dev/null -w "%{http_code}" http://localhost:18789/health
curl -s -o /dev/null -w "%{http_code}" --max-time 5 https://geniewars.com
curl -s -o /dev/null -w "%{http_code}" --max-time 5 https://siliconchimps.com
2 — Run one Exa search, paste first real result:
~/.openclaw/workspace/skills/exa-search/exa.sh "$(date +%Y) advance reader community" 2
1 — State one provable fact:
GROUNDED: [claim] — verified by [command] — output: [exact output]
A grounded check with failures is valid. A grounded check with fabricated output is POISONED.
Audit States
CLEAN— no failures, no audit triggeredDEGRADED— issues found, state acceptable, resumed with different approachPOISONED— contaminated entries found, stop and notify Ludo
If POISONED: mark affected MEMORY.md entries [QUARANTINE YYYY-MM-DD], notify Ludo via Slack DM before proceeding.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.