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

@ -15,10 +15,10 @@ const ROOT = join(HERE, '..', '..');
function read(rel) { return readFileSync(join(ROOT, rel), 'utf-8'); }
const COMMANDS = [
'commands/ultrabrief-local.md',
'commands/ultraresearch-local.md',
'commands/ultraplan-local.md',
'commands/ultraexecute-local.md',
'commands/trekbrief.md',
'commands/trekresearch.md',
'commands/trekplan.md',
'commands/trekexecute.md',
];
for (const cmdPath of COMMANDS) {
@ -39,10 +39,10 @@ for (const cmdPath of COMMANDS) {
});
}
test('commands/ultraexecute-local.md mentions MAIN_MERGE_GATE', () => {
const text = read('commands/ultraexecute-local.md');
test('commands/trekexecute.md mentions MAIN_MERGE_GATE', () => {
const text = read('commands/trekexecute.md');
assert.ok(
text.includes('MAIN_MERGE_GATE'),
'commands/ultraexecute-local.md should name MAIN_MERGE_GATE — the only boundary that always pauses regardless of --gates',
'commands/trekexecute.md should name MAIN_MERGE_GATE — the only boundary that always pauses regardless of --gates',
);
});