fix(gen): small config scrubs — openclaw blobs to real files, setup host drift, dead artifacts

- The three openclaw markdown blobs hardcoded inside gen-skill-docs.ts (which
  silently reverted any hand edit to their tracked outputs on regen) move to
  openclaw/templates/*.md source files; output shasums byte-identical.
- setup's --host allowlists gain cursor + slate — both fully registered hosts
  with generated output, but './setup --host cursor' exited 1 because two
  hand-rolled lists in setup had drifted from hosts/index.ts.
- scripts/proactive-suggestions.json deleted: 31KB regenerated on every run,
  read by nobody (the catalog-trim design's reader was never built); its
  emitter and three determinism tests (which guaranteed a file nothing reads
  didn't churn) retired with stays-retired pins.
- claude/SKILL.md.tmpl deleted: a complete 8.9KB skill that never generated
  output (directory name collides with the host id 'claude'), in no registry.
  Recoverable from git if ever wanted under a non-colliding name.
- openclaw's frozen extraFields.version '0.15.2.0' stamp dropped;
  includeSkills: [] no-ops omitted (the generator treats [] as absent);
  llms.txt 55 -> 54 skills.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-08-14 21:12:22 -07:00
co-authored by Claude Fable 5
parent 5586f57c62
commit b60fe8bd64
15 changed files with 84 additions and 842 deletions
+8 -41
View File
@@ -269,48 +269,15 @@ Original body content here.
});
});
describe('proactive-suggestions.json determinism (regression for v1.45.0.0 CI freshness fail)', () => {
test('committed JSON keys are alphabetically sorted', () => {
// Reads the actual committed file at scripts/proactive-suggestions.json
// and verifies sort order. Catches regressions to non-sorted output.
describe('proactive-suggestions.json stays retired', () => {
test('the generator no longer emits scripts/proactive-suggestions.json', () => {
// The aggregated routing registry was removed (no consumer ever read it).
// If someone re-adds the emitter, this pins the decision to delete it —
// reintroduce only with an actual consumer, and restore the determinism
// tests (sorted keys, root keyed as "gstack", no timestamp fields) that
// lived here before.
const fs = require('fs');
const path = require('path');
const json = JSON.parse(
fs.readFileSync(path.join(__dirname, '..', 'scripts', 'proactive-suggestions.json'), 'utf-8'),
);
const keys = Object.keys(json.skills);
const sorted = [...keys].sort();
expect(keys).toEqual(sorted);
});
test('root skill is keyed as "gstack" (not the checkout directory name)', () => {
// Catches the bug where the root SKILL.md.tmpl's catalog parts get
// registered under the directory basename ("seville-v3" in a Conductor
// worktree, "gstack" on CI).
const fs = require('fs');
const path = require('path');
const json = JSON.parse(
fs.readFileSync(path.join(__dirname, '..', 'scripts', 'proactive-suggestions.json'), 'utf-8'),
);
expect(json.skills).toHaveProperty('gstack');
// The directory the test runs in must NOT appear as a key.
const repoDir = path.basename(path.resolve(__dirname, '..'));
if (repoDir !== 'gstack') {
expect(json.skills).not.toHaveProperty(repoDir);
}
});
test('schema + catalog_mode + note fields are stable', () => {
const fs = require('fs');
const path = require('path');
const json = JSON.parse(
fs.readFileSync(path.join(__dirname, '..', 'scripts', 'proactive-suggestions.json'), 'utf-8'),
);
expect(json).toHaveProperty('$schema');
expect(json.catalog_mode).toBe('trim');
expect(typeof json.note).toBe('string');
// No timestamp field — those cause flapping CI freshness checks.
expect(json).not.toHaveProperty('generated_at');
expect(json).not.toHaveProperty('timestamp');
expect(fs.existsSync(path.join(__dirname, '..', 'scripts', 'proactive-suggestions.json'))).toBe(false);
});
});