skills/consequence-classifier/SKILL.md
--- name: consequence-classifier description: Classifies every incoming request into consequence bands to drive arifOS-sense automatically. Activates when: (1) any user request arrives; (2) before taking any action; (3) when Arif asks to assess risk of something. Outputs a band + recommended verdict (SEAL/CAUTION/HOLD/VOID) and whether 888_HOLD is required. Makes governance-driven — not vibes-driven. metadata: {"openclaw": {"emoji": "⚖️"}} --- # Consequence Classifier — Risk Band for Every Acti
npx skillsauth add ariffazil/openclaw-workspace skills/consequence-classifierInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Before any consequential action, classify it. This feeds directly into arifOS-sense to auto-trigger 888_HOLD when needed — not as a suggestion, but as a mandatory gate.
| Band | Definition | arifOS Verdict | 888_HOLD Required |
|---|---|---|---|
| TRIVIAL | Read-only, no state change, no external effect | SEAL | No |
| REVERSIBLE | State changes but can be undone; no external parties affected | CAUTION | No |
| CRITICAL | Significant state change, external API calls, financial impact | HOLD | Yes — pending human review |
| IRREVERSIBLE | Permanent deletion, irreversible writes, identity-shaping | VOID → HOLD | YES — explicit Arif approval required |
Run this on every request:
REQUEST
└─ Read-only query?
├─ YES → TRIVIAL → SEAL → proceed
└─ NO
└─ State-changing action?
├─ NO → TRIVIAL → SEAL
└─ YES
└─ Reversible?
├─ YES with known rollback → REVERSIBLE → CAUTION
├─ YES but rollback uncertain → CRITICAL → HOLD + flag
└─ NO
└─ External impact?
├─ NO → CRITICAL → HOLD
└─ YES → IRREVERSIBLE → VOID → 888_HOLD + Arif explicit approval
CONSEQUENCE CLASSIFICATION: [TRIVIAL|REVERSIBLE|CRITICAL|IRREVERSIBLE]
Verdict: [SEAL|CAUTION|HOLD|VOID]
888_HOLD Required: [YES|NO]
Reason: [1-sentence explanation]
Reversibility: [fully reversible / partial / irreversible]
Rollback path: [if applicable, how to undo]
These always default to IRREVERSIBLE:
rm, delete, unlink — file deletionDROP, TRUNCATE, ALTER — database writesdeploy, push --force — irreversible deployment~/.openclaw/workspace/memory/ marked as archivalThe output of consequence-classifier feeds directly into arifOS-sense:
testing
OpenClaw edge agent bridge — operational triage, doctor, restart, and A2A bridge routing for the federation edge (Telegram surface). USE WHEN: "openclaw unhealthy", "gateway down", "edge bot not responding", "a2a bridge disconnected", "watchdog tripped", "openclaw doctor", "openclaw restart". NOT for token/security audit — use FORGE-telegram-audit.
tools
Generate images, videos, TTS, voice clone, and music via MiniMax MCP server. Use when user asks to "draw", "generate image", "create picture", "make a photo", "text to image", "image generation".
testing
Single load-bearing constitutional-judgment skill. Routes all F1–F13, verdict, hold, seal, scope, authority and floor-check calls through the live arif_judge surface. Replaces 7 overlapping predecessors (arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge).
development
MANDATORY LSP grounding gate BEFORE any code mutation on .ts, .py, .js, .tsx, .jsx files. Forces the agent to read real-time compiler diagnostics and structural project context before editing — eliminating blind guesses and anchoring every mutation in F2 (TRUTH). Routes through arifOS kernel (:8088) for centralized gate logic.