72 lines
1.8 KiB
Bash
Executable file
72 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
|
OUTPUT_FILE="$SCRIPT_DIR/prompt.out"
|
|
rm $OUTPUT_FILE
|
|
echo "Consolidated LLM Context" > "$OUTPUT_FILE"
|
|
|
|
prompts=(
|
|
"../../prompts/dev/shared.md"
|
|
"../../Cargo.toml"
|
|
"../../prompts/dev/fix.md"
|
|
#"../../prompts/dev/generation.md"
|
|
)
|
|
|
|
for file in "${prompts[@]}"; do
|
|
cat "$file" >> "$OUTPUT_FILE"
|
|
echo "" >> "$OUTPUT_FILE"
|
|
done
|
|
|
|
dirs=(
|
|
#"auth"
|
|
"automation"
|
|
"basic"
|
|
"bot"
|
|
#"channels"
|
|
#"config"
|
|
"context"
|
|
#"email"
|
|
"file"
|
|
#"llm"
|
|
#"llm_legacy"
|
|
#"org"
|
|
"session"
|
|
"shared"
|
|
#"tests"
|
|
"tools"
|
|
#"web_automation"
|
|
#"whatsapp"
|
|
)
|
|
dirs=() # disabled.
|
|
for dir in "${dirs[@]}"; do
|
|
find "$PROJECT_ROOT/src/$dir" -name "*.rs" | while read file; do
|
|
cat "$file" >> "$OUTPUT_FILE"
|
|
echo "" >> "$OUTPUT_FILE"
|
|
done
|
|
done
|
|
|
|
# Extract unique .rs file paths from error messages and append them
|
|
cargo build --message-format=short 2>&1 | grep -E 'error' | grep -oE '[^ ]+\.rs' | sort -u | while read -r file_path; do
|
|
# Convert to absolute path if relative
|
|
if [[ ! "$file_path" = /* ]]; then
|
|
file_path="$PROJECT_ROOT/$file_path"
|
|
fi
|
|
# Check if file exists and append it
|
|
if [[ -f "$file_path" ]]; then
|
|
echo "=== Appending error file: $file_path ===" >> "$OUTPUT_FILE"
|
|
cat "$file_path" >> "$OUTPUT_FILE"
|
|
echo -e "\n\n" >> "$OUTPUT_FILE"
|
|
fi
|
|
done
|
|
|
|
# Also append the specific files you mentioned
|
|
cat "$PROJECT_ROOT/src/main.rs" >> "$OUTPUT_FILE"
|
|
cat "$PROJECT_ROOT/src/basic/keywords/hear_talk.rs" >> "$OUTPUT_FILE"
|
|
cat "$PROJECT_ROOT/templates/annoucements.gbai/annoucements.gbdialog/start.bas" >> "$OUTPUT_FILE"
|
|
|
|
echo "" >> "$OUTPUT_FILE"
|
|
|
|
|
|
|
|
cargo build --message-format=short 2>&1 | grep -E 'error' >> "$OUTPUT_FILE"
|