feat(scanner): add AGT per-agent description bloat advisory (v5.9 B1-rest)
Flag any single active agent whose description exceeds a 500-char soft cap (the same bloat threshold TOK pattern F applies to SKILL.md descriptions). Every char of an agent description re-enters context in the always-loaded agent listing on every turn, so a long one is a per-turn cost. Framing is deliberately ADVISORY, severity low: unlike CA-SKL-001 agents have NO verified per-description cap, so nothing is dropped — this is a bloat advisory, never a truncation claim. Per-agent advisories are emitted BEFORE the aggregate roll-up (mirrors SKL 001->002). - PER_AGENT_DESC_SOFT_CAP (=500) added to lib/agent-listing-budget.mjs as the single source of truth, disclosed as a heuristic. - Per-agent loop reuses measureActiveAgentListing()'s agents[] (name, source, pluginName, path, descLength) — no new enumeration. - 5 new tests (fire/strict-boundary/no-truncation-claim/recommendation/order). Byte-stable: AGT already stripped from frozen v5.0.0 baselines; SC-5 unchanged (HOME-scoped, hermetic HOME has no agents). Suite green: 1181 tests. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
fcfb2979ef
commit
2a3cb537f9
3 changed files with 164 additions and 1 deletions
|
|
@ -35,6 +35,15 @@ export const AGGREGATE_BUDGET_TOKENS = Math.round(BUDGET_FRACTION * CONTEXT_WIND
|
|||
export const LARGE_CONTEXT_BUDGET_TOKENS = Math.round(BUDGET_FRACTION * LARGE_CONTEXT_WINDOW); // 20000
|
||||
export { CONTEXT_WINDOW_ANCHOR, LARGE_CONTEXT_WINDOW, withCommas };
|
||||
|
||||
// Per-agent soft cap for the description-bloat advisory. This is a HEURISTIC,
|
||||
// NOT a truncation cap: agents have no verified per-description limit (unlike
|
||||
// the skill listing's 1,536-char cap, CC 2.1.105). We reuse the 500-char
|
||||
// bloat threshold TOK pattern F already applies to SKILL.md descriptions, so a
|
||||
// long agent description is flagged for the same reason — every char re-enters
|
||||
// context in the always-loaded agent listing on every turn — without ever
|
||||
// claiming Claude Code drops the tail.
|
||||
export const PER_AGENT_DESC_SOFT_CAP = 500;
|
||||
|
||||
// The honest framing required because (a) the mechanism is inferred and (b) the
|
||||
// budget depends on a context window we cannot observe. Appended to overflow evidence.
|
||||
export const BUDGET_CALIBRATION_NOTE =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue