Skip to content

#28 Echo info_source_id on both facts; announce the blob horizon - #33

Merged
gregoryfoster merged 6 commits into
mainfrom
28-echo-info-source-id
Aug 8, 2026
Merged

#28 Echo info_source_id on both facts; announce the blob horizon#33
gregoryfoster merged 6 commits into
mainfrom
28-echo-info-source-id

Conversation

@gregoryfoster

Copy link
Copy Markdown
Contributor

Closes #28 once deployed. Do not merge-and-restart alone — see the deploy note below.

What lands

  • info_source_id echoed verbatim onto blob_available and fetch_failed, from the three emit-path modules. Not parsed, deduped on, keyed on, or read by any routing or policy decision.
  • blob_expires_at populated (cannobserv#301). Stamped from a clock read before store(), so the announced horizon can only fall earlier than the real reap — a consumer acting on it re-fetches early rather than opening a dead blob_uri.
  • co-core floor >=0.8.0,<0.9, which fails loudly rather than silently: a skew is a ValidationError at construction, not a field quietly discarded by extra="ignore".
  • blob_ttl_seconds bounded (0 < n ≤ 10y). The horizon is arithmetic now, and an unbounded float raised OverflowError after the bytes were stored — dead-lettering a command whose blob was fine and orphaning it, from a config typo.
  • Seed harness takes --info-source-id, and the live target refuses both the placeholder default and a blank value.

The charter is the interesting part

tests/test_boundaries.py forbids domain vocabulary anywhere in src/, and was right to — the rule it protects is that Replicator never learns what a domain key means. The wire now requires naming one to carry it, so the token is exempted in exactly the three emit-path modules, as the exact identifier, and a second scan took over the real invariant.

That scan started as a deny-list of reading positions and three review rounds each found positions it had not enumerated (six, then one, then two). It is now an allow-list: an echo has four legal shapes — field declaration, parameter, the info_source_id= keyword, that keyword's value — and everything else fails, including shapes nobody has thought of. Probed against fifteen violations it was never told about (assert, comprehension filters, set literals, del, sort keys, async for, setdefault, …): all fifteen caught, the three legal shapes clean.

Verification

498 unit + 18 live-broker integration tests; coverage 99.77%; ruff clean; ty at its pre-existing baseline. AGENTS.md and all three contract docs back inside their context budgets.

Deploy ordering — this PR is not independently deployable

Required fields mean a half-deployed cluster does not degrade, it dead-letters: a Replicator on 0.8.0 fails from_wire on any command from a Watcher still on 0.7.x, destroying the command_id correlator before any fact can name it. Ships with CannObserv/watcher#252, streams flushed between. Full order of operations in docs/DEPLOYMENT.md.

🤖 Generated with Claude Code

gregoryfoster and others added 6 commits August 7, 2026 22:08
co-core 0.8.0 makes info_source_id required on ContentFetchCommand and on both
facts. Replicator's part is mechanical: copy it across, interpret nothing.

The charter is what actually changed. tests/test_boundaries.py forbids domain
vocabulary anywhere in src/, and it was right to — the rule it protects is that
Replicator never learns what a domain key means. But the wire now requires
naming one to carry it, so the token is exempted in exactly the three modules on
the emit path and a second scan takes over the real invariant: the value may
never appear in a comparison, a branch test, a subscript, or an f-string. Naming
it is mechanics; keying on it is a domain model arriving one commit at a time.

Also populates blob_expires_at (cannobserv#301). The clock it reports runs from
the last fetch reference — store() touches the mtime on its content-addressed
short-circuit — which is an event no consumer can observe, leaving them to
re-derive the horizon from the contract's MUST-7 TTL and get the start point
wrong. The stamp is read before store() rather than after, so the announced
horizon can only fall earlier than the real one.

Pin floor is 0.8.0, and unlike its predecessors this one fails loudly: the
earlier floors guarded against extra="ignore" discarding kwargs silently, while
a required field makes a skew a ValidationError at construction.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
….8.0

MUST-2 is narrowed rather than dropped, and phrased by deploy epoch so it does
not need revising again when watcher#252 lands: from that deploy onward a crash
between minting a command_id and recording it costs the link to the occasion,
not the domain object, but nothing is retroactive and a 0.7.x issuer is
unaffected. The durable record stays required on narrower grounds — request
options, audit, the MUST-6 reaper.

MUST-3 keeps its rule and loses its last excuse: url was never a key because
Archiver's url is one-to-many against InfoSources, and now the correct key is on
the fact directly.

The envelope-key table gains the re-key, which is a delivery-behaviour change on
content.blobs rather than a rename — emissions that used to collapse now all
deliver. The bare fingerprint also left the second command for identical bytes
permanently unclosed, which looked like a slow origin.

The boundaries charter records why info_source_id was allowed through a rule
written to forbid exactly it: the field is not small, it is unread. That is the
test a future proposal has to pass, so it is stated as one — does Replicator
have to understand this to act on it — rather than as a list of accepted names.

Three reference docs are at or over the repo's 10k context budget after this;
the contract half was already over at HEAD. Flagged, not papered over.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
…rest

The charter cited a scan that caught three of nine realistic violations. A probe
of the detector found it missed a dict-literal key, a .get() lookup, a
membership call, string concatenation into a Redis key, a path built from the
value, and iteration over an info_source* collection — which is to say it missed
every shape by which a carried value quietly becomes state, while catching the
ones nobody was going to write. It now covers dict keys, positional call
arguments, BinOp and JoinedStr, with a planted case for each; positional
arguments prune at nested calls, or the emit path's own
_publish(..., BlobAvailableEvent(info_source_id=...)) reads as its caller's
violation.

The vocabulary exemption was one word wide when the carve-out was one field
wide, so info_source_policy or info_sources would have entered an allowlisted
module unchallenged. It is now the exact identifier.

blob_ttl_seconds is bounded. Since the horizon is arithmetic, an unbounded float
raised OverflowError after the bytes were stored — dead-lettering a command
whose blob was fine and leaving it orphaned, from a config typo.

The seed harness refuses the placeholder domain key on the live target, under
the same conjunction as the --production guard: a scratch run reaches no
consumer, so inventing an id there is what the placeholder is for, while a real
fetch broadcasts it to the cluster.

AGENTS.md and both contract halves are back inside their budgets. Most of what
came out was duplication the #24 split left behind — the enriched-field rules,
the reason-token table and the silent-condition list each stated twice, in the
read-through half and again in the lookup half — plus below-floor co-core version
annotations that no longer tell an issuer anything actionable.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
The guard added last round broke the live-loop invocation documented in
COMMANDS.md — the one an operator copies to exercise the real thing end to end.
The suite proved the doc wrong (a test asserts exactly that refusal) and nothing
noticed, which is the failure mode of testing a rule without re-reading what the
docs promise about it.

Exempting keyword arguments wholesale left the same hole CR #1 closed, reached by
different syntax: client.get(name=command.info_source_id) reads the value under a
parameter name that is not the echo. Only info_source_id= is exempt now, which is
the shape the emit path actually uses, and the nested-call pruning keeps
_publish(pub, topic, Event(info_source_id=...), command=...) clean at both levels.

The harness refuses a blank domain key alongside the placeholder. The worker
deliberately does not check this — reading the value is interpretation — but the
harness is a producer, so MUST-1's "an empty id is not an id" applies to it
directly.

The TTL bound is documented where an operator setting it would look, since out of
range now fails at startup rather than mid-handler.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Three review rounds each found reading positions the deny-list had not
enumerated — six, then one, then two — and each fix was correct while leaving the
next gap unknown until somebody probed again. The charter meanwhile cited the
scan as what made the vocabulary carve-out safe, so it advertised a guarantee
stronger than it held.

It now asks the opposite question. A verbatim echo has exactly four legal shapes:
a field declaration, a parameter, the info_source_id= keyword, and that keyword's
value. Everything else fails, including shapes nobody has thought of — probed
against fifteen, among them assert, comprehension filters, set literals, del,
sort keys, async for, and setdefault, none of which the scan is told about. All
fifteen caught; the three legal shapes stay clean.

Binding the value to a local is deliberately not legal. It is the first half of
doing something with it, so a change that needs one argues with the test rather
than slipping past it.

Allowing a parameter is safe for the same structural reason the inversion works:
uses of that name are themselves occurrences, so a helper cannot take the value
and then key on it.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Two instances of CR #10 in a second file the review had not looked at. The
orientation paragraph asserted the wire carries no domain identity, which
cannobserv#300 made false, and the smoke-test invocation is the same one the new
guard refuses — a command a newcomer copies first and that now exits 2.

Found by the ship-time doc spot-check, which is the check that exists for exactly
this: a behaviour change lands with its own docs updated and the *other* file
that repeated the claim keeps the old one.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@gregoryfoster
gregoryfoster merged commit f4ea53b into main Aug 8, 2026
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Echo info_source_id on blob_available and fetch_failed; revise MUST-2

1 participant