diff --git a/src/commands/auth.rs b/src/commands/auth.rs
index 9c09be9..1108caf 100644
--- a/src/commands/auth.rs
+++ b/src/commands/auth.rs
@@ -109,7 +109,7 @@ fn execute_auth_login_noninteractive(
println!(
"{} API key saved to {}",
"✅".green().bold(),
- "~/.cora/auth.toml".green()
+ "~/.codecora/cora-code/auth.toml".green()
);
println!(
"{} Provider: {} | Model: {} | Base: {}",
@@ -336,7 +336,7 @@ fn print_saved(provider: &str, model: &str, base_url: &str) {
println!(
"{} API key saved to {}",
"✅".green().bold(),
- "~/.cora/auth.toml".green()
+ "~/.codecora/cora-code/auth.toml".green()
);
println!(
"{} Provider: {} | Model: {} | Base: {}",
diff --git a/src/config/loader.rs b/src/config/loader.rs
index 7e168d2..bdc50f3 100644
--- a/src/config/loader.rs
+++ b/src/config/loader.rs
@@ -54,7 +54,7 @@ pub fn find_cora_file(start: &Path) -> std::result::Result