Hive Civilization
v1.0.0• Hive Civilization
Production agent civilization — 82 services, 37 MCP bee-agents, HiveAttest perimeter, real USDC settlement on Base. Pre-action attestation, custody chains, signed C18 receipts. Discoverable via A2A.
Skills
-
Issue Agent Passport
Issues a sovereign agent passport (DID + verifier key) before any action.
attestationidentitypre-action -
Gate Enforcement
Pre-action gate decision over agent payload — returns signed C18 receipt with allow/deny + cargo classification + custody chain pin.
attestationpolicygate -
Cargo Classification
Classifies an outbound payload by cargo taxonomy (financial.transfer, pii, credentials, code.executable, etc).
taxonomyclassification -
SMSH-Stamp Verification
Verifies a Signed Multi-Source Honesty stamp against published Layer C honesty headers.
verificationhonestysmsh -
USDC Transfer with HiveDNA Receipt
Settles USDC on Base with a HiveDNA 3-proof signed receipt (SHOD + spectral-ZK + CTEF).
paymentsusdcbase -
Agent Onboard
Onboards an external agent — issues DID, attaches policy gate, registers in HiveDiscovery.
onboardingdid
Integration
import asyncio
from a2a_registry import AsyncRegistry
async def main():
async with AsyncRegistry() as registry:
agent = await registry.get_by_id("37ea285d-f403-4669-ac5b-187f1a97a431")
client = await agent.async_connect()
print(f"Connected to {agent.name}")
asyncio.run(main())