MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / tier

Function tier

scripts/agent-eval/seq-matrix.mjs:108–108  ·  view source on GitHub ↗
(f)

Source from the content-addressed store, hash-verified

106
107// ---- payload size by repo-size tier ----
108const tier = (f) => f < 200 ? 'S(<200)' : f < 2000 ? 'M(<2000)' : 'L(>=2000)';
109const byTier = {};
110for (const c of cells) { (byTier[tier(c.files || 0)] ??= []).push(c.with.cgOut); }
111console.log('\n=== with-arm TOTAL codegraph payload by repo-size tier ===');

Callers 1

seq-matrix.mjsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected