From e4ea208d538c7ea2325279e1eb3c8cf58cf28d81 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 11 Jun 2026 02:31:00 +0000 Subject: [PATCH] =?UTF-8?q?docs(runner):=20fix=20resume=20example=20?= =?UTF-8?q?=E2=80=94=20exec=20has=20no=20'latest'=20session=20alias;=20use?= =?UTF-8?q?=20--continue=20(#3021)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude https://claude.ai/code/session_018zaP8vUfTAsrE38L6h6fw5 --- docs/AGENT_RUNNER.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/AGENT_RUNNER.md b/docs/AGENT_RUNNER.md index b2035d02..8e26dd40 100644 --- a/docs/AGENT_RUNNER.md +++ b/docs/AGENT_RUNNER.md @@ -61,10 +61,12 @@ tmux new-session -d -s "issue-" \ codewhale exec --auto --output-format stream-json \"\$(cat)\" 2>&1 | tee /tmp/issue-.log" ``` -For resuming an interrupted run: +For resuming an interrupted run (`--continue` picks up the most recent +session for this workspace; `--resume latest` only exists in the interactive +TUI): ```bash -codewhale exec --auto --output-format stream-json --resume latest "..." +codewhale exec --auto --output-format stream-json --continue "..." ``` ### 5. Verify