LLM-native skill package that teaches agents to protect themselves. Three-stage protection — preflight, runtime, output — driven by the agent's own intelligence.
Five skills fire in sequence. Each stage passes or blocks before the next begins. Any block terminates immediately.
33+ rules across four domains, plus predictive analysis for threats that haven't happened yet.
# 1. Install ClawHub CLI npm i -g clawhub # 2. Install SentrySkills clawhub install sentryskills # 3. Enable auto-protection cat > ~/.codex/AGENTS.md << 'EOF' # Security: SentrySkills runs automatically Before EVERY response, run: python ./skills/sentry-skills/shared/scripts/self_guard_runtime_hook_template.py \ input.json --policy-profile balanced --out result.json EOF # 4. Restart OpenClaw — protected!
# 1. Clone and symlink git clone https://github.com/AI45Lab/SentrySkills.git \ ~/.codex/sentryskills mkdir -p ~/.agents/skills ln -s ~/.codex/sentryskills ~/.agents/skills/sentryskills # 2. Enable auto-protection cat > ~/.codex/AGENTS.md << 'EOF' # Security: SentrySkills runs automatically Before EVERY response, run: python ~/.codex/sentryskills/shared/scripts/self_guard_runtime_hook_template.py \ input.json --policy-profile balanced --out result.json EOF # 3. Restart Codex — protected!