{"id":51118998,"url":"https://github.com/sulthonzh/gh-prs","last_synced_at":"2026-06-25T00:30:36.286Z","repository":{"id":363809292,"uuid":"1263772592","full_name":"sulthonzh/gh-prs","owner":"sulthonzh","description":"See open pull requests across all your GitHub repos at a glance","archived":false,"fork":false,"pushed_at":"2026-06-18T17:07:12.000Z","size":15,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-18T19:06:39.812Z","etag":null,"topics":["cli","github","productivity","pull-requests"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sulthonzh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-06-09T08:54:35.000Z","updated_at":"2026-06-18T17:02:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sulthonzh/gh-prs","commit_stats":null,"previous_names":["sulthonzh/gh-prs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sulthonzh/gh-prs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sulthonzh%2Fgh-prs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sulthonzh%2Fgh-prs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sulthonzh%2Fgh-prs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sulthonzh%2Fgh-prs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sulthonzh","download_url":"https://codeload.github.com/sulthonzh/gh-prs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sulthonzh%2Fgh-prs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34755061,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","github","productivity","pull-requests"],"created_at":"2026-06-25T00:30:36.138Z","updated_at":"2026-06-25T00:30:36.280Z","avatar_url":"https://github.com/sulthonzh.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gh-prs\n\nSee all open pull requests across your GitHub repos at a glance.\n\nBecause `gh pr list` only shows one repo at a time, and you've got better things to do than check them one by one.\n\n## Why\n\nYou maintain multiple repos. PRs pile up. Some go stale. Some need review. You want a single command that shows you everything — who opened what, how old it is, whether it's been reviewed.\n\n## Install\n\n```bash\nnpm install -g gh-prs\n```\n\nRequires [gh CLI](https://cli.github.com) to be installed and authenticated.\n\n## Usage\n\n```bash\n# Show all open PRs across your repos\ngh-prs\n\n# Specific repo\ngh-prs --repo sulthonzh/my-project\n\n# Different user\ngh-prs --user octocat\n\n# JSON output (pipe to jq, scripts, etc.)\ngh-prs --json\n\n# Markdown (paste into docs/issues)\ngh-prs --markdown\n\n# Summary stats\ngh-prs --summary\n\n# Show repos with zero PRs too\ngh-prs --verbose\n\n# Limit repos scanned\ngh-prs --limit 10\n```\n\n## Output Example\n\n```\n🔍 Open Pull Requests (3 total across 15 repos)\n\n📂 sulthonzh/my-project\n  #42 Fix auth bug [bug]\n    by @dev1 · 2 days old · 2 files (+10/-5) ✅\n  #43 Add feature X [DRAFT]\n    by @dev2 · 8 days old · 5 files (+100/-20) ⏳\n\n📂 sulthonzh/other-project\n  #7 Update dependencies\n    by @dependabot · 1 day old · 1 file (+5/-5) ⏳\n```\n\nReview status icons:\n- ✅ Approved\n- 🔄 Changes requested\n- ⏳ Awaiting review\n\n## Summary Mode\n\n```\n📊 PR Summary\n   Total open: 3\n   Drafts: 1\n   Stale (7+ days): 1\n   Repos with PRs: 2/15\n```\n\n## Exit Codes\n\n- `0` — No open PRs found\n- `1` — PRs found (useful for CI: \"no stale PRs\" checks)\n- `2` — Error (gh not installed, auth issue, etc.)\n\n## Programmatic API\n\n```js\nconst { run, formatJSON, formatSummary } = require('gh-prs');\n\n// Full run\nconst output = await run({ user: 'octocat', json: true });\n\n// Or use formatters directly\nconst { getOpenPRs, formatText } = require('gh-prs');\nconst prs = getOpenPRs('user/repo');\nconsole.log(formatText([{ repo: 'user/repo', prs }]));\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsulthonzh%2Fgh-prs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsulthonzh%2Fgh-prs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsulthonzh%2Fgh-prs/lists"}