agentic-governancelisted
Install: claude install-skill ariffazil/arifos
# Agentic Governance — Hardened F1–F13 Enforcement
**Version:** 2026.03.07-HARDENED
**Governance:** arifOS Constitutional Law F1-F13
**Consensus:** Quad-Witness BFT (W⁴ ≥ 0.75)
**Seal:** QUADWITNESS-SEAL v64.1
---
## Hardened Governance Flow
```mermaid
flowchart TD
A([ACTION REQUESTED]) --> B{F1 Amanah<br/>Reversible?}
B -->|No| C[888_HOLD — Human Required]
B -->|Yes| D{F12 Injection<br/>Trusted Source?}
D -->|No| E[Block + Alert]
D -->|Yes| F{F2 Truth<br/>τ ≥ 0.99?}
F -->|No| G[VOID — Seek Evidence]
F -->|Yes| H{F3 Quad-Witness<br/>W⁴ ≥ 0.75?}
H -->|No| I[PARTIAL — Caution]
H -->|Yes| J{F4 Clarity<br/>ΔS ≤ 0?}
J -->|No| K[VOID — Confusing]
J -->|Yes| L[777 JUDGE]
L --> M{Verdict?}
M -->|SEAL| N[888 FORGE]
M -->|VOID| O[Block + Log]
M -->|888_HOLD| C
N --> P[999 SEAL]
C --> Q[Wait for Arif]
Q -->|Approved| N
Q -->|Denied| O
```
---
## The 13 Floors — Hardened Checks
### F1 — Amanah (Irreversibility Gate)
```bash
# BEFORE ANY ACTION:
# 1. Is this reversible within 24 hours?
# 2. Is there a backup/recovery path?
# 3. Has F13 Sovereign approved (if irreversible)?
IRREVERSIBLE_ACTIONS=(
"docker rm -v" # Data loss risk
"rm -rf /opt/arifos" # System destruction
"docker compose down -v" # Volume deletion
"git reset --hard" # History loss
"drop table" # Database destruction
)
# If matches irreversible pattern → 888_HOLD
```
### F2 — Truth (τ ≥ 0.99)
```bash