feat(voyage)!: rename commands, templates, fixtures for v4.0.0 [skip-docs]

This commit is contained in:
Kjell Tore Guttormsen 2026-05-05 14:13:44 +02:00
commit 47a4ad47d8
23 changed files with 99 additions and 98 deletions

View file

@ -1,5 +1,5 @@
// tests/lib/main-merge-gate.test.mjs
// Step 12 (plan-v2) — pin that commands/ultraexecute-local.md Phase 8
// Step 12 (plan-v2) — pin that commands/trekexecute.md Phase 8
// names the main-merge-gate lifecycle event, the decline + recovery
// surface, and the always-on gate prose.
@ -11,12 +11,12 @@ import { fileURLToPath } from 'node:url';
const HERE = dirname(fileURLToPath(import.meta.url));
const ROOT = join(HERE, '..', '..');
const CMD = readFileSync(join(ROOT, 'commands/ultraexecute-local.md'), 'utf-8');
const CMD = readFileSync(join(ROOT, 'commands/trekexecute.md'), 'utf-8');
test('Phase 8 names the main-merge-gate lifecycle event', () => {
assert.ok(
CMD.includes('main-merge-gate'),
'commands/ultraexecute-local.md should emit `main-merge-gate` from Phase 8',
'commands/trekexecute.md should emit `main-merge-gate` from Phase 8',
);
});