Merge branch 'main' into Solvely/execute-phase-active-flags

This commit is contained in:
Colin
2026-03-20 13:52:26 -04:00
138 changed files with 17564 additions and 1045 deletions

View File

@@ -51,7 +51,11 @@ describe('execute-phase command: active flags are explicit', () => {
'context should forbid inferring flags from documentation alone'
);
assert.ok(
content.includes('If neither token appears, run the standard full-phase execution flow'),
content.includes('`--interactive` is active only if the literal `--interactive` token is present in `$ARGUMENTS`'),
'context should apply the same active-flag rule to --interactive'
);
assert.ok(
content.includes('If none of these tokens appear, run the standard full-phase execution flow'),
'context should define the no-flags fallback behavior'
);
});