gitextract_e4c47gl8/ ├── .github/ │ ├── FUNDING.yml │ ├── copilot-instructions.md │ └── workflows/ │ └── build-release-publish.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── config/ │ └── config.go ├── filesystem/ │ ├── defaultExcludes.go │ └── filesystem.go ├── git/ │ └── git.go ├── go.mod ├── go.sum ├── internal/ │ └── compressor/ │ ├── compressor.go │ ├── compressor_test.go │ ├── genericCompressor.go │ └── testdata/ │ ├── example.c │ ├── example.css │ ├── example.go │ ├── example.html │ ├── example.java │ ├── example.js │ ├── example.py │ ├── example.rs │ ├── example.sh │ ├── example.swift │ └── example_anon_func.js ├── main.go ├── pdf/ │ └── pdf.go ├── scripts/ │ └── install.sh ├── template/ │ └── template.go ├── token/ │ ├── anthropic.go │ └── token.go ├── tree-sitter-dev-plan.md ├── utils/ │ ├── output_manager.go │ └── utils.go └── web/ ├── crawler.go └── integration.go