๐จ Escalation Log¶
Blocked-WP entries per the anti-guessing rule (AGENTS.md sec. 4). An agent stops and writes an entry here โ then waits for a principal decision โ when any of these occur:
- A gate fails after two documented assumption iterations (each iteration = a recorded ASSUMPTIONS.md revision plus a re-run).
- Answering a question would require a denylisted source. Never resolve an ambiguity by looking at the reference implementation.
- A WP's roadmap spec conflicts with the technical specification, or the specification conflicts with the papers.
- A change would require altering a frozen golden.
- A run would exceed 4 GPU-hours and is not already marked [PRINCIPAL].
Escalation is success, not failure: this log plus the assumption register is the research output a from-code port could never produce.
๐งพ Entry template¶
## <date> โ WP-<NNN> <slug>
- **Symptom**:
- **Hypotheses tried** (with ASSUMPTIONS.md revision ids):
- **Sources consulted** (allowlisted only):
- **Decision requested**:
- **Resolution** (filled by the principal):
๐ Entries¶
2026-09-03 โ WP-154b the composition centre moves a frozen golden¶
- Symptom: WP-154b changes
AffineParams.matrix's composition centre from(W/2, H/2)to((W-1)/2, (H-1)/2), the conventionfuse-augmentationscomposes about.goldens/frozen/0.6/aug_invariants.jsonโ a pure-code frozen golden written by the v0.6.0 release commit22739e1โ pins five metrics the change moves past their tolerance:affine_image_mean0.5565 โ 0.5542 (tol 0.002),affine_bbox_coord_sum121.3428 โ 121.9856 (tol 0.05),affine_polygon_area276.7792 โ 277.6373 (tol 0.5),fused_image_mean0.5529 โ 0.5506 (tol 0.002),fused_bbox_coord_sum91.0071 โ 91.4892 (tol 0.05). Every hook, every one of 2543 unit tests and the other 35 goldens are green; the three residual pytest failures (scripts/_tests/test_check_goldens.py::test_real_goldens_pass,::test_main_exit_code_zero_on_real_goldens, thecheck_alldoctest) all assert "every real golden passes" and resolve with this one file. This is trigger 4: the row cannot be both gate-green and frozen-golden-clean. - Hypotheses tried (with ASSUMPTIONS.md revision ids): none โ this is not an ambiguity to iterate on. The delta is fully traced rather than guessed: re-running
aug_invariantswith the centre reverted (and nothing else) reproduces all fifteen stored values bit-exactly, so the whole movement is the centre and there is no second cause to look for.mixup_image_mean(-0.0009) androtated_rbox_area(-0.0001) move within tolerance from the same cause; every mirror-independent metric is unchanged, the mirror axis not being exercised by this producer. - Sources consulted (allowlisted only):
docs/ENGINEERING_LOG.mdWP-154b and WP-155b scope entries,docs/ROADMAP.mdPhase 14 preamble, AGENTS.md sec. 4 and sec. 7, the WP-132 and WP-154 removals of generator-derived frozen goldens. - Decision requested: which of three, noting that the ruling covers the phase and not only this row โ WP-155b plans to measure the letterbox resampling delta "against the 0.6 frozen goldens" and re-freeze what moves, and the metrics it will move (
letterbox_image_mean,letterbox_pad_fraction, the fused pair) live in this same file.- Remove
goldens/frozen/0.6/aug_invariants.json, on the WP-132/WP-154 precedent. Different in kind from that precedent: those two were generator-derived and could never again be satisfied by any code change, whereas this one is pure-code and would be satisfiable by any release that did not deliberately give up the convention. Recoverable in history; costs a real regression guard for one release. - Update its five values in place, which sec. 7 forbids outright and which makes "current code still satisfies every value a past release pinned" mean something weaker than it does today.
- Re-scope: hold WP-154b until 0.7 is released and freeze the new convention there, leaving 0.6 untouched โ which blocks every remaining Phase 14 row, all of which depend on 154b.
- Remove
- Resolution (filled by the principal): Overriding AGENTS.md ยง7's standing prohibition on modifying a frozen golden, for this one file, on record โ the values are updated in place rather than the file removed.
goldens/frozen/0.6/aug_invariants.json's seven traced metrics (the five past tolerance plusmixup_image_meanandrotated_rbox_area, both moved within tolerance from the same cause) now match the livegoldens/aug_invariants.jsonexactly. Presented with the removal alternative (same mechanism as WP-132/WP-154, no rule override needed) and chose the override instead.
2026-09-03 โ WP-155 the letterbox resample moves the same frozen golden again¶
- Symptom: WP-155 delegates
Letterbox's resize-and-pad tofuse-augmentations, replacing an antialiased bilinearF.interpolateplusF.padwith onegrid_samplefrom the source canvas to the letterboxed one. Geometry is bit-unchanged โletterbox_pad_fractionholds at0.4, every coordinate round-trip case passes,goldens/data_checksums.jsondoes not move โ and exactly one image-derived value moves:letterbox_image_mean0.5024 โ 0.4994 against a 0.002 tolerance, in the livegoldens/aug_invariants.jsonand ingoldens/frozen/0.6/aug_invariants.json. 34 of 36 goldens pass; the two failures are that one metric in those two files. This is trigger 4 again, on the same frozen file WP-154b overrode eight commits ago, whose resolution was recorded as one dated exception and explicitly not a precedent. - Hypotheses tried (with ASSUMPTIONS.md revision ids): the delta is measured rather than assumed, and one alternative was tested rather than argued. Upstream's opt-in
antialias=Truewas enabled and the producer re-run: the metric stays at 0.4994, the Gaussian mipmap prefilter not engaging at this producer's downscale, so recovering the old pixels is not available short of keeping the local implementation. A32 is revised in this change (non-antialiased resampling widens from the train path's deviation to the whole pipeline's filter) rather than contradicted. - Sources consulted (allowlisted only): the installed
fuse_augmentations0.12.0.dev0 source (affine/matrix.py,affine/segment.py,targets.py,factories.py,pipeline.py),docs/ENGINEERING_LOG.mdWP-155 and WP-155b scope entries,docs/ASSUMPTIONS.mdA32, AGENTS.md sec. 4 and sec. 7 ["sec. 6.5" struck 2026-09-06: AGENTS.md has never had a section 6.5 โ it runs 1 to 8, sec. 6 is Naming hygiene and has no subsections, andgit log -S "6.5" -- AGENTS.mdreturns nothing, so no revision of the file ever carried one. The entry is left otherwise as written; what cannot be left is a source list naming a document that does not exist], and the 2026-09-03 WP-154b entry above. - Decision requested: four, noting that WP-155 and WP-155b cannot both keep their commit boundary and a green gate โ the swap moves the value, so WP-155 alone fails
make gateand WP-155b alone has nothing left to measure.- Keep the row split, accepting that WP-155's own commit fails the golden check and
mainis red between the two commits, which sec. 5 forbids. - One commit, override the frozen value again: land the swap, the live re-freeze and
frozen/0.6/aug_invariants.json'sletterbox_image_meantogether. Gate green, but a second sec. 7 override on the same file, and it merges a delegation swap with a frozen move โ the exact pairing [citation corrected 2026-09-06, the original read "sec. 6.5", which does not exist in AGENTS.md; the standing rule carrying this content is ADR-005's migration protocol, step 3 (docs/DECISIONS.md): an expectation that turns red at a swap is diagnosed, and either the integration is fixed or a separate work package argues the old value was wrong โ "never both in one commit, because that combination is indistinguishable from adjusting the test until the new code passes", whichdocs/CONTRIBUTING.mdstates again for contributors under A golden moved. Identified by matching the rule to the words, not from the author's stated intent, which is not on record] exists to prevent. - Remove
goldens/frozen/0.6/aug_invariants.jsonon the WP-132/WP-154 precedent, no rule override โ at the cost of all fifteen of that file's metrics, fourteen of which are still satisfiable. - Narrow WP-155 to the keep mask and the letterbox geometry, keeping
_resize_padlocal and antialiased so nothing moves โ leaving two resample implementations in the tree and deferring the delegation to 0.7's freeze.
- Keep the row split, accepting that WP-155's own commit fails the golden check and
- Resolution (filled by the principal): Option 2. Overriding sec. 7 a second time, on record:
letterbox_image_meanbecomes 0.4994 in both the live and the frozen copy, and WP-155 and WP-155b land as one commit. Presented with option 3 (removal, no override needed) and option 4 (no pixel moves at all) and chose the override. Two dated exceptions now stand on this file; neither is a standing waiver, and the next frozen-golden case is a fresh decision rather than one this precedent settles.
2026-09-04 โ WP-159 the release cannot satisfy ADR-005's first condition¶
- Symptom: WP-159's fourth clause promotes
fuse-augmentationsfrom a development pin to a runtime dependency "under the four conditions ADR-005 records". Condition 1 requires real SemVer releases to PyPI. Measured against PyPI's own JSON API: the latestfuse-augmentationsthere is0.10.0.dev0, there is no 0.11 or 0.12 at all, and every one of the eleven releases is a.dev0pre-release. The capability floor Phase 14 stands on is the commita5a276a, which is unreleased.pyproject.tomlalready recorded half of this before the row opened โ PyPI forbids re-uploading the0.10.0.dev0version string, so a bare version pin cannot reach the needed code. - What changed the shape of the question: ADR-005's stated fallback is that "a refusal returns the dependency story to a SHA pin, which keeps the augmentation stack local rather than making it unpublishable". That was written while the stack was still local. It has moved:
src/lucid_yolo/data/{affine,augment,letterbox,mosaic,rotated_aug}.pyall importfuse_augmentationsat module level, solucid_yolo.dataโ andpredict, throughletterboxโ cannot import without it, while the package sat only in thedevgroup. Refusing promotion therefore no longer returns anything; it leaves a distribution that fails on import for anyone installing without that group.scripts/release_guard.pychecks the tag, the changelog section and the gate, and has no notion of dependency tiers, so nothing automated would have caught it. - Sources consulted (allowlisted only): PyPI's JSON API for
fuse-augmentations,pyproject.toml[project].dependenciesand[dependency-groups].dev,.github/workflows/release.yml,scripts/release_guard.py,docs/DECISIONS.mdADR-005 and D19, and the module-level imports listed above, all read atf285af5. - Decision requested: four.
- Hold WP-159 until
fusecuts 0.12 to PyPI, then land the row whole with a>=0.12,<0.13ceiling โ the only path satisfying all four conditions as written, at the cost of an unbounded wait on a separate session and a broken-without-devinstall in the meantime. - Promote to a runtime git pin and accept the distribution is unpublishable: conditions 2, 3 and 4 met, condition 1 knowingly failed, on the grounds that publication is itself an unmade
[PRINCIPAL]decisionrelease.ymldeliberately omits. - Split the row: land 0.7.0 as the version bump, the changelog close and the
0.7freeze, and defer the promotion to a new row gated on the PyPI release, documenting the exposure rather than fixing it. - Stop, leaving WP-159 untouched alongside the four contributor-admission rows already blocked on principal preconditions.
- Hold WP-159 until
- Resolution (filled by the principal): Option 2. The runtime pin lands as a direct reference and the distribution is unpublishable to PyPI until a 0.12 exists there; recorded as D20. This is a decision about this dependency at this moment, not a general waiver of ADR-005 condition 1 โ a second package arriving in the same state is a fresh decision.