{"id":46203857,"url":"https://github.com/chelmertz/elly","last_synced_at":"2026-03-03T05:46:41.112Z","repository":{"id":182892857,"uuid":"669281879","full_name":"chelmertz/elly","owner":"chelmertz","description":"Gives you an ordered list of pull requests to take action on","archived":false,"fork":false,"pushed_at":"2026-02-11T00:38:11.000Z","size":4291,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-11T03:59:09.859Z","etag":null,"topics":["github","go","pr","todo"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chelmertz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-21T20:02:57.000Z","updated_at":"2026-02-11T00:38:14.000Z","dependencies_parsed_at":"2023-07-22T01:49:12.200Z","dependency_job_id":"cfc3dd41-b9db-4b44-9a1f-d048bf98461f","html_url":"https://github.com/chelmertz/elly","commit_stats":null,"previous_names":["chelmertz/elly"],"tags_count":48,"template":false,"template_full_name":null,"purl":"pkg:github/chelmertz/elly","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chelmertz%2Felly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chelmertz%2Felly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chelmertz%2Felly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chelmertz%2Felly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chelmertz","download_url":"https://codeload.github.com/chelmertz/elly/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chelmertz%2Felly/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30033520,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T05:09:26.876Z","status":"ssl_error","status_checked_at":"2026-03-03T05:09:23.944Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github","go","pr","todo"],"created_at":"2026-03-03T05:46:40.351Z","updated_at":"2026-03-03T05:46:41.107Z","avatar_url":"https://github.com/chelmertz.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elly\n\nGithub pull requests presented in a prioritized order, via a keyboard driven web\nGUI \u0026 API.\n\nRequires a Github PAT (personal access token). Configure it through the web UI\nsettings, or pass it via the `GITHUB_PAT` environment variable. elly should be hosted\nlocally.\n\n![Screenshot of GUI](gui.png)\n\n![Screenshot of GUI, with dark mode](darkmode.png)\n\n![Screenshot of GUI's about screen](about.png)\n\n```mermaid\nflowchart TB\n    subgraph elly daemon\n    A[./elly] --\u003e B(Request PRs)\n    H(systemd) -.-\u003e|Runs| A\n    B --\u003e|Timer, default 10 min| B\n    F[(sqlite)]\n    B --\u003e|Persists|F\n    A --\u003e C(HTTP server)\n    C --\u003e|Reads| F\n    C --\u003e D(Server rendered GUI)\n    C --\u003e E(API)\n    end\n    D -.-\u003e|Opens in browser| G(Github PR view)\n    I(i3blocks) -.-\u003e E\n```\n\n## PAT Oauth permissions\n\nA Github personal access token these _repository_ permissions:\n\n- commit status (read only)\n- contents (read only)\n- metadata (read only)\n- pull requests (read only)\n\nDon't forget to also:\n\n- allow the token access to \"all repositories\"\n- adjust the \"resource owner\" to your personal or your workplace's organisation\n- set a proper expiration date\n\n## Installation\n\n\n### Go package\n\n```shell\ngo install github.com/chelmertz/elly@latest\n```\n\nwill fetch you the latest binary. See contrib/elly.service for a systemd\nexample of managing the service.\n\n### Docker\n\n```shell { name=docker }\ndocker run -d \\\n  --name elly \\\n  --restart unless-stopped \\\n  -v elly-data:/data \\\n  -p 9876:9876 \\\n  ghcr.io/chelmertz/elly:latest\n```\n\nIf you have `gh` CLI installed and authenticated, you can use `$(gh auth\ntoken)` instead of a PAT you stashed away somewhere:\n\nThis creates a named volume `elly-data` for the SQLite database (Docker manages it automatically).\n\nThe `--restart unless-stopped` flag ensures elly starts automatically on boot.\n\n**Useful commands:**\n\n```shell\ndocker logs -f elly                             # View logs\ndocker stop elly                                # Stop\ndocker rm elly                                  # Remove\ndocker pull ghcr.io/chelmertz/elly:latest       # Update image\n```\n\n### Nix\n\nRun directly: `nix run github:chelmertz/elly`\n\nOr, install permanently:\n\n- Add the flake to your system configuration\n- Or: `nix profile install github:chelmertz/elly`\n\n## Developing\n\nSee [dev.md](dev.md) for some useful commands during development.\n\n## Design decisions\n\nSee [decisions/](decisions/) for ADRs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchelmertz%2Felly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchelmertz%2Felly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchelmertz%2Felly/lists"}