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.
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-11-04 10:20:48 -03:00
parent 1e43c2c2e0
commit 8f0f2d829a
3 changed files with 2 additions and 3 deletions

View file

@ -8,6 +8,8 @@ echo "Consolidated LLM Context" > "$OUTPUT_FILE"
prompts=( prompts=(
"./prompts/dev/platform/shared.md" "./prompts/dev/platform/shared.md"
"./prompts/dev/platform/cli.md"
"./prompts/dev/platform/ide.md"
"./Cargo.toml" "./Cargo.toml"
) )

View file

@ -135,8 +135,6 @@ impl BotOrchestrator {
) -> Result<(), Box<dyn std::error::Error + Send + Sync>> { ) -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
// TODO: Move logic to here after duplication refactor // TODO: Move logic to here after duplication refactor
let bucket_name = format!("{}.gbai", bot_name);
crate::create_bucket::create_bucket(&bucket_name)?;
Ok(()) Ok(())
} }

View file

@ -36,7 +36,6 @@ mod tools;
mod web_automation; mod web_automation;
mod web_server; mod web_server;
mod whatsapp; mod whatsapp;
mod create_bucket;
use crate::auth::auth_handler; use crate::auth::auth_handler;
use crate::automation::AutomationService; use crate::automation::AutomationService;