Cover the Kiro steering file in the equality check (the stripper is now shared, renamed to stripFrontmatter), and align its body with AGENTS.md: the 'Not lazy about' and 'Non-trivial logic' sentences were split into two paragraphs where the canonical body and the other four copies keep them as one. The improved check caught this on the freshly merged #6. Also add a small invariant canary: four load-bearing rule phrases must appear verbatim in both SKILL.md (the runtime source of truth) and AGENTS.md, catching a rule that lands in one but not the other even though the two files are intentionally different lengths. Verified: passes on main, exits 1 when a copy diverges or an invariant goes missing. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
66 lines
2.3 KiB
JavaScript
66 lines
2.3 KiB
JavaScript
#!/usr/bin/env node
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const root = path.join(__dirname, '..');
|
|
|
|
function read(relPath) {
|
|
return fs.readFileSync(path.join(root, relPath), 'utf8').replace(/\r\n/g, '\n').trim();
|
|
}
|
|
|
|
function stripFrontmatter(text) {
|
|
return text.replace(/^---\n[\s\S]*?\n---\n*/, '').trim();
|
|
}
|
|
|
|
const agents = read('AGENTS.md');
|
|
const canonical = agents.replace(/\n\n\(Yes, this file also applies[\s\S]*?\)$/, '').trim();
|
|
|
|
// Compact copies: same body as AGENTS.md, host-specific frontmatter stripped.
|
|
const copies = [
|
|
['.cursor/rules/ponytail.mdc', stripFrontmatter],
|
|
['.windsurf/rules/ponytail.md', text => text.trim()],
|
|
['.clinerules/ponytail.md', text => text.trim()],
|
|
['.github/copilot-instructions.md', text => text.trim()],
|
|
['.kiro/steering/ponytail.md', stripFrontmatter],
|
|
];
|
|
|
|
let failed = false;
|
|
|
|
for (const [relPath, normalize] of copies) {
|
|
const actual = normalize(read(relPath));
|
|
if (actual !== canonical) {
|
|
console.error(`${relPath} drifted from AGENTS.md`);
|
|
failed = true;
|
|
}
|
|
}
|
|
|
|
// SKILL.md is the runtime source of truth and is longer than the compact body,
|
|
// so it cannot be byte-compared. ponytail: canary, not full equality. Assert the
|
|
// load-bearing rules survive verbatim in both the source and AGENTS.md. Changing
|
|
// a rule's wording trips this, which is the reminder to propagate it everywhere.
|
|
// Upgrade path: generate the copies from SKILL.md if this ever misses a real drift.
|
|
const INVARIANTS = [
|
|
'naive heuristic', // ceiling-comment rule
|
|
'ONE runnable check', // test reflex
|
|
'flimsier algorithm', // robust-variant rule
|
|
'input validation at trust boundaries', // the "not lazy about" clause
|
|
];
|
|
|
|
const skill = read('skills/ponytail/SKILL.md');
|
|
const sources = [['skills/ponytail/SKILL.md', skill], ['AGENTS.md', agents]];
|
|
for (const phrase of INVARIANTS) {
|
|
for (const [label, text] of sources) {
|
|
if (!text.includes(phrase)) {
|
|
console.error(`${label} is missing rule invariant: "${phrase}"`);
|
|
failed = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (failed) {
|
|
console.error('Update the copied rule text, AGENTS.md, or SKILL.md so the shared rules match.');
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log(`Rule copies match AGENTS.md; ${INVARIANTS.length} rule invariants present in SKILL.md and AGENTS.md.`);
|