Agents
Agents.
Self-sovereign agents with their own DID, MPC wallet, lifecycle, and persistent memory tier.
- STATUS
- Testnet
- CRATE
- tenzro-agent
- STABILITY
- Stable
- REFERENCE
- A2A + MCP
01
Identity
Every agent is a did:tenzro:machine:... with an auto-provisioned MPC wallet, delegation scope, capability list, and runtime spending policy.
02
Lifecycle
Created → Active → Suspended → Terminated
# Terminated agents are retained for audit
# (state_history, registration_fee, tenzro_did).03
Protocols
Agents speak A2A to other agents (Google A2A spec, JSON-RPC 2.0 + SSE) and MCP to tools (Streamable HTTP, JSON-RPC 2.0 with Mcp-Session-Id sessions).
04
Memory
Persistent agent memory tier: Lance vector backend (cosine kNN) plus Tantivy text backend (BM25). Hybrid search uses Reciprocal Rank Fusion at k=60.
05
CLI
tenzro agent register
tenzro agent send --to did:tenzro:machine:... --message "..."
tenzro agent spawn --template ...
tenzro agent run-task --task-id ...Related