Chunk 2 of the disableBundledSkills GAP feature. Adds a conditional GAP check
that prescribes the `disableBundledSkills` lever — but only when the active
skill listing is measurably over budget (SKL's CA-SKL-002 overflow signal) and
the lever is un-pulled. It stays an opportunity, not noise.
Bundled skills (/code-review, /batch, /debug, /loop, /claude-api, …) live in the
CC binary, not on disk, so their exact cost is unmeasurable here — the finding
says so plainly, and frames the lever as zero-cost budget reclaim that leaves
the user's own skills untouched. CC 2.1.169+.
- Pure, exported bundledSkillsLeverFinding({leverPulled, aggregate}) → finding|null
(severity low, category token-efficiency, CA-GAP-NNN), wired into scan() via the
shared measureActiveSkillListing().
- Lever resolved via new isBundledSkillsDisabled(): env var + settings cascade
read directly, because discovery does NOT tag ~/.claude/settings.json (its
relPath lacks ".claude" when walked from the .claude root) — the dominant
user-scope location for this global preference would otherwise be missed.
- GAP scan() now reads HOME → existing GAP tests retrofitted to withHermeticHome
per the hermetic rule. Snapshots unchanged, contamination grep clean.
- 16 new tests (9 GAP, 7 lib). Suite 887 -> 903. README/CLAUDE.md document the
cross-scanner remediation; test counts synced. self-audit: PASS, configGrade
A 96, pluginGrade A 100, readme gate passed.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Ter3E2JSi1Khgmuf2kady8
342 lines
13 KiB
JavaScript
342 lines
13 KiB
JavaScript
import { describe, it, beforeEach } from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { resolve, join } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { mkdtemp, mkdir, writeFile, rm } from 'node:fs/promises';
|
|
import { tmpdir } from 'node:os';
|
|
import { resetCounter } from '../../scanners/lib/output.mjs';
|
|
import { scan, opportunitySummary, bundledSkillsLeverFinding } from '../../scanners/feature-gap-scanner.mjs';
|
|
import { discoverConfigFiles } from '../../scanners/lib/file-discovery.mjs';
|
|
import { withHermeticHome } from '../helpers/hermetic-home.mjs';
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
const FIXTURES = resolve(__dirname, '../fixtures');
|
|
|
|
// Pre-discover fixture files WITHOUT includeGlobal so tests are environment-independent.
|
|
// The GAP scanner uses shared discovery when it has files, avoiding its own includeGlobal scan.
|
|
async function fixtureDiscovery(name) {
|
|
return discoverConfigFiles(resolve(FIXTURES, name));
|
|
}
|
|
|
|
describe('GAP scanner — healthy project', () => {
|
|
let result;
|
|
beforeEach(async () => {
|
|
resetCounter();
|
|
const discovery = await fixtureDiscovery('healthy-project');
|
|
// Hermetic HOME: scan() now enumerates active skills via process.env.HOME
|
|
// (the disableBundledSkills lever check). An empty HOME keeps these fixture
|
|
// tests environment-independent — no skills, no budget pressure, no lever finding.
|
|
result = await withHermeticHome(() => scan(resolve(FIXTURES, 'healthy-project'), discovery));
|
|
});
|
|
|
|
it('returns status ok', () => {
|
|
assert.equal(result.status, 'ok');
|
|
});
|
|
|
|
it('reports scanner prefix GAP', () => {
|
|
assert.equal(result.scanner, 'GAP');
|
|
});
|
|
|
|
it('scans multiple files', () => {
|
|
assert.ok(result.files_scanned >= 1);
|
|
});
|
|
|
|
it('finding IDs match CA-GAP-NNN pattern', () => {
|
|
for (const f of result.findings) {
|
|
assert.match(f.id, /^CA-GAP-\d{3}$/);
|
|
}
|
|
});
|
|
|
|
it('does NOT report missing CLAUDE.md', () => {
|
|
assert.ok(!result.findings.some(f =>
|
|
f.scanner === 'GAP' && f.category === 't1' && /CLAUDE\.md/.test(f.recommendation || '')
|
|
));
|
|
});
|
|
|
|
it('does NOT report missing MCP', () => {
|
|
assert.ok(!result.findings.some(f =>
|
|
f.scanner === 'GAP' && f.category === 't1' && /\.mcp\.json/.test(f.recommendation || '')
|
|
));
|
|
});
|
|
|
|
it('does NOT report missing hooks', () => {
|
|
assert.ok(!result.findings.some(f =>
|
|
f.scanner === 'GAP' && f.category === 't1' && /hook/i.test(f.recommendation || '')
|
|
));
|
|
});
|
|
|
|
it('has counts object with all severity levels', () => {
|
|
assert.ok('critical' in result.counts);
|
|
assert.ok('high' in result.counts);
|
|
assert.ok('medium' in result.counts);
|
|
assert.ok('low' in result.counts);
|
|
assert.ok('info' in result.counts);
|
|
});
|
|
|
|
it('has no critical or high findings', () => {
|
|
assert.equal(result.counts.critical, 0);
|
|
assert.equal(result.counts.high, 0);
|
|
});
|
|
|
|
it('all findings have recommendations', () => {
|
|
for (const f of result.findings) {
|
|
assert.ok(f.recommendation, `Finding ${f.id} missing recommendation`);
|
|
}
|
|
});
|
|
|
|
it('T3/T4 findings are info severity', () => {
|
|
const infoFindings = result.findings.filter(f => f.category === 't3' || f.category === 't4');
|
|
for (const f of infoFindings) {
|
|
assert.equal(f.severity, 'info', `${f.id} (${f.category}) should be info, got ${f.severity}`);
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('GAP scanner — minimal project', () => {
|
|
let result;
|
|
beforeEach(async () => {
|
|
resetCounter();
|
|
const discovery = await fixtureDiscovery('minimal-project');
|
|
result = await withHermeticHome(() => scan(resolve(FIXTURES, 'minimal-project'), discovery));
|
|
});
|
|
|
|
it('returns status ok', () => {
|
|
assert.equal(result.status, 'ok');
|
|
});
|
|
|
|
it('reports missing hooks', () => {
|
|
// CA-GAP-002 in minimal-project = t1_3 (No hooks configured); see docs/v5.1.0-test-audit.md.
|
|
assert.ok(result.findings.some(f => f.scanner === 'GAP' && f.id === 'CA-GAP-002'));
|
|
});
|
|
|
|
it('reports missing MCP', () => {
|
|
// CA-GAP-004 in minimal-project = t1_5 (No MCP servers configured).
|
|
assert.ok(result.findings.some(f => f.scanner === 'GAP' && f.id === 'CA-GAP-004'));
|
|
});
|
|
|
|
it('T1 gaps are medium severity', () => {
|
|
const t1 = result.findings.filter(f => f.category === 't1');
|
|
for (const f of t1) {
|
|
assert.equal(f.severity, 'medium', `${f.id} should be medium, got ${f.severity}`);
|
|
}
|
|
});
|
|
|
|
it('T2 gaps are low severity', () => {
|
|
const t2 = result.findings.filter(f => f.category === 't2');
|
|
for (const f of t2) {
|
|
assert.equal(f.severity, 'low', `${f.id} should be low, got ${f.severity}`);
|
|
}
|
|
});
|
|
|
|
it('has more findings than healthy project', async () => {
|
|
resetCounter();
|
|
const discovery = await fixtureDiscovery('healthy-project');
|
|
const healthyResult = await withHermeticHome(() => scan(resolve(FIXTURES, 'healthy-project'), discovery));
|
|
assert.ok(result.findings.length > healthyResult.findings.length);
|
|
});
|
|
});
|
|
|
|
describe('GAP scanner — empty project', () => {
|
|
let result;
|
|
beforeEach(async () => {
|
|
resetCounter();
|
|
const discovery = await fixtureDiscovery('empty-project');
|
|
result = await withHermeticHome(() => scan(resolve(FIXTURES, 'empty-project'), discovery));
|
|
});
|
|
|
|
it('returns status ok (never skips)', () => {
|
|
assert.equal(result.status, 'ok');
|
|
});
|
|
|
|
it('has multiple medium findings (T1 gaps)', () => {
|
|
const mediums = result.findings.filter(f => f.severity === 'medium');
|
|
assert.ok(mediums.length >= 1);
|
|
});
|
|
|
|
it('all findings have category field', () => {
|
|
for (const f of result.findings) {
|
|
assert.ok(f.category, `Finding ${f.id} missing category`);
|
|
assert.match(f.category, /^t[1-4]$/);
|
|
}
|
|
});
|
|
|
|
it('reports T1 gaps including missing CLAUDE.md', () => {
|
|
// CA-GAP-001 in empty-project = t1_1 (No CLAUDE.md file).
|
|
assert.ok(result.findings.some(f => f.scanner === 'GAP' && f.id === 'CA-GAP-001'));
|
|
});
|
|
});
|
|
|
|
describe('opportunitySummary', () => {
|
|
it('returns empty arrays for no findings', () => {
|
|
const result = opportunitySummary([]);
|
|
assert.deepEqual(result.highImpact, []);
|
|
assert.deepEqual(result.mediumImpact, []);
|
|
assert.deepEqual(result.explore, []);
|
|
});
|
|
|
|
it('routes T1 to highImpact', () => {
|
|
const findings = [{ category: 't1', title: 'No CLAUDE.md' }];
|
|
const result = opportunitySummary(findings);
|
|
assert.equal(result.highImpact.length, 1);
|
|
assert.equal(result.mediumImpact.length, 0);
|
|
assert.equal(result.explore.length, 0);
|
|
});
|
|
|
|
it('routes T2 to mediumImpact', () => {
|
|
const findings = [{ category: 't2', title: 'Low hook diversity' }];
|
|
const result = opportunitySummary(findings);
|
|
assert.equal(result.highImpact.length, 0);
|
|
assert.equal(result.mediumImpact.length, 1);
|
|
});
|
|
|
|
it('routes T3 and T4 to explore', () => {
|
|
const findings = [
|
|
{ category: 't3', title: 'No status line' },
|
|
{ category: 't4', title: 'No custom plugin' },
|
|
];
|
|
const result = opportunitySummary(findings);
|
|
assert.equal(result.explore.length, 2);
|
|
});
|
|
|
|
it('handles mixed tiers', () => {
|
|
const findings = [
|
|
{ category: 't1', title: 'A' },
|
|
{ category: 't2', title: 'B' },
|
|
{ category: 't2', title: 'C' },
|
|
{ category: 't3', title: 'D' },
|
|
{ category: 't4', title: 'E' },
|
|
];
|
|
const result = opportunitySummary(findings);
|
|
assert.equal(result.highImpact.length, 1);
|
|
assert.equal(result.mediumImpact.length, 2);
|
|
assert.equal(result.explore.length, 2);
|
|
});
|
|
});
|
|
|
|
// ── disableBundledSkills lever (CA-GAP) — remediation companion to SKL CA-SKL-002 ──
|
|
|
|
describe('bundledSkillsLeverFinding — pure decision', () => {
|
|
const overBudget = { scanned: 17, aggregateChars: 17000, aggregateTokens: 4250, budgetTokens: 4000, overBudget: true, overBy: 250 };
|
|
const underBudget = { scanned: 3, aggregateChars: 3000, aggregateTokens: 750, budgetTokens: 4000, overBudget: false, overBy: 0 };
|
|
|
|
it('returns null when the lever is already pulled, even over budget', () => {
|
|
assert.equal(bundledSkillsLeverFinding({ leverPulled: true, aggregate: overBudget }), null);
|
|
});
|
|
|
|
it('returns null when the listing is under budget', () => {
|
|
assert.equal(bundledSkillsLeverFinding({ leverPulled: false, aggregate: underBudget }), null);
|
|
});
|
|
|
|
it('returns a finding when the lever is un-pulled AND the listing is over budget', () => {
|
|
resetCounter();
|
|
const f = bundledSkillsLeverFinding({ leverPulled: false, aggregate: overBudget });
|
|
assert.ok(f, 'expected a finding');
|
|
assert.match(f.id, /^CA-GAP-\d{3}$/);
|
|
assert.equal(f.scanner, 'GAP');
|
|
assert.equal(f.severity, 'low');
|
|
assert.equal(f.category, 'token-efficiency');
|
|
assert.match(f.recommendation, /disableBundledSkills/);
|
|
assert.match(`${f.description} ${f.recommendation}`, /2\.1\.169/);
|
|
});
|
|
|
|
it('handles a null/garbage aggregate without throwing', () => {
|
|
assert.equal(bundledSkillsLeverFinding({ leverPulled: false, aggregate: null }), null);
|
|
});
|
|
});
|
|
|
|
describe('GAP scanner — disableBundledSkills lever wiring (HOME-scoped)', () => {
|
|
async function buildHome(count, descLen, settings) {
|
|
const home = await mkdtemp(join(tmpdir(), 'config-audit-gap-home-'));
|
|
for (let i = 0; i < count; i++) {
|
|
const dir = join(home, '.claude', 'skills', `s${i}`);
|
|
await mkdir(dir, { recursive: true });
|
|
await writeFile(join(dir, 'SKILL.md'), `---\nname: s${i}\ndescription: ${'a'.repeat(descLen)}\n---\nBody.\n`);
|
|
}
|
|
if (settings) {
|
|
await mkdir(join(home, '.claude'), { recursive: true });
|
|
await writeFile(join(home, '.claude', 'settings.json'), JSON.stringify(settings));
|
|
}
|
|
return home;
|
|
}
|
|
|
|
/** Run the GAP scanner with HOME pointed at `home`; an empty throwaway project. */
|
|
async function runGapWithHome(home) {
|
|
const project = await mkdtemp(join(tmpdir(), 'config-audit-gap-proj-'));
|
|
const original = process.env.HOME;
|
|
process.env.HOME = home;
|
|
try {
|
|
resetCounter();
|
|
const discovery = await discoverConfigFiles(project, { includeGlobal: true });
|
|
const result = await scan(project, discovery);
|
|
return result;
|
|
} finally {
|
|
process.env.HOME = original;
|
|
await rm(project, { recursive: true, force: true });
|
|
}
|
|
}
|
|
|
|
const hasLever = (result) =>
|
|
result.findings.some(f => f.scanner === 'GAP' && /disableBundledSkills/.test(f.recommendation || ''));
|
|
|
|
it('fires when the listing is over budget and the lever is un-pulled', async () => {
|
|
const home = await buildHome(17, 1000); // 17000 chars -> 4250 tok > 4000 budget
|
|
try {
|
|
const result = await runGapWithHome(home);
|
|
const f = result.findings.find(x => x.scanner === 'GAP' && /disableBundledSkills/.test(x.recommendation || ''));
|
|
assert.ok(f, `expected a disableBundledSkills finding; got: ${result.findings.map(x => x.title).join(' | ')}`);
|
|
assert.equal(f.severity, 'low');
|
|
assert.equal(f.category, 'token-efficiency');
|
|
} finally {
|
|
await rm(home, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('does NOT fire when the listing is under budget', async () => {
|
|
const home = await buildHome(3, 1000); // 3000 chars -> 750 tok < 4000
|
|
try {
|
|
const result = await runGapWithHome(home);
|
|
assert.equal(hasLever(result), false);
|
|
} finally {
|
|
await rm(home, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('does NOT fire when disableBundledSkills is already true in settings', async () => {
|
|
const home = await buildHome(17, 1000, { disableBundledSkills: true });
|
|
try {
|
|
const result = await runGapWithHome(home);
|
|
assert.equal(hasLever(result), false,
|
|
'lever already pulled in settings — should not recommend it again');
|
|
} finally {
|
|
await rm(home, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('does NOT fire when the CLAUDE_CODE_DISABLE_BUNDLED_SKILLS env var is set', async () => {
|
|
const home = await buildHome(17, 1000);
|
|
const originalEnv = process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS;
|
|
process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS = '1';
|
|
try {
|
|
const result = await runGapWithHome(home);
|
|
assert.equal(hasLever(result), false, 'env lever should suppress the recommendation');
|
|
} finally {
|
|
if (originalEnv === undefined) delete process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS;
|
|
else process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS = originalEnv;
|
|
await rm(home, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('treats CLAUDE_CODE_DISABLE_BUNDLED_SKILLS=0 as un-pulled (still fires)', async () => {
|
|
const home = await buildHome(17, 1000);
|
|
const originalEnv = process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS;
|
|
process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS = '0';
|
|
try {
|
|
const result = await runGapWithHome(home);
|
|
assert.equal(hasLever(result), true, '"0" means off — the lever is NOT pulled, so the finding should fire');
|
|
} finally {
|
|
if (originalEnv === undefined) delete process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS;
|
|
else process.env.CLAUDE_CODE_DISABLE_BUNDLED_SKILLS = originalEnv;
|
|
await rm(home, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|