The cap guard from #59 (added in #76) flags three distinct repos whose .github/copilot-instructions.md is over the ~4,000-char Copilot cap and losing its tail to silent truncation:
- ccm: 4450 chars (+450 past 4000)
- houseofjawn-dashboard: 5170 chars (+1170)
- jawn-map: 6619 chars (+2619)
The guard's raw run reports 11 over-cap files, but nine of those are worktrees or clones of the same ccm checkout, so there are three distinct repos to fix. cjs2026 is near cap at 3911 and worth watching.
Each over-cap file silently drops its tail when the Copilot PR review bot reads it, so whatever guidance sits past ~4000 chars is not being applied. The fix is the same pattern the #59 sweep used on socialsnag/tools/reroute-nj: keep each file to bot-enforceable rules plus the repo's own bug classes, and drop the prose-style globals the bot cannot enforce (they stay enforced for primary assistants via the user-level config). Run the guard after trimming to confirm each lands under cap.
Filed as a follow-up to #59 / #76 (cross-repo scope, not fixed in that PR).
The cap guard from #59 (added in #76) flags three distinct repos whose
.github/copilot-instructions.mdis over the ~4,000-char Copilot cap and losing its tail to silent truncation:The guard's raw run reports 11 over-cap files, but nine of those are worktrees or clones of the same ccm checkout, so there are three distinct repos to fix. cjs2026 is near cap at 3911 and worth watching.
Each over-cap file silently drops its tail when the Copilot PR review bot reads it, so whatever guidance sits past ~4000 chars is not being applied. The fix is the same pattern the #59 sweep used on socialsnag/tools/reroute-nj: keep each file to bot-enforceable rules plus the repo's own bug classes, and drop the prose-style globals the bot cannot enforce (they stay enforced for primary assistants via the user-level config). Run the guard after trimming to confirm each lands under cap.
Filed as a follow-up to #59 / #76 (cross-repo scope, not fixed in that PR).