From d4c5141b01dc26759c05e4cbc14b1e4b955ca39a Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 30 Aug 2026 06:46:17 +0000 Subject: [PATCH] chore(pm): tighten pm-dispatch SKILL.md table-row pin to 642 PR #13085 shrank the widest table row of .claude/skills/pm-dispatch/SKILL.md (the domain:engine row) from 765 to 642 bytes. The shrink-only ratchet in check-skill-line-ratchet.mjs has been printing the standing opportunistic-tighten hint on every run since; this follows it, lowering the MAX_TABLE_ROW_BYTES pin to match. Headroom returns to 0, as expected for a freshly-paid-down pin. --- scripts/pm/check-skill-line-ratchet.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pm/check-skill-line-ratchet.mjs b/scripts/pm/check-skill-line-ratchet.mjs index 4cf0bcbcbf..637259a7f7 100644 --- a/scripts/pm/check-skill-line-ratchet.mjs +++ b/scripts/pm/check-skill-line-ratchet.mjs @@ -450,7 +450,7 @@ export const CEILINGS = new Map([ export const MAX_TABLE_ROW_BYTES = new Map([ // The five files that carry a table row today, each seeded at its own widest. // The corpus's #1 longest LINE of any shape is the AGENTS.md row below. - ['.claude/skills/pm-dispatch/SKILL.md', 765], + ['.claude/skills/pm-dispatch/SKILL.md', 642], ['.claude/skills/pm-dispatch/references/dispatch-runbook.md', 0], ['.claude/skills/pm-dispatch/references/state-machine.md', 0], ['.claude/skills/pm-dispatch/references/contract-review.md', 0],