feat(voyage): S11 — NW2 part B, integrate opt-in --workflow flag

Make the bake-off-validated Workflow substrate (Arm B) reachable behind an
opt-in --workflow flag for /trekreview. Default Phase 5-6 path stays prose
to preserve the lower portability floor; --workflow raises the consumer
floor to Claude Code 2.1.154+ (the Workflow tool).

- arg-parser: --workflow added to trekreview boolean flags
- commands/trekreview.md: flag row + Phase 5 substrate-routing gate +
  new section 'Phase 5-6 via the Workflow substrate' (invocation contract,
  S10 gotchas, bake-off citation, auto/bypass residual as Known limitation)
- docs/command-modes.md: --workflow row in /trekreview table
- routes to existing scripts/trekreview-armB.workflow.mjs (byte-identical to
  the S10 part-B POSITIVE build); integration is pure routing, no script change

TDD: 8 new tests (arg-parser flag recognition + combine; command/doc prose
pins for route, opt-in posture, 2.1.154+ floor, bake-off evidence).
Suite 662 -> 670 (668 pass / 2 skip / 0 fail). plugin validate clean modulo
known root-CLAUDE.md warning. Resolves W1-narrow-wins-plan.md S11.
This commit is contained in:
Kjell Tore Guttormsen 2026-06-18 17:22:09 +02:00
commit 9fb536e2d8
5 changed files with 130 additions and 1 deletions

View file

@ -97,6 +97,23 @@ test('trekreview — unknown flag goes to unknown[]', () => {
assert.ok(r.unknown.includes('--mystery'));
});
// --- S11 (NW2 part B) — opt-in --workflow substrate flag ---
test('trekreview — --workflow boolean flag (NW2 opt-in substrate)', () => {
const r = parseArgs('--workflow', 'trekreview');
assert.equal(r.flags['--workflow'], true);
assert.ok(!r.unknown.includes('--workflow'),
'--workflow must be a recognized trekreview flag, not unknown[]');
});
test('trekreview — --workflow combines with --quick + --project', () => {
const r = parseArgs('--workflow --quick --project .claude/projects/x', 'trekreview');
assert.equal(r.flags['--workflow'], true);
assert.equal(r.flags['--quick'], true);
assert.equal(r.flags['--project'], '.claude/projects/x');
assert.deepEqual(r.unknown, []);
});
test('trekcontinue — empty args produce no flags and no positional', () => {
const r = parseArgs('', 'trekcontinue');
assert.equal(r.command, 'trekcontinue');