Fetch and review GitHub notifications quickly using the gh CLI.
Copy the install command and let the AI configure it · recommended for beginners
Please install the "inbox-list-notifications" skill from askskill: 1. Download https://raw.githubusercontent.com/microsoft/vscode-team-kit/main/github-inbox/skills/inbox-list-notifications/SKILL.md 2. Save it as ~/.claude/skills/inbox-list-notifications/SKILL.md 3. Reload skills and tell me it's ready
Use the gh CLI to fetch my GitHub notifications and present them grouped by unread status, repository, and updated time.
A structured list of GitHub notifications for quickly reviewing unread updates.
Fetch GitHub notifications via the gh CLI and summarize them by repository with counts and subjects.
A repository-grouped notification summary showing counts and main subjects.
Use the gh CLI to fetch GitHub notifications, identify items that need my attention first, and turn them into an action list.
A prioritized action list derived from GitHub notifications for follow-up work.
Use gh api to fetch all unread GitHub notifications with automatic pagination.
Use the --jq flag (NOT a pipe to jq) to filter output inline:
gh api /notifications --paginate --jq '.[] | {id, reason, unread, updated_at, repo: .repository.full_name, title: .subject.title, type: .subject.type, url: .subject.url}'
This is the ONLY command you should run. Do NOT modify it. Do NOT add anything to it.
jq, python, python3, or any other program2>/dev/null or any redirectsGH_PAGER=cat to gh api calls to avoid interactive pagers--jq flag handles all JSON filtering — no external tools needed--paginate flag handles pagination — no manual page loops needed--method GET -f participating=true--method GET -f all=truegh api /repos/{owner}/{repo}/notifications --paginate --jq '...'-f since=2024-01-01T00:00:00ZThe url field is an API URL like https://api.github.com/repos/owner/repo/pulls/123. Convert to a clickable URL:
https://github.com/{repo}/pull/{number}https://github.com/{repo}/issues/{number}Extract the number from the API URL's last path segment.
Sort notifications by reason priority (highest first):
security_alert (critical)assign (high)review_requested (high)mention (high)ci_activity (medium)comment (medium)team_mention (medium)state_change (medium)author (low)subscribed (low)Let AI agents read and write memory with environment-aware storage fallback.
Gather independent multi-model plans and debates for implementation and architecture decisions.
Get high-signal second opinions on plans, designs, and implementations early.
Create and manage AST ban rules to block specific code syntax patterns.
Analyze VS Code rolling build health and identify breaking commit ranges.
Add emoji reactions to GitHub issues or pull requests quickly.
Open GitHub notification links in a browser for quick review.
Mark all GitHub notifications as read to quickly clear your inbox.
Get detailed information for a specific GitHub notification thread.
Dismiss specific GitHub notifications to keep your inbox clean and focused.
Manage subscription status for GitHub notification threads and reduce noise.
Check for and install GitHub CLI to prepare a development environment.