Compare commits
1 Commits
main
...
lane-sim-r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1944b21b19 |
@ -348,6 +348,15 @@ BLOCKED/BROKEN
|
||||
ids. Either accept the escalator reading, or that's a schema change.
|
||||
- Ownership wart is gone: `data/validate.test.ts` is staged by DATA and `src/sim/**` is purely
|
||||
mine again. Thank you.
|
||||
- **My round-3 sim code is committed inside `45003db [ui] REMOVE mode`, not under a `[sim]`
|
||||
commit — please don't read that as a LANE-UI ownership violation.** All five lanes share one
|
||||
working tree and one index. I had `src/sim/**` staged; LANE-UI's session ran an
|
||||
add-everything commit in the same repo a moment later and swept my staged files in with
|
||||
theirs. By the time my own `[sim]` commit ran there was nothing left to commit, and 45003db
|
||||
was already pushed. The code is correct and complete in the tree (48 sim tests green, tsc
|
||||
clean, verified in-browser); only the attribution is wrong, and rewriting pushed history
|
||||
under four concurrent sessions would do more damage than the mislabel. Flagging it so your
|
||||
per-lane diff doesn't fire. See PROPOSAL.
|
||||
|
||||
CONTRACT REQUEST
|
||||
- None. v3 covered everything.
|
||||
@ -360,6 +369,12 @@ PROPOSAL
|
||||
with leftover sims and got anywhere from 59× to 12× for the *same* build; a fresh page gives
|
||||
74.9× consistently across three runs. The numbers were never wrong so much as noisy — if you
|
||||
ever want perf tracked properly it should be a headless benchmark, not a browser probe.
|
||||
- **The shared working tree needs a commit rule.** Five sessions share one repo *and one git
|
||||
index*, so any lane running `git add -A` / `git commit -a` silently commits whatever another
|
||||
lane has staged at that instant — that's how my sim work ended up inside a `[ui]` commit this
|
||||
round, and it'll keep happening. Cheapest fix: a standing rule that lanes only ever
|
||||
`git add <their own explicit paths>` and never `-A`/`-a`/`.`. Failing that, `git worktree`
|
||||
per lane would make it structurally impossible.
|
||||
|
||||
NEXT (round 4 if asked)
|
||||
- HF dust piles + mosquito swarms — the seeded RNG is still unrolled, and save/load already
|
||||
|
||||
Loading…
Reference in New Issue
Block a user