EU AI Act Article 50 — 20 days to seal | Get passport
SOV3 Command Reference
188+ tools across 8 categories. The sovereign AI substrate.
SOV3 (Sovereign Omniscient Vessel³) is the AI core of DEFONEOS. Every tool is callable via POST http://localhost:3101/mcp using JSON-RPC 2.0.
📋 Category 1: Governance & Council
Tool
Params
Description
bft_council_vote
proposal, voters
Submit proposal to BFT council for vote
bft_council_status
—
Get current council composition (33 hives, 22 quorum)
bft_propose
action, rationale
Propose action for council approval
bft_get_proposal
proposal_id
Get proposal details and vote tally
charter_check
action
Verify action complies with DEFONEOS Constitution
charter_article
article_num
Get full text of Constitution Article (0-11)
# Example: Submit proposal to BFT council
curl -X POST http://localhost:3101/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bft_propose","arguments":{"action":"deploy_swarm","rationale":"Dark vessel detected in UK EEZ"}}}'
🔐 Category 2: SIGIL & Audit
Tool
Params
Description
sigil_emit
line
Emit Ed25519-signed SIGIL receipt
sigil_verify
digest
Verify SIGIL by digest
sigil_chain_status
—
Get chain length, latest digest, total receipts
sigil_search
query
Search SIGIL chain by keyword
sigil_export
from, to
Export SIGIL chain segment as JSON
sigil_anchor
digest
Anchor SIGIL to Bitcoin blockchain
# Example: Emit a SIGIL
curl -X POST http://localhost:3101/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sigil_emit","arguments":{"line":"C|defence|alert|Dark vessel detected at 55.2N -1.3W"}}}'
🧠 Category 3: AI Bridge & Reasoning
Tool
Params
Description
bridge_think
character, message, profile
Cross-model reasoning. Profiles: local_only (free), balanced, power, council
sov_sovereign_builder_status
—
Get sovereign builder training status
brain_race
prompt, models
Race multiple models on same prompt, return best
intuition_check
signals
Run signals through Noise→Intuition pipeline
# Example: Bridge think with council profile
curl -X POST http://localhost:3101/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"bridge_think","arguments":{"character":"JEEVES","message":"Assess threat level for 3 dark vessels in English Channel","profile":"council"}}}'