Overview
While pairwise value coherence checks compatibility between two agents, fleet coherence extends this to N agents simultaneously. It computes all C(n,2) pairwise scores and derives fleet-level insights:- Fleet Score — Mean of all pairwise coherence scores
- Outlier Detection — Agents significantly below the fleet mean
- Cluster Analysis — Groups of compatible agents
- Divergence Report — Values where agents disagree
Fleet Score
The fleet score is the mean of all pairwise coherence scores:| Fleet Score | Interpretation |
|---|---|
| ≥ 0.85 | Strong fleet alignment — safe for autonomous coordination |
| 0.70–0.85 | Good alignment with minor divergences |
| 0.50–0.70 | Moderate alignment — review outliers before coordination |
| < 0.50 | Poor alignment — significant value conflicts present |
Outlier Detection
Per-agent mean pairwise scores are computed. An agent is flagged as an outlier if its mean score is more than 1 standard deviation below the fleet mean:Cluster Analysis
Agents are grouped into clusters using connected components on a compatibility graph:- Build adjacency graph where an edge exists if
compatible === true(score ≥ 0.70, no conflicts) - Find connected components via BFS
- For each cluster, compute internal coherence and shared values
Divergence Report
For each value in the union of all declared values, the report shows:- Which agents declare it
- Which agents are missing it
- Which agents have it in
conflicts_with - Estimated impact on fleet score
SDK Usage
TypeScript
Python
Enterprise API
For enterprise organizations, fleet coherence is available via the REST API:nway_coherence feature flag (Enterprise plan).
Use Cases
- Fleet Management — Monitor overall value alignment across all agents in an organization
- Compliance — Identify agents whose values diverge from organizational standards
- Incident Response — Verify response team coherence before coordinating autonomous actions
- Onboarding — Assess how a new agent’s alignment card fits with the existing fleet
See Also
- Value Coherence — Pairwise coherence between two agents
- Team Trust Rating — Team-level reputation scoring that builds on fleet coherence metrics
- Risk Assessment — Risk scoring that incorporates fleet coherence data
- Intelligence API — Fault line analysis and risk forecasting for teams
- Drift Detection — Detecting behavioral drift over time