From 866aafcd76dbf301a1a035a18854b684d82132dd Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 4 Nov 2025 10:20:48 -0300 Subject: [PATCH] feat: add new prompts and clean up bucket creation code - Added CLI and IDE prompt files to the add-req.sh script - Removed unused bucket creation code from BotOrchestrator - Deleted unused create_bucket module from main.rs The changes streamline the codebase by removing unused bucket creation functionality while expanding the prompt file inclusion for better LLM context handling. --- add-req.sh | 2 ++ src/bot/mod.rs | 2 -- src/main.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/add-req.sh b/add-req.sh index 9d15a576..4a4a6498 100755 --- a/add-req.sh +++ b/add-req.sh @@ -8,6 +8,8 @@ echo "Consolidated LLM Context" > "$OUTPUT_FILE" prompts=( "./prompts/dev/platform/shared.md" + "./prompts/dev/platform/cli.md" + "./prompts/dev/platform/ide.md" "./Cargo.toml" ) diff --git a/src/bot/mod.rs b/src/bot/mod.rs index 79954cbd..d19f07f3 100644 --- a/src/bot/mod.rs +++ b/src/bot/mod.rs @@ -135,8 +135,6 @@ impl BotOrchestrator { ) -> Result<(), Box> { // TODO: Move logic to here after duplication refactor - let bucket_name = format!("{}.gbai", bot_name); - crate::create_bucket::create_bucket(&bucket_name)?; Ok(()) } diff --git a/src/main.rs b/src/main.rs index a7ef3712..19310b9d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -36,7 +36,6 @@ mod tools; mod web_automation; mod web_server; mod whatsapp; -mod create_bucket; use crate::auth::auth_handler; use crate::automation::AutomationService;