fix: retire legacy command shims from default surface

This commit is contained in:
Affaan Mustafa
2026-04-29 23:47:19 -04:00
committed by Affaan Mustafa
parent affbd33485
commit 06f9eca8e2
40 changed files with 135 additions and 102 deletions

View File

@@ -59,7 +59,7 @@ test('parseWorkerTask extracts objective and seeded overlays', () => {
'',
'## Seeded Local Overlays',
'- `scripts/orchestrate-worktrees.js`',
'- `commands/orchestrate.md`',
'- `commands/multi-workflow.md`',
'',
'## Objective',
'Verify seeded files and summarize status.'
@@ -67,7 +67,7 @@ test('parseWorkerTask extracts objective and seeded overlays', () => {
assert.deepStrictEqual(task.seedPaths, [
'scripts/orchestrate-worktrees.js',
'commands/orchestrate.md'
'commands/multi-workflow.md'
]);
assert.strictEqual(task.objective, 'Verify seeded files and summarize status.');
});

View File

@@ -299,7 +299,7 @@ test('executePlan rolls back partial setup when orchestration fails mid-run', ()
workerName: 'Docs',
workerSlug: 'docs',
worktreePath: '/tmp/ecc-rollback-docs',
seedPaths: ['commands/orchestrate.md'],
seedPaths: ['commands/multi-workflow.md'],
gitArgs: ['worktree', 'add', '-b', 'orchestrator-rollback-test-docs', '/tmp/ecc-rollback-docs', 'HEAD'],
launchCommand: 'echo run'
}