From 8372721607fd81ee13a261ede0d2687eb0aa62b3 Mon Sep 17 00:00:00 2001 From: nrslib <38722970+nrslib@users.noreply.github.com> Date: Tue, 24 Feb 2026 23:51:12 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20--task=20=E3=82=AA=E3=83=97=E3=82=B7?= =?UTF-8?q?=E3=83=A7=E3=83=B3=E3=81=A7=E3=81=AE=E7=9B=B4=E6=8E=A5=E5=AE=9F?= =?UTF-8?q?=E8=A1=8C=E6=99=82=E3=81=AB=20tasks.yaml=20=E3=81=B8=E8=A8=98?= =?UTF-8?q?=E9=8C=B2=E3=81=95=E3=82=8C=E3=81=AA=E3=81=84=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/cli/routing.ts | 1 + 1 file changed, 1 insertion(+) 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; }