/** * Cross-skill taxonomy alignment. The canonical taxonomy lives in * lib/redact-patterns.ts (single source of truth). /spec and /cso both reference * it by pointer rather than inlining the full catalog (size discipline). This * test guards that the recognizable HIGH-tier prefixes stay present in /cso's * archaeology prose. (A fourth test covered the resolver-generated taxonomy * table; that generator was deleted as dead code — no template ever used it.) */ import { describe, test, expect } from "bun:test"; import * as fs from "fs"; import * as path from "path"; const ROOT = path.resolve(import.meta.dir, ".."); // cso is carved (skeleton + sections/audit-phases.md). The Secrets Archaeology // prose + secret prefixes moved into the section; check the union so relocated // content still counts. function unionSkill(skill: string): string { let t = fs.readFileSync(path.join(ROOT, skill, "SKILL.md"), "utf-8"); const dir = path.join(ROOT, skill, "sections"); if (fs.existsSync(dir)) { for (const f of fs.readdirSync(dir).sort()) { if (f.endsWith(".md") && !f.endsWith(".md.tmpl")) t += "\n" + fs.readFileSync(path.join(dir, f), "utf-8"); } } return t; } const CSO = unionSkill("cso"); describe("cso/spec taxonomy alignment", () => { test("cso archaeology names the recognizable HIGH-tier prefixes", () => { for (const s of ["AKIA", "ghp_", "sk-ant-", "BEGIN"]) { expect(CSO).toContain(s); } }); test("cso points to lib/redact-patterns.ts as the single source of truth", () => { expect(CSO).toContain("lib/redact-patterns.ts"); }); test("cso keeps its git-history archaeology (different use case, not replaced)", () => { expect(CSO).toContain("git log -p --all"); expect(CSO).toContain("Secrets Archaeology"); }); });