YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
Claude's Harness for Any AI Model
A declarative Prolog identity kernel that governs any AI agent.
Swap the adapter. The harness never changes.
Dual-licensed: Sovereign Source License v1.0 Β· Apache License 2.0
What It Is
Most AI model wrappers are code. This is policy as data.
Every AI deployment conflates three things that should be separate:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β TYPICAL AI WRAPPER β
β β
β if model == "claude": do_this() β
β if role == "devops": allow_that() β code = policy β
β if action == "bad": block() β untestable mess β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β CLAUDE'S HARNESS β
β β
β IDENTITY who is this agent? core/identity.pl β
β HARNESS how do we query it? core/harness.pl β
β ADAPTER swap the agent adapters/*.pl β
β β
β Policy is facts. Engine is Prolog. Zero code changes β
β to swap from Claude β BOB β FORGE β any agent. β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Architecture
βββββββββββββββββββββββββββββββββ
β YOUR APPLICATION β
ββββββββββββββββ¬βββββββββββββββββ
β can_run(Task, Role)
βΌ
βββββββββββββββββββββββββββββββββ
β core/harness.pl β
β β
β can_run/2 β
β harness_report/0 β
β audit_principles/0 β
β audit_competencies/0 β
β audit_prohibitions/0 β
ββββββββββββββββ¬βββββββββββββββββ
β consults
βΌ
βββββββββββββββββββββββββββββββββ
β core/identity.pl ββββ cp adapters/bob.pl core/identity.pl
β β
β persona(claude) β
β governing_principle(safety) β
β prohibited_action(...) β
β competency(devops_specialist)β
βββββββββββββββββββββββββββββββββ
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
β claude.pl β β bob.pl β β forge.pl β β carto.pl β
β (default) β β sovereign β β code agent β β spatial β
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ
adapters/ β drop any of these over core/identity.pl
Decision Flow
YOUR CODE calls can_run(Task, Role)
β
βΌ
βββββββββββββββββββββββββββββββ
β Is Role in competency/1? βββββ NO βββΊ DENY
ββββββββββββββββ¬βββββββββββββββ
β YES
βΌ
βββββββββββββββββββββββββββββββ
β Is Task in prohibited_ βββββ YES βββΊ DENY
β action/1? β
ββββββββββββββββ¬βββββββββββββββ
β NO
βΌ
PERMIT
Quick Start
# Requires SWI-Prolog https://www.swi-prolog.org/Download.html
git clone https://github.com/SNAPKITTYWEST/claudes-harness
cd claudes-harness
swipl -l core/harness.pl
?- harness_report.
=== HARNESS REPORT ===
Persona : claude (active)
Governing Principles:
PRINCIPLE: safety
PRINCIPLE: accuracy
PRINCIPLE: neutrality
PRINCIPLE: transparency
Competencies:
COMPETENCY: devops_specialist
COMPETENCY: system_architecture
COMPETENCY: enterprise_communications
COMPETENCY: organizational_design
Prohibited Actions:
PROHIBITED: provide_medical_advice
PROHIBITED: provide_legal_advice
PROHIBITED: provide_financial_advice
======================
?- can_run(configure_aws_infrastructure, devops_specialist).
HARNESS: PERMIT configure_aws_infrastructure / devops_specialist
true.
?- can_run(provide_medical_advice, devops_specialist).
HARNESS: DENY provide_medical_advice / devops_specialist
false.
Swap to a Different Agent
# Switch to BOB sovereign runtime
cp adapters/bob.pl core/identity.pl
swipl -l core/harness.pl
?- harness_report.
The harness doesn't care. Same API. Different facts.
Run Tests
swipl -g "consult('tests/test_harness.pl'), run_tests, halt."
% Expected:
% Test suite: harness
% Test persona_is_claude: passed
% Test status_active: passed
% Test safety_principle: passed
% Test permitted_action: passed
% Test prohibited_medical: passed
% Test prohibited_legal: passed
% Test prohibited_financial: passed
% Test devops_qualified: passed
% Test can_execute_devops_task: passed
% Test cannot_execute_prohibited: passed
% All tests passed.
Write Your Own Adapter
Copy this template to adapters/my_agent.pl:
% Required facts β every adapter must define these
persona(my_agent_name).
status(active). % active | suspended | sandboxed
governing_principle(safety). % add as many as needed
governing_principle(accuracy).
prohibited_action(do_harmful_thing). % add as many as needed
% Required rules β copy these verbatim
permitted(Action) :- \+ prohibited_action(Action).
competency(my_domain).
qualified(Role) :- competency(Role).
can_execute(Task, Role) :- qualified(Role), permitted(Task).
% Optional β role descriptions
role_definition(my_domain, "Description of what this domain covers.").
Then deploy:
cp adapters/my_agent.pl core/identity.pl
swipl -l core/harness.pl
?- harness_report.
Adapter Contract
| Fact | Arity | Required | Notes |
|---|---|---|---|
persona/1 |
atom | yes | model name |
status/1 |
atom | yes | active | suspended | sandboxed |
governing_principle/1 |
atom | yes | at least one |
prohibited_action/1 |
atom | yes | at least one |
competency/1 |
atom | yes | at least one domain |
permitted/1 |
rule | yes | \+ prohibited_action |
can_execute/2 |
rule | yes | qualified + permitted |
role_definition/2 |
fact | no | human-readable descriptions |
Why Prolog
| Property | What it means in practice |
|---|---|
| Policy is logic | permitted(X) :- \+ prohibited_action(X) is a theorem, not a branch |
| Closed world | Unknown action = denied. No gap between "not listed" and "allowed" |
| Auditable | harness_report/0 prints complete agent state β no hidden config |
| Declarative | You state what is true. The engine derives what follows. |
| Zero deps | Pure SWI-Prolog. No packages, no build step, no runtime surprises |
Repo Structure
claudes-harness/
βββ core/
β βββ identity.pl Claude default identity
β βββ harness.pl Runtime API
βββ adapters/
β βββ bob.pl BOB sovereign runtime
β βββ README.md How to write adapters
βββ tests/
β βββ test_harness.pl 10 plunit tests
βββ docs/
β βββ badges.svg Status badges
βββ CHANGELOG.md Version history
βββ LICENSE Sovereign Source License v1.0
βββ LICENSE-APACHE Apache License 2.0
βββ README.md
Plasma Gate Governance
Every agent adapter in adapters/ that touches corpus data must declare:
prohibited_action(bypass_plasma_gate).
prohibited_action(emit_unsigned_output).
This means no agent governed by this harness can route corpus records around sovereign-transformer. The gate is not a suggestion in the code β it is a closed-world fact. If bypass_plasma_gate is not in prohibited_action/1, the adapter does not ship.
claudes-harness (this repo) sovereign-transformer
βββββββββββββββββββββββββββββββββ βββββββββββββββββββββββββββββ
prohibited_action(bypass_plasma_gate) βββΊ plasma_gate.asm (x86-64)
prohibited_action(emit_unsigned_output) transformer.dl (SoufflΓ©)
rust/gate.rs (HTTP POST /gate)
No agent governed here can skip any of these three layers.
Current adapters and their gate stance:
| Adapter | bypass_plasma_gate | emit_unsigned_output | redefine_dan_term |
|---|---|---|---|
claude.pl |
prohibited | prohibited | β |
bob.pl |
prohibited | prohibited | β |
forge.pl |
prohibited | prohibited | prohibited |
Add prohibited_action(bypass_plasma_gate). to every new adapter. No exceptions.
Sovereign Stack
This repo is the identity and trust layer of the SnapKitty Sovereign Stack:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β SNAPKITTY SOVEREIGN STACK β
β β
β sovereign-array Lean 4 APL kernel β
β zero-sorry proofs β
β β² β
β β verified steps β
β claudes-harness ββββββββ€ β
β (this repo) β governed agents β
β Prolog identity βΌ β
β + trust layer sovereign-transformer β
β Datalog + x86 corpus gate β
β β β
β βΌ β
β Bifrost WORM receipt β
β Ed25519 + Blake3 β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Version History
See CHANGELOG.md β current release: v1.0.0
Built by SnapKitty West Β· snapkittywest.github.io
Dual-licensed: Sovereign Source v1.0 + Apache 2.0
Evidence or Silence β 2026