From ea7aa670bf3ea400def186aed171cd1c78fc042c Mon Sep 17 00:00:00 2001 From: l0ng-ai <24760907+l0ng-ai@users.noreply.github.com> Date: Tue, 28 Jul 2026 21:39:51 +0800 Subject: [PATCH] fix(agents): repoint Pi's token-gate comment after the rebase Rebasing #211 onto #240 moved the session-id token gate out of resume_command and into the shared session_command_flags helper, so Pi's comment pointing at "the token gate above" no longer names anything. Comment only; the gate itself is unchanged. --- crates/tty7-core/src/core/cli_agent.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/tty7-core/src/core/cli_agent.rs b/crates/tty7-core/src/core/cli_agent.rs index f83ee2b9..63e392a4 100644 --- a/crates/tty7-core/src/core/cli_agent.rs +++ b/crates/tty7-core/src/core/cli_agent.rs @@ -204,7 +204,8 @@ impl CLIAgent { // session picker and `--continue`/`-c` just takes the newest // session; the flag that targets one by id is `--session // ` ("Use specific session file or partial UUID"). Its - // ids are uuidv7, so they clear the token gate above. + // ids are uuidv7, so they clear `session_command_flags`' token + // gate. CLIAgent::Pi => Some(format!("pi{flags} --session {session_id}")), _ => None, }