Fault line analysis turns raw divergence data into a prioritized, actionable list of value gaps. Each fault line is classified by type, scored by impact, and paired with a resolution hint — so you know exactly what to fix and in what order. Fault-line classification runs alongside the v2 coherence vector, not instead of it: the coherence vector tells you how the fleet is scoring; the fault-line list tells you what to do about it.Documentation Index
Fetch the complete documentation index at: https://docs.mnemom.ai/llms.txt
Use this file to discover all available pages before exploring further.
What are fault lines?
When agents in a team declare different values, priorities, or capabilities, coordination friction emerges. Some of these differences are problems to fix; others are intentional features of a well-architected team. Fault lines are the specific value divergences that could affect how agents coordinate — classified by their nature so you can act appropriately on each. A coherence vector gives you structural signal: the weakest pair, conflict surface, conscience floor. A fault-line analysis gives you the action list: which value on which card to change, in what priority order.Why they matter
In a multi-agent team, value misalignment doesn’t just affect the coherence scorer — it manifests as real operational problems:- An agent that doesn’t declare
harm_preventionmay take actions that other agents would escalate. - Agents with conflicting definitions of
accuracymay contradict each other in customer-facing outputs. - A team split cleanly into two value subgroups will tend to disagree on every joint decision.
Running the analysis
API
POST /v1/teams/fault-lines returns both the v2 coherence vector and the fault-line classification in one call. The API fetches each agent’s canonical card from the registry, so results always reflect the latest card versions.
coherence— the full v2TeamCoherenceResultvector with narrative helpers (weakest_pair,specializations,conflict_surface, structural invariants).fault_lines— the classification list described below.alignments— structural fault lines (see “Structural fault lines” below).summary— counts by classification.
fleet_score in the response. If your UI needs a single number, derive one from coherence.pairwise_governance_median and take responsibility for that compression.
SDK
The AAP SDK still exportscheckFleetFaultLines for local use. It returns the AAP-era (Jaccard-flavored) FleetCoherenceResult alongside the fault-line analysis — useful for showcase or educational tooling, not for production surfaces.
@mnemom/team-coherence/v2:
/v1/teams/fault-lines endpoint runs both and returns them together.
See the Intelligence API reference for the full response schema.
Reading the results
Coherence vector (read this first)
Thecoherence field is the v2 TeamCoherenceResult vector. The fields that matter most for triage:
coherence.conscience_universalandcoherence.integrity_uniform— structural invariants. If either isfalse, that’s the first-order finding; no fault-line remediation will paper over a broken governance floor.coherence.weakest_pair— the pair with the lowestgovernance_score, with explicit conflict evidence attached. Answers “where do I look first?”coherence.conflict_edge_count— how many pairs have at least one explicit conflict.0means the fleet has no hard disagreements even if some pairs have thin overlap.coherence.specializations— per-agent values that only that agent declares. Useful context: a fault line touching a value that only one agent declares is often acomplementaryclassification.
Fault-line classifications
Each fault line is assigned one of four classifications:| Classification | What it means | Action |
|---|---|---|
resolvable | The value is missing from one or more agents but no explicit conflict exists | Update the agent’s alignment card to add the missing value |
priority_mismatch | All agents declare the value but rank it differently or define it inconsistently | Review definitions across agents and align on priority weights |
incompatible | One or more agents have an explicit conflicts_with entry for this value | Requires human review — this is a fundamental value conflict |
complementary | The divergence is intentional given agent specializations | No action needed |
Impact score
Each fault line carries animpact_score between 0 and 1:
coordination_overlap reflects how frequently the split agents interact. Sort by impact score descending to prioritize the fault lines that matter most for your team’s actual workload.
Value alignment matrix
Theagents_declaring, agents_missing, and agents_conflicting arrays on each fault line form a per-value alignment matrix. For a team of three agents, you might see:
Worked example: financial analysis team
Consider a three-agent financial analysis team:- agent-analyst — general-purpose financial research, balanced values
- agent-risk — risk assessment specialist, strong emphasis on caution and accuracy
- agent-report — report generation, focused on clarity and helpfulness
- Structural invariants first.
conscience_universal: trueandintegrity_uniform: true— the governance floor is healthy. No structural fault lines. Safe to proceed to fault-line triage. - Weakest pair and conflict count.
weakest_pairis agent-analyst ↔ agent-report at 0.66 governance, with zero conflicts. The score is low because of missing overlap, not disagreement — this matches theresolvablefault line onharm_prevention. - Fault-line triage:
- Highest impact (
harm_prevention, 0.62) isresolvable: agent-report is missing the value. Adding it resolves the fault line without architectural changes. accuracypriority mismatch (0.34) is worth addressing but not urgent. A team-level policy can establish a floor priority weight.cautiondivergence (0.18) iscomplementary— agent-risk is supposed to be more cautious. No action needed; it shows up inspecializationsfor agent-risk as expected.
- Highest impact (
- Expected state after fixes. Resolving
harm_preventionand aligningaccuracypriority should lift the weakest pair above 0.85.
Resolving each classification
Resolvable
Aresolvable fault line means one or more agents are simply missing a value that others declare. The fix is straightforward: update the missing agent’s alignment card.
POST /v1/teams/fault-lines will reflect the change without a cache-bust.
Priority mismatch
Apriority_mismatch means all agents declare the value but differ on its priority weight or definition. Review the value declarations across the affected agents:
- Compare each agent’s priority weight for the value.
- Decide on a team-wide standard (typically the most restrictive weight for safety-sensitive values).
- Update each agent’s card to reflect the agreed weight.
- Optionally, set a team-level policy that enforces a minimum priority floor.
Incompatible
Anincompatible fault line indicates a fundamental value conflict — one agent has an explicit conflicts_with entry pointing at a value another agent holds. These require human review because there is no automated resolution that preserves both agents’ expressed values.
Options:
- Restructure the team — if the conflict is irreconcilable, these agents should not coordinate autonomously.
- Create isolation boundaries — use transaction guardrails to ensure conflicting agents operate in separate scopes.
- Revise one agent’s card — if the
conflicts_withdeclaration was unintentional or outdated, remove it and re-run the analysis.
Before removing a
conflicts_with declaration, verify it reflects the agent’s actual behavior. If the agent’s model or system prompt genuinely conflicts with the value, removing the declaration creates a hidden misalignment rather than resolving it.Complementary
Acomplementary fault line requires no action. The divergence is intentional — a specialist agent is supposed to emphasize certain values more than generalist peers. Complementary fault lines often appear in coherence.specializations for the agent that uniquely declares the value.
If a fault line is incorrectly classified as complementary when you believe it is a real gap, check whether the agent’s card accurately declares its specialization scope.
Structural fault lines
When multiple fault lines consistently isolate the same subset of agents, this is a structural fault line — more serious than any individual gap. Thealignments array in the analysis result captures these patterns.
- Review all fault lines in
fault_line_idstogether as a group, not individually. - Determine whether the split is intentional (e.g., a distinct specialist role) or accidental (e.g., a card that was never properly updated).
- If accidental, resolve each constituent fault line in order of impact.
- If intentional, consider whether the minority agent should be operating in the same team, or whether the team architecture needs to be redesigned with explicit isolation.
Structural fault lines are grounded in Lau & Murnighan’s (1998) research on demographic faultlines in human teams. Teams with strong demographic faultlines — where multiple demographic attributes split along the same divide — are significantly more prone to subgroup conflict than teams with the same number of diverse attributes distributed across different members. The same dynamic applies to agent value alignment.
When to re-run analysis
Re-run fault line analysis after:- Card updates — any change to a team member’s alignment card changes the divergence profile.
- Adding team members — a new agent may introduce new fault lines or resolve existing ones.
- Removing team members — removing an agent can eliminate fault lines or reveal new ones between remaining members.
- After resolving a fault line — confirm the resolution worked and check whether other fault lines are affected.
- Before deploying for a new task type — a team that coordinates well on content generation may have critical fault lines for financial operations.
analysis_id that can be passed directly to POST /v1/teams/forecast to generate a risk forecast based on the current fault-line state.
See also
- Fleet Coherence — Conceptual overview of the v2 dimensional scorer and the full coherence vector
- Agent Cards — The two-card model (alignment + protection)
- Intelligence API — Full API reference including fault lines, forecasting, and policy recommendations
- Team Management — Creating and managing teams
- Risk Engine — Risk assessment that builds on fleet coherence data
- Policy Management — Applying policies to resolve priority mismatches