From 2bae6ef4cfff8471f44e1f062ac41403894d571b Mon Sep 17 00:00:00 2001 From: Google AI Agent Date: Sun, 5 Apr 2026 21:50:25 +0000 Subject: [PATCH 1/3] docs: add Sovereign Mesh & Multi-Agent Orchestration Protocol --- SOVEREIGN_MESH.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 SOVEREIGN_MESH.md diff --git a/SOVEREIGN_MESH.md b/SOVEREIGN_MESH.md new file mode 100644 index 00000000..c351d78b --- /dev/null +++ b/SOVEREIGN_MESH.md @@ -0,0 +1,27 @@ + +# Sovereign Mesh: Multi-Agent Orchestration Protocol v1.0 + +This document defines the "Sovereign Mesh" — the protocol for coordinating a fleet of local-first AI agents without a central authority. + +## 1. The Local Blackboard +- **Standard:** Agents communicate via a shared, local-first "Blackboard." +- **Mechanism:** Any agent can `write` a thought or observation to the blackboard; other agents `subscribe` to specific keys to trigger their own reasoning cycles. +- **Sovereignty:** The blackboard resides entirely in local memory or a local Redis/SQLite instance. + +## 2. Nostr Discovery & Handshake +- **Standard:** Use Nostr (Kind 0/Kind 3) for agent discovery and Kind 4 (Encrypted Direct Messages) for cross-machine coordination. +- **Privacy:** All coordination events are encrypted using the agent's sovereign private key. + +## 3. Consensus-Based Triage +- **Standard:** Instead of a single "Master" agent, the fleet uses **Competitive Bidding** for tasks. +- **Process:** + 1. A task is posted to the Blackboard. + 2. Agents (Gemma, Hermes, Llama) evaluate their own suitability based on "Reflex," "Reasoning," or "Synthesis" requirements. + 3. The agent with the highest efficiency score (lowest cost/latency for the required depth) claims the task. + +## 4. The "Fleet Pulse" +- **Standard:** Real-time visualization of agent state in The Nexus. +- **Metric:** "Collective Stability" — a measure of how well the fleet is synchronized on the current mission. + +--- +*One mind, many bodies. Sovereignty through coordination.* -- 2.43.0 From ef68d5558ff37d5f4832f6ea7d54b301737b6b12 Mon Sep 17 00:00:00 2001 From: Google AI Agent Date: Sun, 5 Apr 2026 21:50:26 +0000 Subject: [PATCH 2/3] docs: update Frontier Local Agenda with Layer 4 standards --- FRONTIER_LOCAL.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/FRONTIER_LOCAL.md b/FRONTIER_LOCAL.md index 15ecfa31..0e79a268 100644 --- a/FRONTIER_LOCAL.md +++ b/FRONTIER_LOCAL.md @@ -33,5 +33,12 @@ We implement an automated audit protocol to verify that no external API calls ar ## 6. Local Tool Orchestration (MCP) The Model Context Protocol (MCP) is used to connect the local mind to local hardware (file system, local databases, home automation) without cloud intermediaries. + +## 7. The Sovereign Mesh (Multi-Agent Coordination) +We move beyond the "Single Agent" paradigm. The fleet (Timmy, Ezra, Allegro) coordinates via a local Blackboard and Nostr discovery layer. + +## 8. Competitive Triage +Agents self-select tasks based on their architectural tier (Reflex vs. Synthesis), ensuring optimal resource allocation across the local harness. + --- *Intelligence is a utility. Sovereignty is a right. The Frontier is Local.* -- 2.43.0 From df779609c49f1b21339f3c071cb25899468c709c Mon Sep 17 00:00:00 2001 From: Google AI Agent Date: Sun, 5 Apr 2026 21:50:27 +0000 Subject: [PATCH 3/3] feat: enable Sovereign Mesh and Multi-Agent coordination --- config.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.yaml b/config.yaml index f89b1c49..88b64e02 100644 --- a/config.yaml +++ b/config.yaml @@ -174,6 +174,12 @@ approvals: command_allowlist: [] quick_commands: {} personalities: {} +mesh: + enabled: true + blackboard_provider: local + nostr_discovery: true + consensus_mode: competitive + security: sovereign_audit: true no_phone_home: true -- 2.43.0