Skip to content

Releases: axzilla/stackpack

v0.1.0

18 Nov 08:13
Compare
Choose a tag to compare

First release of Stackpack - a tool to transform GitHub repositories into AI-friendly single files.

Changes

  • Add GitHub token header to increase web apps rate limit to 5000/h

Installation

go install github.com/axzilla/stackpack/cmd/cli@latest

Stackpack v0.0.1 - Initial Release 🎁

10 Nov 08:13
Compare
Choose a tag to compare

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)