List PRs opened today that are assigned to me or the move-destinations team, excluding external contributors
This skill fetches and displays PRs that need your attention:
All results are filtered to:
$ARGUMENTS days if specified)Run the fetch script to get the PR list:
bash .claude/skills/my-prs/scripts/fetch-prs.sh
If an argument is provided (number of days), modify the date filter accordingly:
$ARGUMENTS = number of days to look back (default: 0 = today only)/my-prs 3 looks at PRs from the last 3 daysFor custom date ranges, use:
gh pr list --repo airbytehq/airbyte --assignee @me --search "created:>=YYYY-MM-DD" --json number,title,author,url
After displaying the PRs, offer to:
gh pr view <number> --web)gh pr view <number>)gh pr diff <number>)gh pr checks <number>)The user may want to:
/review <pr-number> if availablegh pr view <number> --commentsgh pr view <number> --json reviews --jq '.reviews[] | select(.state=="APPROVED") | .author.login'