mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-11 07:29:00 +02:00
gstack's design skills now write DESIGN.md in the open DESIGN.md format and
read tokens from it. {{DESIGN_MD_CHECK}} renders the format check through
bin/gstack-design-md.ts: design-consultation's Phase 0 settles the format once
(spec → update tokens in the front matter; legacy without a marker → one
AskUserQuestion: convert with a .legacy.bak, keep the legacy file, or start
fresh; the answer is written into the file as the format marker so no skill
asks again; a marker already present is obeyed silently; unknown → prose;
missing → Phase 6 writes one). Phase 6's template is the spec form: YAML front
matter with name, description, and exactly the five token groups (colors,
typography.display/body/label/mono with fontFeature: tnum on mono, rounded,
spacing, components with {path} references), then Overview (Creative North
Star, product context, mode per surface, references, key characteristics),
Colors (opening with the Restrained / Committed / Full palette / Drenched
strategy), Typography, Layout, Elevation & Depth, Shapes, Components, Do's and
Don'ts, plus gstack's Motion and Decisions Log as extras; the template ends
with a check that the file parses as `spec`.
design-review runs the `:calibrate` form in Setup: a spec file's flat tokens
are the calibration source (a value present in the tokens is never a finding),
the marker is respected, and conversion is never offered there; its DESIGN.md
export writes the spec form. design-html's token extraction writes the spec
form and respects an existing choice. review/design-checklist.md category 5 and
ship's review-lite step 1 name `gstack-design-md tokens` as the calibration
source; plan-design-review Pass 5 cites tokens by path when front matter
exists.
The contract owns the bin's DESIGN_MD_MARKER / REASON / WRITTEN / BACKUP
lines; the contract test's pending list closes. Carve guard: design-
consultation skeleton 66,500 → 67,500 (measured 67,014; +1,508 B against the
1.5 KB cap). Codex and Factory ship goldens refreshed (review-lite step 1).
Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
103 lines
5.5 KiB
TypeScript
103 lines
5.5 KiB
TypeScript
/**
|
|
* lib/design-detect-contract.ts is the one owner of the detector vocabulary.
|
|
* Forward direction: every sentinel-shaped token (IMPECCABLE_*, DETECT_*,
|
|
* DESIGN_MD_*, DOM_DUMP_*) that appears in something the agent reads
|
|
* (generated SKILL.md files, sections, the design checklist, the resolvers)
|
|
* must be a contract constant, so prose cannot invent a sentinel the bin never
|
|
* prints. Reverse direction (every printable sentinel is mentioned somewhere
|
|
* the agent reads) lands with the DESIGN_DETECTOR resolver wiring.
|
|
*/
|
|
import { describe, test, expect } from 'bun:test';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import { spawnSync } from 'child_process';
|
|
import { SENTINEL, TESTED_ENGINE_VERSIONS, ADVISORY_RULE_IDS, DETECT_LIMITS, DETECT_EXIT_ECHO, SELF_DESCRIBING_SENTINELS } from '../lib/design-detect-contract';
|
|
import { ADVISORY_RULE_IDS as _a } from '../lib/design-detect-contract';
|
|
import { catalogEntry } from '../lib/design-catalog';
|
|
|
|
const ROOT = path.join(import.meta.dir, '..');
|
|
const TOKEN = /\b(IMPECCABLE_[A-Z_]+|DETECT_[A-Z_]+|DESIGN_MD_[A-Z_]+|DOM_DUMP_[A-Z_]+|DESIGN_DETECTOR_[A-Z_]+|DESIGN_DETECT_[A-Z_]+)\b/g;
|
|
// Things that look like sentinels but are env vars / flags the prose legitimately names.
|
|
// Env vars, flags, and resolver placeholder names the prose legitimately names.
|
|
const NOT_SENTINELS = new Set(['IMPECCABLE_BIN', 'IMPECCABLE_HOME', 'IMPECCABLE_HOOK_DISABLED', 'DESIGN_DETECT_TIMEOUT_MS', 'DESIGN_MD_CHECK', 'DESIGN_DETECTOR']);
|
|
|
|
function* agentReadableFiles(): Generator<string> {
|
|
const skip = new Set(['node_modules', '.git', 'dist', 'build', 'test', 'docs', '.context', '.claude', '.agents', '.factory', '.cursor', '.kiro', '.opencode', '.openclaw', '.hermes', '.slate', '.gstack', '.gbrain', '.conductor']);
|
|
const stack = [ROOT];
|
|
while (stack.length) {
|
|
const cur = stack.pop()!;
|
|
for (const ent of fs.readdirSync(cur, { withFileTypes: true })) {
|
|
if (ent.isSymbolicLink()) continue;
|
|
const full = path.join(cur, ent.name);
|
|
if (ent.isDirectory()) { if (!skip.has(ent.name) || cur !== ROOT) { if (!skip.has(ent.name)) stack.push(full); } continue; }
|
|
if (/\.(md|tmpl|ts)$/.test(ent.name) && (full.includes(`${path.sep}scripts${path.sep}resolvers${path.sep}`) || ent.name.endsWith('.md') || ent.name.endsWith('.tmpl'))) yield full;
|
|
}
|
|
}
|
|
}
|
|
|
|
describe('contract shape', () => {
|
|
test('sentinel values are unique, uppercase, and equal their own prefix family', () => {
|
|
const values = Object.values(SENTINEL);
|
|
expect(new Set(values).size).toBe(values.length);
|
|
for (const v of values) expect(v).toMatch(/^[A-Z][A-Z_]+$/);
|
|
});
|
|
|
|
test('tested engine versions and advisory ids are consistent with the fixtures and catalog', () => {
|
|
const meta = JSON.parse(fs.readFileSync(path.join(ROOT, 'test', 'fixtures', 'impeccable-captures.meta.json'), 'utf-8'));
|
|
expect(TESTED_ENGINE_VERSIONS).toContain(meta.engine.version);
|
|
for (const id of ADVISORY_RULE_IDS) {
|
|
const e = catalogEntry(id);
|
|
expect(e).toBeDefined();
|
|
expect(e!.tier).toBe('possible');
|
|
expect(e!.impact).toBe('polish');
|
|
}
|
|
expect(_a).toBe(ADVISORY_RULE_IDS);
|
|
});
|
|
|
|
test('limits are positive and the exit echo carries the DETECT_EXIT_CODE sentinel', () => {
|
|
expect(DETECT_LIMITS.timeoutMs).toBeGreaterThan(0);
|
|
expect(DETECT_LIMITS.batch).toBeGreaterThan(0);
|
|
expect(DETECT_LIMITS.findings).toBeGreaterThan(DETECT_LIMITS.topLocations);
|
|
expect(DETECT_EXIT_ECHO).toBe(`; echo "${SENTINEL.DETECT_EXIT_CODE}=$?"`);
|
|
});
|
|
|
|
test('module is pure: no imports, loading prints nothing', () => {
|
|
const file = path.join(ROOT, 'lib', 'design-detect-contract.ts');
|
|
expect(fs.readFileSync(file, 'utf-8')).not.toMatch(/^import /m);
|
|
const r = spawnSync(process.execPath, ['--no-env-file', '-e', `await import(${JSON.stringify(file)})`], { encoding: 'utf-8', timeout: 30_000 });
|
|
expect(r.status).toBe(0);
|
|
expect(r.stdout + r.stderr).toBe('');
|
|
});
|
|
});
|
|
|
|
describe('every printable sentinel is mentioned somewhere the agent reads', () => {
|
|
const PENDING = new Set<string>();
|
|
test('generated SKILL.md files, sections, or the checklist name each one', () => {
|
|
const corpus = [...agentReadableFiles()].filter(f => !f.includes(`${path.sep}scripts${path.sep}`)).map(f => fs.readFileSync(f, 'utf-8')).join('\n');
|
|
const selfDescribing = new Set(SELF_DESCRIBING_SENTINELS);
|
|
const missing = Object.values(SENTINEL).filter(v => !PENDING.has(v) && !selfDescribing.has(v) && !corpus.includes(v));
|
|
expect(missing).toEqual([]);
|
|
// self-describing ones are still contract-owned and still printed by the bin
|
|
for (const v of SELF_DESCRIBING_SENTINELS) expect(Object.values(SENTINEL)).toContain(v);
|
|
});
|
|
});
|
|
|
|
describe('every sentinel-shaped token the agent can read exists in the contract', () => {
|
|
test('generated docs, sections, templates, resolvers, and the checklist', () => {
|
|
const known = new Set<string>(Object.values(SENTINEL));
|
|
const offenders: string[] = [];
|
|
// Resolvers are scanned for the strings they render, not their identifiers:
|
|
// an exported contract name (DETECT_EXIT_ECHO, DETECT_LIMITS) is not a sentinel.
|
|
for (const file of agentReadableFiles()) {
|
|
if (file.includes(`${path.sep}scripts${path.sep}`)) continue;
|
|
const text = fs.readFileSync(file, 'utf-8');
|
|
for (const m of text.matchAll(TOKEN)) {
|
|
const tok = m[1];
|
|
if (known.has(tok) || NOT_SENTINELS.has(tok)) continue;
|
|
offenders.push(`${path.relative(ROOT, file)}: ${tok}`);
|
|
}
|
|
}
|
|
expect(offenders).toEqual([]);
|
|
});
|
|
});
|