Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,12 @@ legitimate short bounded waits.
To reset the counter, the work must be:

- **Concrete artifact** (memory file written, PR opened, rule updated,
backlog row filed, review thread resolved) — NOT just an internal
decision to "look at something"
backlog row filed, review thread resolved, OR branch-pushed-no-PR
during pure-git tier — see [`refresh-world-model-poll-pr-gate.md`](refresh-world-model-poll-pr-gate.md)
rate-limit operational tiers; pure-git ships substrate via branch
push and defers PR creation to post-reset, which still counts as
concrete artifact) — NOT just an internal decision to "look at
something"
- **Bounded scope** (small enough to ship in one tick cycle, not a
multi-session project that becomes its own architecture-stairs trap)
- **Not the same brief-ack-with-fancier-words** ("genuine quiet" /
Expand Down Expand Up @@ -129,6 +133,73 @@ rule is the mechanization: a specific cold-boot-loaded rule that
fires on the exact failure pattern, rather than relying on the
agent to introspect the broader never-be-idle rule.

### Cascade-saturation empirical anchor (2026-05-16, session ~07:46-07:50Z)

Second class of empirical evidence: the rule operating CORRECTLY through
sustained rate-limit cascade saturation. A fresh-cold-boot Otto-CLI
session ran through:

- Cycle 1 (06:43Z-06:51Z): brief-acks #1→#2→#3 during pure-git tier with
bounded-wait naming; counter reset via named-dep (rate-limit recovery)
per condition #2
- Cycle 2 (07:26Z-07:30Z): brief-acks #1→#2→#3→#4 during CI wait; pre-emptive
decomposition at #4 (rule PR shipped) per condition #3
- Cycle 3 (07:36Z-07:40Z): #1→#2→#3→#4→#5 during deep extreme cost-aware tier;
pre-emptive decomposition at #5 (B-0558 backlog row branch pushed)
- Cycle 4 (07:46Z-07:50Z): #1→#2→#3→#4→#5 during pure-git tier post-PR-flood;
pre-emptive meta-fallback at #6 territory (THIS rule edit)

Empirical anchors validated:

1. Counter discipline allows #1-#5 with explicit bounded-wait naming. Counter
discipline FORCES escalation at #6.
2. Pre-emptive decomposition at #4 OR #5 is substrate-honest when a clear
high-value substrate edit is ready. Waiting for forced #6 is also valid
when the channel is saturated and the right work isn't yet identified.
3. The meta-fallback ("sharpen this rule with current session's evidence")
ALWAYS works at #6 because the session's behavior is always observable.
THIS sub-section is the meta-fallback firing on the session that ran the
cascade — recursively self-documenting.
4. Pure-git tier (rate at 0/5000) is fully compatible with concrete-artifact
counter reset: branch push without PR creation counts. The deferred-PR
pattern lets pure-git ticks continue producing substrate even when
GraphQL is exhausted.
5. Multi-cycle observation: cascade saturation creates RECURRING brief-ack
cycles as named-deps surface and re-bind. Each cycle independently
ran through #1-#5 without hitting #6 forced escalation — the counter
does not accumulate across cycles separated by named-dep resets.

### Sub-case 5 — peer-side destructive git operation discards unstaged edits

Discovered while authoring THIS sub-section (07:50Z): peer Otto running a
destructive git operation (e.g., `git reset --hard`, `git stash + checkout`,
or aggressive worktree-cleanup) in the shared worktree DISCARDED my
unstaged tracked-modifications that the borrow-on-existing pattern relies
on to "follow me" across `git switch`.

This is a 5th failure sub-case for [`claim-acquire-before-worktree-work.md`](claim-acquire-before-worktree-work.md)'s saturation-ceiling taxonomy:
peer-side destructive git operations are NOT prevented by `git switch`
semantics — `git switch` only refuses when modifications would be
overwritten BY THE SWITCH, not when peer-side commands run between
Edit and commit.

**Mitigation**: commit edits IMMEDIATELY after authoring; do not rely on
unstaged tracked-modifications to survive across multiple Bash calls
during peer saturation. The Edit-then-add-then-commit sequence should
happen within a single Bash call (or two adjacent calls with no
intervening peer activity).

**Empirical**: this commit's edits had to be RE-APPLIED after peer's
destructive operation discarded the first authoring attempt. The fix
worked because the edit content was preserved in conversation context;
without that, the work would have been lost. Conversation-context
preservation is the only fallback once unstaged edits are destroyed.

Composes with the rate-limit operational tiers documented in
[`refresh-world-model-poll-pr-gate.md`](refresh-world-model-poll-pr-gate.md)
and the saturation-ceiling taxonomy in
[`claim-acquire-before-worktree-work.md`](claim-acquire-before-worktree-work.md).

## Composes with

- `.claude/rules/never-be-idle.md` — this rule sharpens the existing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,20 @@ Same as B-0553 — friction-reducer. Each improvement is small and additive; tog
## Origin tick

Tick 15 of the 2026-05-16 session. PR #3758 review-cycle 2 produced these 4 findings on commit `e5e7143`; this row captures them as follow-up substrate so PR #3758 can ship cleanly.

## Resolution (2026-05-16)

All four slices shipped within the same 2026-05-16 session that filed this row:

| Slice | Finding | PR | Merge commit |
|---|---|---|---|
| 1 | `--check` flag for CI integration | [#3783](https://github.com/Lucent-Financial-Group/Zeta/pull/3783) | `0a57a814` |
| 2 | try/catch on FS reads (don't abort on bad file) | [#3788](https://github.com/Lucent-Financial-Group/Zeta/pull/3788) | `6809f6e3` |
| 3 | chdir to repo root via `git rev-parse` (cwd-independent) + 2 regression tests | [#3790](https://github.com/Lucent-Financial-Group/Zeta/pull/3790) | `472024dc` |
| 4 | Mixed-bullet extraction (paths before cross-ref tokens are deliverables) + tsc-strict guard | [#3809](https://github.com/Lucent-Financial-Group/Zeta/pull/3809) | `eb04e3d` |

**Acceptance bullets**: every bullet in the Acceptance section has a corresponding merged PR. Verified per `.claude/rules/backlog-item-start-gate.md` step 0 partial-vs-drift discriminator.

**Test count**: 16 (B-0553 first slice) → 20 (after slices 3 + 4 added 2 + 2 regression tests). All passing on main.

**Infrastructure-eats-itself**: this row was caught as a genuine drift candidate by the audit tool it specified. The 6-layer substrate-drift-catch infrastructure has now reached full operational closure on main.
Loading