From 447eff2634f49218a010c1728f8e5fb263ff9a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20=C5=A0=C4=87eki=C4=87?= Date: Thu, 16 Jul 2026 21:35:27 +0200 Subject: [PATCH 1/2] docs(mobile): fix kilo run argument order in workflow launch command --- apps/mobile/.kilo/MOBILE_WORKFLOW.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/mobile/.kilo/MOBILE_WORKFLOW.md b/apps/mobile/.kilo/MOBILE_WORKFLOW.md index 942fe2e805..8b523a4a22 100644 --- a/apps/mobile/.kilo/MOBILE_WORKFLOW.md +++ b/apps/mobile/.kilo/MOBILE_WORKFLOW.md @@ -81,10 +81,10 @@ Launch the orchestrator in the current tmux session with a unique, descriptive w tmux new-window -t \ -n -orchestrator \ -c /apps/mobile \ - 'kilo run --interactive --model kilo/kilo-auto/frontier --title " orchestrator" --file "Execute the approved mobile plan in the attached handoff. Own implementation through the completion gate."' + 'kilo run "Execute the approved mobile plan in the attached handoff. Own implementation through the completion gate." --interactive --model kilo/kilo-auto/frontier --title " orchestrator" --file ' ``` -Use `kilo run --interactive` exactly as shown: no `--continue`, `--session`, or `--variant`, because the orchestrator must be a fresh session on Kilo Auto Frontier with its default reasoning setting. Verify the tmux window started, then report the window name, worktree paths, model, and handoff path to the user. The orchestrator deletes the handoff file after ingesting it. +Use `kilo run --interactive` exactly as shown, with the message positional before the flags: `--file` accepts multiple values and consumes a trailing message as a file path, which fails with `File not found`. Do not add `--continue`, `--session`, or `--variant`, because the orchestrator must be a fresh session on Kilo Auto Frontier with its default reasoning setting. Verify the tmux window started, then report the window name, worktree paths, model, and handoff path to the user. The orchestrator deletes the handoff file after ingesting it. ## Roles From 891201a2832ff97981a3f66347a4415beec1cb36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20=C5=A0=C4=87eki=C4=87?= Date: Fri, 17 Jul 2026 09:40:00 +0200 Subject: [PATCH 2/2] docs(mobile): switch workflow orchestrator to claude-sonnet-5 high --- apps/mobile/.kilo/MOBILE_WORKFLOW.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/mobile/.kilo/MOBILE_WORKFLOW.md b/apps/mobile/.kilo/MOBILE_WORKFLOW.md index 8b523a4a22..bfef7fd4e7 100644 --- a/apps/mobile/.kilo/MOBILE_WORKFLOW.md +++ b/apps/mobile/.kilo/MOBILE_WORKFLOW.md @@ -81,10 +81,10 @@ Launch the orchestrator in the current tmux session with a unique, descriptive w tmux new-window -t \ -n -orchestrator \ -c /apps/mobile \ - 'kilo run "Execute the approved mobile plan in the attached handoff. Own implementation through the completion gate." --interactive --model kilo/kilo-auto/frontier --title " orchestrator" --file ' + 'kilo run "Execute the approved mobile plan in the attached handoff. Own implementation through the completion gate." --interactive --model kilo/anthropic/claude-sonnet-5 --variant high --title " orchestrator" --file ' ``` -Use `kilo run --interactive` exactly as shown, with the message positional before the flags: `--file` accepts multiple values and consumes a trailing message as a file path, which fails with `File not found`. Do not add `--continue`, `--session`, or `--variant`, because the orchestrator must be a fresh session on Kilo Auto Frontier with its default reasoning setting. Verify the tmux window started, then report the window name, worktree paths, model, and handoff path to the user. The orchestrator deletes the handoff file after ingesting it. +Use `kilo run --interactive` exactly as shown, with the message positional before the flags: `--file` accepts multiple values and consumes a trailing message as a file path, which fails with `File not found`. Do not add `--continue` or `--session`, because the orchestrator must be a fresh session on Claude Sonnet 5 at high reasoning effort. Verify the tmux window started, then report the window name, worktree paths, model, and handoff path to the user. The orchestrator deletes the handoff file after ingesting it. ## Roles