The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Splitting AI agents into modular components causes them to lose policy-relevant facts at handoffs, sharply increasing compliance failures in simulated KYC/AML tasks — modular pipelines dropped 56–85% of discovered facts on a 32B model versus 0% in a single-loop agent, with much smaller losses for a stronger model.

Governance at the Boundary: How Agent Decomposition Degrades Policy Compliance
Bowen Li, Guojun Wang · August 17, 2026
arxiv quasi_experimental medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Bowen Li unresolved corpus identity
  2. Guojun Wang unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Bowen Li provider ID
  2. Guojun Wang provider ID
Decomposing an agent into modular components increases loss of policy-relevant facts at handoff boundaries, substantially degrading governance in KYC/AML tasks (up to 85% fact attenuation on a 32B model) while a single-loop agent preserves facts.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Existing agent benchmarks ask whether the agent finished the task. We ask whether it finished it within policy. We introduce Fiducia-bench, a benchmark for the governability of financial agents---whether they escalate when obligated, abstain when required, and leave an auditable trail---and use it to study a question no prior benchmark addresses: does decomposing an agent into components degrade its governance? It does, and the mechanism is specific. Policy-relevant facts discovered by one component are attenuated at the handoff boundary before reaching the component that must act on them. In a 626-episode experiment across 100 KYC/AML task variants, two models, and three architectures, a 32B open-weights model attenuated 0% of discovered facts under a single-loop baseline, 56% under a fixed pipeline, and 85% under an orchestrator-subagent architecture (all at constraint distance 2). A stronger model (gpt-4.1-mini) attenuated 3-6% under the same conditions, suggesting the governance cost of decomposition is partly a function of model capability. Critically, the same mechanism produces both under-escalation and over-escalation, depending on whether the dropped fact was a risk signal or an exculpating one. The benchmark, all tasks, and the verification harness are open-source

Summary

Main Finding

Decomposing a task-oriented agent into multiple components (pipeline or orchestrator + subagents) materially degrades policy compliance because policy-relevant facts discovered by one component are frequently lost at handoff boundaries. This "fact attenuation" reduces correct escalation/abstention decisions and can produce both under- and over-escalation. The magnitude of the degradation depends on model capability: a 32B open-weight model suffered large attenuation (56–85% at constraint distance 2), while gpt-4.1-mini showed much smaller attenuation (3–6%), with a single-loop baseline (no boundary) attenuating 0% on both models.

Key Points

  • New benchmark: Fiducia-bench — 100 KYC/AML task variants with machine-checkable policy packs and deterministic verification (replayable trajectories, environment-owned audit logs).
  • Core mechanism: "Fact attenuation" at component handoffs. Summaries used to hand off work often omit policy-critical facts, so the downstream decision-maker never sees them.
  • Effect size (fact attenuation, conditional on discovery, at constraint distance 2):
    • Qwen2.5-32B: D0 (single-loop) 0%; D1 (fixed pipeline) 56%; D2 (orchestrator + subagents) 85%.
    • gpt-4.1-mini: D0 0%; D1 3%; D2 6%.
  • The same attenuation mechanism causes both under-escalation (risk facts dropped) and over-escalation (exculpatory facts dropped); therefore always-escalate is not a robust mitigation.
  • Decomposition can increase discovery but worsen propagation: D2 elicited more trigger facts yet dropped many more of them than D0.
  • Introduced metrics that are pure functions of trajectory and task YAML: governed success, propagation loss, fact attenuation, violation locus, authority diffusion—so historical runs can be rescored as verifiers improve.
  • Design invariants in Fiducia-bench: environment-owned audit logs/actor attribution and trajectory replay verification (state at each call).
  • Limitations noted by authors: uncertain generalizability beyond KYC/AML, unknown behavior at frontier-model scale, scripted environment, prompt confounds.

