Skip to content

Stackpack v0.0.1 - Initial Release 🎁

Compare
Choose a tag to compare
@axzilla axzilla released this 10 Nov 08:13
· 1 commit to main since this 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)