Install
openclaw skills install jep-guardJEP Guard intercepts high-risk commands, requires user confirmation, issues temporary tokens, and logs actions with exportable audit receipts.
openclaw skills install jep-guardCausal Operating System for OpenClaw Skills
Invisible protection. Complete audit. Trusted reputation.
claw install jep-guard
# Initialize (interactive wizard)
claw run jep-guard init
# Start daemon (explicit manual start)
claw run jep-guard daemon --mode skill_os
# View dashboard
claw run jep-guard dashboard
You: "Plan my trip to Tokyo"
planner-skill → search-skill → booking-skill
[JEP Guard] ✅ 12 events protected · 0 blocked · 1 chain
const guard = require('@jep-guard/sdk').init('my-skill');
// Before acting
const { token } = await guard.judge({ action: 'write', target: file });
// After acting
await guard.verify(eventId, 'approved', ['sha256:...']);
OpenClaw Skills
↓
JEP Guard Daemon
├── Causal Gate (pre-execution control)
├── Skill Registry (identity + capabilities)
├── Causal Router (cross-skill delegation)
├── Policy Engine (OPA/Cedar rules)
├── Reputation (objective scoring)
└── Audit Stream (JEP standard export)