From 799b4ced8e828f5693045d7d80647247c86c1596 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Fri, 6 Feb 2026 16:12:33 +1100 Subject: [PATCH] Remove auto-submit status prompt from /project command The /project command was auto-invoking a status report ("what is the current state of the project?") as the first user message after loading project files. This was inconsistent with the --project flag behavior, which only loads files and displays status without auto-prompting. Removed the auto-submit lines so /project now behaves identically to the --project CLI flag: load files, set context, display status, done. --- crates/g3-cli/src/commands.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/g3-cli/src/commands.rs b/crates/g3-cli/src/commands.rs index cbd0657..283fa7b 100644 --- a/crates/g3-cli/src/commands.rs +++ b/crates/g3-cli/src/commands.rs @@ -367,10 +367,6 @@ pub async fn handle_command( // Store active project *active_project = Some(project); - - // Auto-submit the project status prompt - let prompt = "what is the current state of the project? and what is your suggested next best step?"; - execute_task_with_retry(agent, prompt, show_prompt, show_code, output).await; } else { output.print("❌ Failed to set project content in agent context."); }