From 0d504d6422bd95c24c9bd80c29d1d754b8a74dcf Mon Sep 17 00:00:00 2001 From: Jochen Date: Thu, 27 Nov 2025 16:36:40 +1100 Subject: [PATCH] temporarily disable codebase_fast_start it seems the llm gets "lazy" and assumes all the tool calls meant it's done most of the work. I need to revise this approach. --- crates/g3-cli/src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/crates/g3-cli/src/lib.rs b/crates/g3-cli/src/lib.rs index 0ea24ca..fb34c5a 100644 --- a/crates/g3-cli/src/lib.rs +++ b/crates/g3-cli/src/lib.rs @@ -204,6 +204,8 @@ use rustyline::DefaultEditor; use sha2::{Digest, Sha256}; use std::path::Path; use std::path::PathBuf; +use std::process::exit; +use sha2::{Digest, Sha256}; use tokio_util::sync::CancellationToken; use tracing::{error, info}; @@ -325,6 +327,10 @@ pub async fn run() -> Result<()> { .await; } + if cli.codebase_fast_start.is_some() { + print!("codebase_fast_start is temporarily disabled."); + exit(1); + } // Otherwise, continue with normal mode // Only initialize logging if not in retro mode