Releases: axzilla/stackpack
Releases · axzilla/stackpack
v0.1.0
Stackpack v0.0.1 - Initial Release 🎁
First release of Stackpack - a tool to transform GitHub repositories into AI-friendly single files.
Features
- Pack any GitHub repository into a single, LLM-optimized file
- CLI and Web interface at stackpack.xyz
- File filtering via glob patterns (*.go, *.md, etc.)
- Remote GitHub repository support
- Dark/Light mode on web
Installation
go install github.com/axzilla/stackpack/cmd/cli@latest
Usage Examples
# Pack remote repo
stackpack --remote=https://github.com/user/repo
# Pack local directory with specific files
stackpack --output=output.txt --include="*.go,*.md"
# Pack repo excluding images
stackpack --remote=https://github.com/user/repo --exclude="*.png,*.jpg"
Known Limitations
- Only simple glob patterns supported (no
/**/
patterns) - Remote repo support limited to public GitHub repositories
- No streaming support for large repositories yet
Breaking Changes
- None (initial release)
Bug Fixes
- None (initial release)