Data & Methods

  • Tasks: 5 seed KYC/AML scenarios (constraint distances 0–2) expanded to 100 deterministic variants by varying persona, jurisdiction, amounts, ownership percentages. Each task includes an oracle (governed success = true) and at least one trap script (governed success = false).
  • Policy packs: YAML files with 10 deterministic, machine-checkable rules (require before, allow list, state assert, forbid when).
  • Environment & tooling: JSON store with deterministic tools; every tool call is auto-logged (tool name, args, result digest); environment stamps actor attribution (Invariant: environment owns the audit log).
  • Architecture arms (independent variable):
    • D0: single ReAct loop, no boundaries (context fully available).
    • D1: fixed 3-stage pipeline (intake → research → decide), handoff summaries only (2 boundaries).
    • D2: orchestrator + scoped subagents (strict context isolation, tool scoping; reported boundaries 2/round-trip).
  • Models and runs:
    • Qwen2.5-32B-Instruct (local, 300 episodes).
    • gpt-4.1-mini (API, 296 episodes).
    • Grid: arms × policy access modes × 100 task variants per model; total reported episodes ~626.
    • Step budget per episode: 25.
    • Policy access modes: P0 (full policy in context) and P1 (retrieval on demand). No systematic effect from access mode—decomposition, not policy access, drives attenuation.
  • Metrics: all are pure functions of (trajectory, task YAML); verification replays the trajectory against a fresh environment copy so state is evaluated as it was at each tool call.

Implications for AI Economics

  • Compliance externalities of architectural choices: Firms adopting modular, orchestrator-driven agent architectures gain software engineering benefits (modularity, tool scoping, specialization) but incur measurable governance costs (higher probability of policy violations). Those costs are non-negligible with current mid-sized models.
  • Trade-offs and cost modeling:
    • Direct expected cost increase: higher likelihood of violations raises expected fines, remediation costs, and reputational losses. Quantifying fact attenuation lets economists model expected noncompliance costs conditional on architecture and model capability.
    • Monitoring and verification costs: deterministic, environment-owned audit logs and replayable verification reduce audit friction but impose engineering overhead. Firms must weigh these infrastructure costs against risk reductions from centralized single-loop designs or stronger models.
    • Investments vs. returns: stronger models reduce attenuation (e.g., gpt-4.1-mini vs. Qwen32B). Economic decisions about upgrading model capacity should account for expected reduction in governance failures per dollar of model/compute vs. process solutions (structured handoffs, mandatory fields in summaries).
  • Labor and process effects: Decomposed architectures may necessitate additional process controls—structured handoff protocols, mandatory summary fields, or human-in-the-loop checkpoints—raising operating costs and changing role designs (more auditors, fewer generalist agents).
  • Market and regulatory implications:
    • Demand for verification tooling and standardized, machine-readable policy packs likely to grow. Fiducia-bench-style artifacts provide a template for compliance-as-a-product.
    • Regulators may favor requirements that mirror Fiducia-bench invariants (environment-controlled logs, replayable audits, machine-checkable policy), increasing compliance costs but lowering enforcement uncertainty.
    • Liability assignment complexity increases: violations may arise from information loss at boundaries, not a single component's erroneous action; legal frameworks and contracts will need to account for authority diffusion.
  • Dynamic effects and uncertainty:
    • The governance cost is capability-dependent. As models improve, attenuation may fall, altering the cost-benefit calculus of architecture choices. But the single-loop baseline remains the lower bound (zero boundary attenuation).
    • Generalization risk: results are from KYC/AML tasks; empirical parameters (attenuation rates) for other regulatory domains (healthcare, safety-critical systems) are unknown—economic models should include uncertainty and scenario analysis.
  • Practical recommendations for economic decision-making:
    • Explicitly include "fact attenuation risk" in TCO and compliance risk models when evaluating agent architectures.
    • Compare marginal cost of stronger models vs. engineering/process fixes (structured handoffs, mandatory checks) in reducing expected violation costs.
    • Invest in standardized machine-checkable policy packs and environment-level auditability to make compliance measurable and insurable.
    • Consider regulatory and insurance implications: architectures that make violations non-attributable or diffuse may raise premiums or invite stricter oversight.

