Github pull requests presented in a prioritized order, via a keyboard driven web GUI & API.
Requires a Github PAT (personal access token). Configure it through the web UI
settings, or pass it via the GITHUB_PAT environment variable. elly should be hosted
locally.
flowchart TB
subgraph elly daemon
A[./elly] --> B(Request PRs)
H(systemd) -.->|Runs| A
B -->|Timer, default 10 min| B
F[(sqlite)]
B -->|Persists|F
A --> C(HTTP server)
C -->|Reads| F
C --> D(Server rendered GUI)
C --> E(API)
end
D -.->|Opens in browser| G(Github PR view)
I(i3blocks) -.-> E
A Github personal access token these repository permissions:
- commit status (read only)
- contents (read only)
- metadata (read only)
- pull requests (read only)
Don't forget to also:
- allow the token access to "all repositories"
- adjust the "resource owner" to your personal or your workplace's organisation
- set a proper expiration date
go install github.com/chelmertz/elly@latestwill fetch you the latest binary. See contrib/elly.service for a systemd example of managing the service.
docker run -d \
--name elly \
--restart unless-stopped \
-v elly-data:/data \
-p 9876:9876 \
ghcr.io/chelmertz/elly:latestIf you have gh CLI installed and authenticated, you can use $(gh auth token) instead of a PAT you stashed away somewhere:
This creates a named volume elly-data for the SQLite database (Docker manages it automatically).
The --restart unless-stopped flag ensures elly starts automatically on boot.
Useful commands:
docker logs -f elly # View logs
docker stop elly # Stop
docker rm elly # Remove
docker pull ghcr.io/chelmertz/elly:latest # Update imageRun directly: nix run github:chelmertz/elly
Or, install permanently:
- Add the flake to your system configuration
- Or:
nix profile install github:chelmertz/elly
See dev.md for some useful commands during development.
See decisions/ for ADRs.


