Meet Shelby, your friendly library assistant.
Organize the PDFs and books you already have scattered across GitHub.
If you use GitHub, you've probably hit this: one monolithic "books" repo with hundreds of PDFs, or files scattered across random repos and gists. Eventually you hit GitHub's 100MB limit, or you bolt on Git LFS and discover it's expensive and annoying for a personal library.
Once PDFs land in git history, every clone stays heavy forever. Even after you delete the files, git history never forgets.
shelfctl solves this by storing files as GitHub Release assets (not git commits) and keeping only metadata in a simple catalog.yml. That means you can split a bloated repo into topic-based shelves, migrate books out of existing repos, and search + download on demand (without moving your library to a new service).
Warning
Deleting a PDF from a git repo doesn't remove it from git history. Clones still carry the weight. shelfctl avoids this entirely by storing documents as Release assets (only metadata is versioned).
Your GitHub account already gives you reliable distribution and storage primitives. shelfctl turns them into a library:
- Release assets for the PDFs/EPUBs
catalog.ymlfor searchable metadata- one repo per shelf (
shelf-programming,shelf-history, …) - Migration tools to split bloated repos and reorganize existing collections
Tip
Already have PDFs committed in git? shelfctl can scan and migrate them into shelves without manual re-uploads:
shelfctl migrate scan --source you/old-books-repo > queue.txtThree ways to browse your library:
- Interactive TUI - visual browser with keyboard navigation and search
- Static HTML index - web-based viewer with tag filters and search (works offline)
- Scriptable CLI - pipe, filter, automate, and integrate with shell workflows
Your library stays portable, backed by normal git repos. Free by default (only pay if you choose Git LFS or exceed GitHub plan limits).
The tradeoff:
| Approach | Git History | Clone Weight | Per-File Download | Cost |
|---|---|---|---|---|
| Git commit | Bloats forever | Heavy (even after deleting files) | Possible, but awkward | Free |
| Git LFS | Clean | Still heavier than needed | Possible, but awkward | Paid storage/bandwidth |
| Release asset | Clean | Light | Yes (native) | Free* |
*Free by default. You only pay if you choose LFS or exceed GitHub plan limits.
Why Release assets:
- Git history stays clean (only metadata is versioned)
- Documents live outside version control entirely
- Download individual files on-demand from GitHub's CDN
Fetch a single book without cloning a repo or pulling a whole archive.
shelfctl open <book-id> downloads only that file from GitHub's CDN and opens it. Your library can be huge, but you only download what you actually read.
When you annotate or highlight PDFs in your reader, those changes are saved to your local cache. Use shelfctl sync to upload your annotated version back to GitHub (replaces the original, no versioning). From the TUI, press s to sync selected books. Your annotations stay with the book and sync across machines.
Files are stored as GitHub Release assets, not git commits. Your repository stays lightweight and git history never bloats.
Download and open a single book without cloning the entire repository. Your library can be huge, but you only fetch what you need.
Built-in tools to scan existing repos, reorganize into topic-based shelves, and migrate files automatically. No manual re-uploads required.
Generate a web-based library viewer with cover thumbnails, tag filters, and live search. Works offline in any browser without running shelfctl.
shelfctl (no arguments) launches an interactive visual hub. shelfctl --help lists all CLI commands. Every command supports --json output and --no-interactive for scripting and automation — the two modes share the same feature set.
shelfctl uses five production-ready Bubble Tea components that have been extracted to standalone packages: Base Picker (eliminates picker boilerplate), Multi-Select (checkbox wrapper for any list), Miller Columns (hierarchical navigation layout), Carousel (peeking card layout), and Command Palette (fuzzy-search action overlay). Available as separate modules: bubbletea-picker, bubbletea-multiselect, bubbletea-millercolumns, bubbletea-carousel, bubbletea-commandpalette. See docs/development/components.md for details.
-
One repo per topic shelf Create shelf repos like
shelf-programming,shelf-history, etc. -
Books live in Releases, not git history PDFs/EPUBs are uploaded as GitHub Release assets (not committed to the repo).
-
catalog.ymlis the source of truth Each shelf repo contains acatalog.ymlthat stores searchable metadata and maps book IDs to release assets. Only metadata is versioned; the actual documents live outside git history. -
On-demand, per-book downloads
shelfctl open <book-id>downloads only that one file from GitHub's CDN and opens it. -
Full lifecycle management shelfctl supports the workflow end-to-end: add, get, open, migrate, split, and more.
- GitHub account with a personal access token
- Go 1.21+ (only if using
go installor building from source)
Homebrew (macOS/Linux):
brew install blackwell-systems/tap/shelfctlDownload pre-built binary:
Download the appropriate binary for your platform from the releases page, extract the archive, and run:
tar -xzf shelfctl_*_Darwin_arm64.tar.gz # or your platform
./shelfctlOptionally move to your PATH: mv shelfctl /usr/local/bin/
Using Go:
go install github.com/blackwell-systems/shelfctl/cmd/shelfctl@latestThis downloads the module at the latest version, builds shelfctl, and places it in $(go env GOPATH)/bin (or $GOBIN if set).
Build from source:
git clone https://github.com/blackwell-systems/shelfctl
cd shelfctl
make buildshelfctl authenticates using a GitHub personal access token (PAT). Set GITHUB_TOKEN in your environment.
Classic PAT scopes:
repo- for private shelvespublic_repo- for public-only shelves
Fine-grained PAT permissions: Grant Contents (Read/Write) and Releases (Read/Write) on the shelf repos you manage.
Note: GitHub CLI (gh) is not required - shelfctl uses the GitHub REST API directly.
Option A: Using gh CLI (optional convenience)
If you already have GitHub CLI installed and authenticated:
gh auth login
export GITHUB_TOKEN=$(gh auth token)Option B: Manual token
- Visit https://github.com/settings/tokens
- Generate new token (classic or fine-grained)
- Select required scopes/permissions (see above)
- Copy the token (starts with
ghp_orgithub_pat_)
export GITHUB_TOKEN=ghp_your_token_hereAdd to shell profile to persist (~/.bashrc or ~/.zshrc).
API Rate Limits: GitHub's authenticated API allows 5,000 requests/hour. shelfctl caches downloaded book files locally; metadata is fetched from GitHub as needed. For typical personal library usage, you're unlikely to hit rate limits.
Optional: PDF Cover Thumbnails
For automatic cover extraction from PDFs, install poppler:
# macOS
brew install poppler
# Ubuntu/Debian
sudo apt-get install poppler-utils
# Fedora/RHEL
sudo dnf install poppler-utils
# Arch Linux
sudo pacman -S popplerNot required - shelfctl works fine without it. Covers are extracted automatically when you download PDFs if poppler is installed.
Note: Complete the Prerequisites, Install, and Authentication sections first.
shelfctl has two entry points:
shelfctl(no arguments) — launches the interactive TUI hub. Browse, add, edit, move, and delete books without typing any commands or flags.shelfctl --help— shows all CLI commands. Every command works non-interactively, supports--jsonoutput, and can be piped or scripted.
Both entry points are full-featured. The TUI is not a wrapper around a subset — everything available in the CLI is also reachable from the hub.
shelfctlSee docs/guides/hub.md for full details.
shelfctl --helpAlready have PDFs in GitHub repos? Organize them:
# (Ensure GITHUB_TOKEN is set - see Authentication section above)
# Scan your existing repos for files
shelfctl migrate scan --source you/old-books-repo > queue.txt
# Create organized shelves (private by default)
shelfctl init --repo shelf-programming --name programming --create-repo --create-release
shelfctl init --repo shelf-research --name research --create-repo --create-release
# Or make a shelf public
shelfctl init --repo shelf-public --name public --create-repo --create-release --private=false
# Edit queue.txt to map files to shelves, then migrate
shelfctl migrate batch queue.txt --n 10 --continueStarting fresh? Add books directly:
# Add a book (creates the shelf automatically if it doesn't exist)
shelfctl shelve ~/Downloads/sicp.pdf --shelf programming --title "SICP" --author "Abelson & Sussman" --tags lisp,cs
# List books across all shelves
shelfctl browse --shelf programming
# Open a book - downloads just this one file (6MB), not the entire release
shelfctl open sicp
# On another machine? Same command fetches it on-demand from GitHub
shelfctl open sicp
# Add annotations/highlights, then sync back to GitHub
open sicp # Annotate in your PDF reader
shelfctl sync sicp # Upload annotated version (replaces original, no versioning)Generate a static HTML page from your cached books — no server required. Open it in any browser for a visual, searchable view of your library that works completely offline.
shelfctl index --open- Visual book grid with cover thumbnails
- Real-time search by title, author, or tags
- Clickable tag filters with book counts
- Sort by recently added, title, author, or year
- Organized by shelf — click any book to open it locally
| Command | Description |
|---|---|
init |
Bootstrap a shelf repo and release |
shelves |
Validate all configured shelves |
delete-shelf |
Remove a shelf from configuration |
browse |
Browse your library (interactive TUI or text) |
index |
Generate local HTML index for web browsing |
search |
Search books by title, author, or tags |
status |
Show library sync status and statistics |
tags |
List all tags with counts, rename tags in bulk |
verify |
Detect catalog vs release mismatches, auto-fix with --fix |
sync |
Upload locally modified books (annotations/highlights) to GitHub |
cache clear |
Remove books from local cache without deleting from shelves |
cache info |
Show cache statistics and disk usage |
info <id> |
Show metadata and cache status |
open <id> |
Open a book (auto-downloads if needed) |
shelve <file|url> |
Add a book to your library |
edit-book [id] |
Update metadata for one or multiple books (batch mode) |
delete-book <id> |
Remove a book from your library |
move <id> |
Move between releases or shelves |
split |
Interactive wizard to split a shelf |
migrate one |
Migrate a single file from an old repo |
migrate batch |
Migrate a queue of files |
migrate scan |
List files in a source repo |
import |
Import all books from another shelf |
completion |
Generate shell autocompletion scripts |
Default config path: ~/.config/shelfctl/config.yml
github:
owner: "you"
token_env: "GITHUB_TOKEN" # Environment variable to read token from
defaults:
release: "library"
shelves:
- name: "programming"
repo: "shelf-programming"
- name: "history"
repo: "shelf-history"Security: The token itself is never stored in the config file - only the environment variable name. shelfctl reads the token from your environment at runtime.
See config.example.yml for a complete example.
- Tutorial - Step-by-step walkthrough from installation to advanced workflows
- Architecture Guide - How shelves work, organization strategies, schemas, and configuration
- Interactive Hub - Guide to the interactive TUI menu
- Commands Reference - Complete documentation for all commands
- Troubleshooting - Common issues and solutions
- Contributing - Development guidelines
- Reusable Bubble Tea Components - Production-ready TUI components (picker, multi-select, miller columns)
- TUI Architecture - Technical deep dive into the unified TUI design
shelfctl is domain-specific by design: it solves the PDF/EPUB library problem and nothing else. This narrow focus keeps it simple, maintainable, and excellent at what it does.
shelfctl is a specialized management tool designed to help developers organize their personal document libraries using the GitHub API. By using this software, you agree to the following:
Platform Compliance: You are solely responsible for ensuring that your use of GitHub as a storage backend complies with GitHub's Terms of Service and Acceptable Use Policies. The author(s) of shelfctl are not responsible for any account suspensions or data removal by GitHub.
Content Responsibility: shelfctl does not provide, host, or distribute any content. Users are responsible for ensuring they have the legal right to store and distribute any files they upload to their own GitHub repositories and releases.
If you find shelfctl useful:
- ⭐ Star the repo on GitHub
- 🐛 Report issues or suggest features
- 🤝 Contribute improvements (see contributing.md)
- ☕ Buy me a coffee via the badge above
Shelby the Shelf (our mascot) is a terminal wearing a bookshelf like a sweater, because why not.
Software: MIT License - See LICENSE for details
Shelby Mascot & Brand Assets: You may redistribute unmodified brand assets with shelfctl. Brand assets are not licensed for reuse outside shelfctl. See assets/LICENSE for details.










