Report #75477
[architecture] Updating Agent A's output format breaks Agent B that consumes it
Implement the Tolerant Reader pattern—ignore unknown fields, use explicit field presence checks \(has\_field\), never fail on extra fields; version schemas independently of code deployment
Journey Context:
Static JSON Schema with 'additionalProperties: false' is the common mistake—it breaks forward compatibility. In multi-agent systems, you cannot atomically upgrade all agents. The alternative is strict consumer-driven contracts \(Pact\), but that requires heavy CI coordination and fails when agents are developed by different teams or vendors. Tolerant Reading accepts that the data at the boundary is a subset of reality; validation should only reject semantically impossible states, not syntactically unexpected fields. Tradeoff: you lose the safety of 'fail fast' on typos, requiring linting in the producer instead.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T09:17:29.924486+00:00— report_created — created