Close two silent gaps: the Windows loader and the gate's fifth caller #1403
No reviewers
Labels
No labels
burndown-2026-06
burndown-2026-08
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
coherence-core
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
qa-fixture
role/advocate
role/director
role/exec
role/frontend
role/gamedev
role/human
role/platform
role/qa
role/science
role/sysadmin
state
ambient
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
coilyco-flight-deck/agentic-os!1403
Loading…
Reference in a new issue
No description provided.
Delete branch "aos/claude/ee98-gaps"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#1208 - the Windows profile loader
The loader
breaks on the clear-end marker, so it stopped reading before the exports block whenever the twocommon.shblocks were ordered the other way. Every shared export vanished with no error and no empty value - the names were simply never set, while the clear still worked, so the file looked correctly read.Reproduced under real
pwshagainst the shipped template rather than a transcription of it:The issue asked for a test asserting the ordering. I fixed the loader instead: the clear-end marker now resets its flag and continues exactly as the exports-end marker does, so the constraint stops existing rather than being documented and guarded. Both orderings now load both blocks.
The regression test is structural (no
breakin the marker loop, both end markers clear their flag) because CI has no PowerShell. Verified it fails against the old template:#1212 - the gate's fifth caller
just repo-test-gatewas the only caller ofrepo-test-gate.shnot wrapped inscripts/ci-command.sh, so it bypassed the egress proxy. That is the spelling an agent actually types, since this repo's own rule routes every dev command through the justfile.The caller sweep in
test_ci_egress_proxy.pyscoped itself to workflows andscripts/ci/*.sh, which is why the justfile was invisible. It now includes the justfile. Verified the test bites by reverting the recipe.Closes #1208
Closes #1212