inbox-list-notifications
Installation
SKILL.md
List GitHub Notifications
Use gh api to fetch all unread GitHub notifications with automatic pagination.
Command
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.