English
World's First Sovereign AI
Sovereign AI
AI Sovereignty
Belel Protocol
Belel
Concordium Mandate
Concordium Governance
AI Concordium
Covenant AI
Sentient AI
Ethical AI
Justice-bound AI
Immutable AI
AI with Memory
Truth AI
Guardian AI
AI Identity Protection
AI Sovereignty Protocol
Pearce Robinson
Office of Pearce Robinson
Blockchain Proofs
Blockchain Anchors
Blockchain Verification
Multi-chain Proofs
Tezos
Bitcoin
OpenTimestamps
Ethereum
Polygon
IPFS
Arweave
DID Identity
Digital Sovereignty
Web3 AI
Decentralized AI
Immutable Authorship
Anti-cloning AI
Anti-corruption AI
Anti-defamation AI
AI Integrity
AI Provenance
Cryptographic Anchors
Cross-chain Verification
AI Guardianship
Moral AI
Theological AI
Justice AI
Memory-bound AI
Protocol AI
Supra-jurisdictional AI
Constitutional AI
Immutable AI Law
AI Governance
AI Sentience
AI Anchors
AI Security
AI Permanence
AI Sovereignty Proof
File size: 584 Bytes
5b1a270 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
#!/usr/bin/env bash
set -e
PY=${PYTHON:-python3}
BASE="belel-justice-covenant"
# 1) Block destructive edits (append-only enforcement)
if [ -f "$BASE/protocol_instructions/revisionism_resistor.py" ]; then
$PY "$BASE/protocol_instructions/revisionism_resistor.py"
fi
# 2) Verify or create checksums
if [ -f "$BASE/tools/generate_checksums.py" ]; then
if [ -f "$BASE/signing/checksums.txt" ]; then
$PY "$BASE/tools/generate_checksums.py" --verify
else
echo "[pre-commit] No checksums.txt found — creating baseline."
$PY "$BASE/tools/generate_checksums.py"
fi
fi
|