List all PRs authored by the user across specified repos since a given date with full pagination.
95
95%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
List all PRs authored by the current user since a given date across one or more GitHub repos.
CXEPI.gh auth status — if fails: "Run gh auth login."
If repos not provided: gh repo list ORG --limit 500 --json name --jq '.[].name'
For each repo:
gh pr list --repo ORG/REPO_NAME --author AUTHOR --state all --search "created:>=SINCE_DATE" --limit 500 --json number,title,body,mergedAt,createdAt,reviewDecision,url- repo: ORG/repo-name
pr: #123
title: "PR title"
created: 2026-01-15
merged: 2026-01-16
review_decision: APPROVED
url: https://github.com/CXEPI/repo-name/pull/123Delegate →
tessl__github-pr-lister-paginationfor pagination and error handling.