test(digest): pin the script-anchored explainer path; catch declaration-prefixed writers

- Asserts $SOURCE_GSTACK_DIR/agents-digest path and forbids $(pwd)/agents-digest
  (the cycle-1 fix was revertible without failing anything).
- The laundered-assignment arm now matches local/export/declare/readonly/typeset
  prefixed assignments — the likeliest in-function writer shape in setup.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-08-29 05:42:57 +00:00
co-authored by Claude Fable 5
parent af264b8484
commit 760554d0ac
+6 -3
View File
@@ -56,8 +56,11 @@ describe('agents-digest', () => {
test('setup never copies the digest onto a user AGENTS.md (print-path only)', () => {
const setup = fs.readFileSync(path.join(ROOT, 'setup'), 'utf-8');
// The explainer arms print the digest path
expect(setup).toContain('agents-digest/gstack-AGENTS.md');
// The explainer arms print the digest path, anchored to the script's own
// directory — a $(pwd)-relative path prints a nonexistent file whenever
// setup is invoked from anywhere but the repo root.
expect(setup).toContain('$SOURCE_GSTACK_DIR/agents-digest/gstack-AGENTS.md');
expect(setup).not.toMatch(/\$\(pwd\)\/agents-digest/);
// …and no line may write to an AGENTS.md destination. Covers direct
// write verbs (cp/ln/mv/tee/install/rsync/dd/truncate), > and >>
// redirects, and the laundered form (dest="$proj/AGENTS.md"; … > "$dest")
@@ -69,7 +72,7 @@ describe('agents-digest', () => {
.filter((l) =>
/(^|\s|\|)(cp|ln|mv|tee|install|rsync|dd|truncate)\s[^#]*AGENTS\.md/.test(l)
|| />{1,2}\s*"?[^"\s]*AGENTS\.md/.test(l)
|| /^\s*\w+=[^#]*\/AGENTS\.md/.test(l));
|| /^\s*(?:(?:local|export|declare|readonly|typeset)\s+)?\w+=[^#]*\/AGENTS\.md/.test(l));
expect(writers).toEqual([]);
});