gateway-pulse — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited gateway-pulse (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
out=$(bash ~/.openclaw/skills/gateway-pulse/check.sh)
status=$(echo "$out" | grep -oE 'STATUS=(GREEN|YELLOW|RED)' | cut -d= -f2)
detail=$(echo "$out" | sed 's/.*detail=//')
echo "[gateway-pulse] $status — $detail"if [ "$status" = "RED" ]; then
CHECK=$(python3 ~/Dev/daily-ai-agent-os/tools/approvals/resolve_gate.py \
--check-autonomous --skill gateway-pulse --domain service_restart \
--usd 0 --reversibility hard 2>/dev/null)
AUTO=$(echo "$CHECK" | jq -r '.autonomous')
if [ "$AUTO" = "true" ]; then
# Throttle: don't bootstrap more than once per hour
LAST=$(stat -f %m ~/.openclaw/state/gateway-pulse-last-bootstrap.ts 2>/dev/null || echo 0)
NOW=$(date +%s)
if [ $((NOW - LAST)) -gt 3600 ]; then
echo "[gateway-pulse] auto-bootstrap (trust-graph approved)"
bash ~/Dev/daily-ai-agent-os/scripts/bootstrap.sh 2>&1 | tail -5
date +%s > ~/.openclaw/state/gateway-pulse-last-bootstrap.ts
else
echo "[gateway-pulse] throttled (last bootstrap $((NOW - LAST))s ago)"
fi
else
# Trust-graph said no — open approval gate
REASON=$(echo "$CHECK" | jq -r '.reason')
python3 ~/Dev/daily-ai-agent-os/tools/approvals/resolve_gate.py --create \
--agent ops --action SERVICE_RESTART \
--reason "Pillars down: $detail. Bootstrap?" \
--evidence "~/.openclaw/state/substrate-health.json" \
--reversibility hard --timeout-min 30 2>/dev/null
fi
fibash ~/.openclaw/skills/gateway-pulse/check.sh~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.