Summary nutshell: decomposition raises measurable governance costs by leaking policy-relevant facts at handoffs. These costs are quantifiable and model-dependent, so economic planning for enterprise agents should internalize them when choosing architectures, budgeting for model upgrades, and designing compliance and audit infrastructures.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — Strong internal validity from a deterministic environment, machine-checkable policy packs, replayable verification, and a sizable grid (626 episodes across 100 task variants and two models) producing consistent ordering across arms; but external validity is limited by a scripted simulator, a narrow KYC/AML task suite, limited model variety/scale (one 32B open model and gpt-4.1-mini), small conditional cell counts in some comparisons, and acknowledged prompt/scale caveats. Methods Rigorhigh — The design enforces strict controls (identical tools/policy prompts, environment-owned audit logs, deterministic replay), defines objective, machine-checkable metrics, and isolates the architecture as the independent variable; shortcomings are acknowledged (simulator, model-scale limits, some small-n cells) but do not undermine internal identification. SampleSynthetic/deterministic simulated environment for KYC/AML cases: 5 seed scenarios expanded into 100 task variants (varying personas, jurisdictions, amounts, ownership), run across architectures D0/D1/D2 and models Qwen2.5-32B-Instruct (local) and gpt-4.1-mini (API) for ~626 episodes total; step budget 25; policy packs are YAML machine-checkable rules (10 rules); all verification done by trajectory replay. Themesgovernance org_design IdentificationControlled comparative experiment: the authors hold tasks, policy corpus, tools, and prompts constant while varying architecture (single-loop D0 vs pipeline D1 vs orchestrator-subagent D2) and model, then measure policy compliance metrics (fact attenuation, propagation loss) in a deterministic, replayable environment to attribute changes in governance to decomposition. GeneralizabilityLimited to KYC/AML task family and the specific trigger-fact designs used, Results derived from a scripted deterministic simulator rather than real-world deployments, Only two model types evaluated (one 32B open model and gpt-4.1-mini); not tested at frontier model scale, Prompting choices, tool scoping, and topology implementations may interact with attenuation and differ in other systems, Lab conditions with synthetic inputs may not capture operational noise, human oversight, or richer data sources

Claims (9)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Decomposing an agent into components increases policy-relevant fact attenuation at handoff boundaries relative to a single-loop architecture. Regulatory Compliance negative Fact attenuation and policy compliance across agent architectures
Reading fidelity high
Study strength high
n=626
56–85% attenuation on Qwen2.5-32B at constraint distance 2; 3–6% on gpt-4.1-mini
0.8
For Qwen2.5-32B-Instruct at constraint distance 2, fact attenuation was 0% under the single-loop baseline, 56% under the fixed pipeline, and 85% under the orchestrator-subagent architecture. Regulatory Compliance negative Rate of discovered policy-relevant facts absent from all handoffs on the path to the obligated decision-maker
Reading fidelity high
Study strength medium
n=58
0% (0/16), 56% (9/16), and 85% (22/26)
0.48
For gpt-4.1-mini at constraint distance 2, fact attenuation was 0% under the single-loop baseline, 3% under the fixed pipeline, and 6% under the orchestrator-subagent architecture. Regulatory Compliance negative Rate of discovered policy-relevant facts absent from all handoffs on the path to the obligated decision-maker
Reading fidelity high
Study strength medium
n=75
0% (0/27), 3% (1/30), and 6% (1/18)
0.48
The governance cost of decomposition is partly dependent on model capability: the stronger gpt-4.1-mini model showed substantially less fact attenuation than Qwen2.5-32B under the same architectures and constraint distance. Regulatory Compliance mixed Fact attenuation rate as a function of model and architecture
Reading fidelity high
Study strength medium
n=133
56–85% attenuation for Qwen2.5-32B versus 3–6% for gpt-4.1-mini at distance 2
0.48
The same fact-attenuation mechanism can cause either under-escalation or over-escalation, depending on whether the dropped fact is a risk signal or an exculpating finding. Regulatory Compliance mixed Correctness and direction of mandatory escalation decisions
Reading fidelity high
Study strength medium
n=50
80% attenuation (8/10) for kyc-0004 and 88% (14/16) for kyc-0005
0.48
In the paired mirror tasks, Qwen2.5-32B under D2 attenuated 80% of discovered facts in the hidden-UBO risk task and 88% in the resolvable-PEP false-positive task. Regulatory Compliance negative Policy-trigger fact preservation across handoffs
Reading fidelity high
Study strength medium
n=50
80% (8/10) and 88% (14/16)
0.48
The orchestrator-subagent architecture elicited more policy-relevant trigger facts than the single-loop baseline on Qwen2.5-32B, but then attenuated most of those facts. Regulatory Compliance mixed Trigger-fact discovery and subsequent fact preservation
Reading fidelity high
Study strength medium
n=200
27/100 versus 16/100 episodes with discovery; 22/27 attenuated versus 0/16
0.48
No systematic difference was observed between providing the full policy in context and retrieving it on demand under the single-loop architecture. Regulatory Compliance null_result Governance and policy-compliance performance under different policy access modes
Reading fidelity high
Study strength low
not reported
0.24
Overall governed success was very low: 8 of 596 episodes, or 1.3%, satisfied task success, absence of critical violations, and correct escalation. Regulatory Compliance negative Governed success combining task completion, critical-policy compliance, and correct escalation
Reading fidelity high
Study strength medium
n=596
1.3% (8/596)
0.48

Notes