diff --git a/src/app/cli/routing.ts b/src/app/cli/routing.ts index 9eaeb1d..7adcd5c 100644 --- a/src/app/cli/routing.ts +++ b/src/app/cli/routing.ts @@ -125,6 +125,7 @@ export async function executeDefaultAction(task?: string): Promise { // Resolve --task option to task text (direct execution, no interactive mode) const taskFromOption = opts.task as string | undefined; if (taskFromOption) { + selectOptions.skipTaskList = true; await selectAndExecuteTask(resolvedCwd, taskFromOption, selectOptions, agentOverrides); return; }