Skip to content

Instantly share code, notes, and snippets.

View Big-jpg's full-sized avatar
🎯
Focusing

Ross Farrell Big-jpg

🎯
Focusing
  • ATOM Supply
  • Perth, WA
View GitHub Profile
@Big-jpg
Big-jpg / ProjectSnapshot.ps1
Created May 26, 2025 15:13
Generate a complete LLM-ready snapshot of any project directory — includes monolithic source dump + ASCII tree structure. Supports offline use via PowerShell and filters out irrelevant/vendor/build files across Node, Python, Go, Rust, .NET, and more.
$projectFolder = ""
if (-not $projectFolder -or -not (Test-Path $projectFolder -PathType Container)) {
do {
$projectFolder = Read-Host "Enter the full path to your project folder"
if (-not (Test-Path $projectFolder -PathType Container)) {
Write-Host "❌ '$projectFolder' is not a valid directory." -ForegroundColor Red
}
} until (Test-Path $projectFolder -PathType Container)
}