Created
February 12, 2025 16:55
-
-
Save llk23r/1bfe9fbcc28f158574a4765bd54d2ab6 to your computer and use it in GitHub Desktop.
Turn your codebase into an llm friendly context. Put this in your .zshrc.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
treepwd_content() { | |
local current_dir=$(pwd) | |
local output_file="codebase.txt" | |
echo "Current directory: $current_dir" > "$output_file" | |
echo "" >> "$output_file" | |
echo "Directory Structure:" >> "$output_file" | |
# Updated exclusion pattern to properly handle target directory and its contents | |
find . -type d \( -name node_modules -o -name venv -o -name .git -o -name .vscode -o -name .next -o -name .mypy_cache -o -name .venv -o -name .DS_Store -o -path '*/target/*' -o -name build -o -name src-tauri/target \) -prune -o -print | sed -e 's;[^/]*/;| ;g;s;| \([^|]\)/;\1;g' >> "$output_file" | |
echo "" >> "$output_file" | |
echo "File Contents:" >> "$output_file" | |
echo "" >> "$output_file" | |
echo "Using find command" | |
visible_files=() | |
while IFS= read -r -d $'\0' file; do | |
visible_files+=("$file") | |
done < <(find . -type f \ | |
-not -path '*/node_modules/*' \ | |
-not -path '*/build/*' \ | |
-not -path '*/dist/*' \ | |
-not -path '*/venv/*' \ | |
-not -path '*/.venv/*' \ | |
-not -path '*/.idea/*' \ | |
-not -path '*/release/*' \ | |
-not -path '*/.mypy_cache/*' \ | |
-not -path '*/.git/*' \ | |
-not -path '*/.*/*' \ | |
-not -path '*/.DS_Store' \ | |
-not -path '*/.vscode/*' \ | |
-not -path '*/__pycache__/*' \ | |
-not -path '*/coverage/*' \ | |
-not -path '*/target/*' \ | |
-not -path '*/src-tauri/target/*' \ | |
-not -path '*/*.ico' \ | |
-not -path '*/*.png' \ | |
-not -path '*/*.pdf' \ | |
-not -path '*/*.webp' \ | |
-not -path '*/*.wav' \ | |
-not -path '*/*.pyc' \ | |
-not -path '*/*.svg' \ | |
-not -path '*/*.icns' \ | |
-not -path '*/*.otf' \ | |
-not -path '*/*.zip' \ | |
-not -name 'codebase.txt' \ | |
-not -name 'ctx_hist.txt' \ | |
-not -name '*.log' \ | |
-not -name '*.ppt' \ | |
-not -path '*/gradle/*' \ | |
-not -name 'pnpm-lock.yaml' \ | |
-not -name 'package-lock.json' \ | |
-not -name 'yarn.lock' -print0) | |
declare -A processed_files | |
for file in "${visible_files[@]}"; do | |
echo "Processing find line: $file" | |
echo "Added to visible files: $(basename "$file")" | |
done | |
echo "Number of visible files: ${#visible_files[@]}" | |
for file in "${visible_files[@]}"; do | |
relative_path="${file#./}" | |
full_path="$current_dir/$relative_path" | |
echo "Checking file: $full_path" | |
if [ -f "$full_path" ] && [ "$full_path" != "$current_dir/$output_file" ]; then | |
if [ -z "${processed_files[$full_path]}" ]; then | |
echo "Processing file: $full_path" | |
echo "Adding contents of $full_path" | |
echo "File: $full_path" >> "$output_file" | |
echo '```' >> "$output_file" | |
cat "$full_path" >> "$output_file" | |
echo '```' >> "$output_file" | |
echo "" >> "$output_file" | |
processed_files[$full_path]=1 | |
fi | |
elif [ -d "$full_path" ]; then | |
echo "Skipping directory: $full_path" | |
else | |
echo "File not found or not accessible: $full_path" | |
fi | |
done | |
echo "Tree structure, current directory, and file contents have been saved to $output_file" | |
if [[ "$OSTYPE" == "darwin"* ]]; then | |
pbcopy < "$output_file" | |
echo "Contents have been copied to clipboard (macOS)." | |
fi | |
echo "File size of $output_file: $(wc -c < "$output_file") bytes" | |
echo "First few lines of $output_file:" | |
head -n 10 "$output_file" | |
echo "Last few lines of $output_file:" | |
tail -n 10 "$output_file" | |
} | |
# alias zzz='treepwd_content' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment