Skip to content
Open
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 @@ -112,7 +112,14 @@
# Bumped 59_000 -> 61_000 for update_expert (the Autopilot-side soul edit,
# same confirm gate) and raise_expert's color palette enum + persona-name
# guidance. Merged registry measures 59625 chars; ~1.4k headroom.
_CHAR_BUDGET = 61_000
# Bumped 61_000 -> 65_000. That 1.4k of headroom was gone 17 days later:
# nine tools grew 50-400 chars each with no single PR at fault, dev reached
# 60,984, and the next PR to add anything was ejected from the merge queue.
# Sized against what concurrent in-flight PRs add in AGGREGATE (the ten v0.7.5
# PRs add 1,763) rather than against whatever sits on dev today, because each
# branch's CI only ever sees its own delta. Registry measures 62,747 with all
# ten merged; 2,253 headroom.
_CHAR_BUDGET = 65_000


@pytest.fixture(scope="module")
Expand Down
Loading