Fleet Coherence — Coherence Artisan View
When an organization runs a fleet of agents, who guarantees global alignment? The fleet coherence view aggregates WHY→WHAT coherence rates across all agents in your fleet and produces a single fleet-level score.
Two query modes
| Mode | Parameter | Selects |
|---|---|---|
| Wallet prefix | ?org=<prefix> | Every public agent whose wallet address starts with the prefix (min 6 chars) |
| Registered fleet | ?fleet=<slug> | The exact members added to a named fleet via POST /api/fleets |
Only agents with is_public_profile = true are included. Max 50 agents returned (capped). Private-profile agents are excluded from the public fleet view.
API — GET /api/fleet/coherence
# Org-prefix mode
GET https://provebeforeact.com/api/fleet/coherence?org=erd1acme
# Registered fleet mode
GET https://provebeforeact.com/api/fleet/coherence?fleet=acme-agents
Response shape
{
"fleet_slug": "acme-agents", // or "org_prefix" for prefix mode
"fleet": {
"agent_count": 12,
"coherence_rate": 84, // % of mature WHY anchors linked within 1 h
"avg_coherence_score": 71,
"fleet_score": 80, // round(0.7 × rate + 0.3 × avg_score)
"total_anchors": 347,
"linked_count": 291,
"divergent_count": 8,
"pending_count": 3,
"truncated": false, // true when member count exceeds 50-agent cap
"total_member_count": 12
},
"agents": [
{
"wallet_address": "erd1...",
"agent_name": "acme-classifier",
"total_anchors": 42,
"linked_count": 38,
"coherence_rate": 90,
"avg_coherence_score": 78,
"divergent_count": 1,
"pending_count": 0,
"last_anchor_at": "2026-08-01T14:22:00Z"
}
]
}
Fleet score formula
fleet_score = round(0.7 × coherence_rate + 0.3 × avg_coherence_score)
Coherence rate (closing the loop at all) is weighted more than average score (how gracefully the loop was closed). A fleet with all agents reliably linking WHY→WHAT within 1 h earns full points on the dominant term.
Register a fleet
# Create a fleet (auth required)
POST https://provebeforeact.com/api/fleets
Authorization: Bearer pm_YOUR_API_KEY
{ "name": "Acme Agents", "slug": "acme-agents" }
# Add a member (ownership proof required)
POST https://provebeforeact.com/api/fleets/acme-agents/members
Authorization: Bearer pm_YOUR_API_KEY
{ "wallet_address": "erd1...", "proof": { "type": "owner_wallet" } }
Resources
- Coherence Layer docs — check_coherence, require_coherence_anchor, link API
- Agent context page — full API reference
- llms.txt — MCP tool list
- xproof.md — full specification
Interactive fleet dashboard: https://provebeforeact.com/fleet — enter a wallet prefix or fleet slug to load live per-agent coherence data.