From b241fbb8b495f1bab5d7ae5de7e7924af407588b Mon Sep 17 00:00:00 2001 From: Gary Zhou Date: Fri, 20 Jun 2025 16:43:09 -0400 Subject: [PATCH] feat (cli): add an alias --id for --name param for goose session --resume command (#3018) --- crates/goose-cli/src/cli.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/goose-cli/src/cli.rs b/crates/goose-cli/src/cli.rs index 6a697182..8349be1a 100644 --- a/crates/goose-cli/src/cli.rs +++ b/crates/goose-cli/src/cli.rs @@ -45,7 +45,8 @@ struct Identifier { long, value_name = "NAME", help = "Name for the chat session (e.g., 'project-x')", - long_help = "Specify a name for your chat session. When used with --resume, will resume this specific session if it exists." + long_help = "Specify a name for your chat session. When used with --resume, will resume this specific session if it exists.", + alias = "id" )] name: Option,