帮助用户通过 gh 命令获取并查看 GitHub 通知列表,快速处理仓库动态。
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "inbox-list-notifications" 技能: 1. 下载 https://raw.githubusercontent.com/microsoft/vscode-team-kit/main/github-inbox/skills/inbox-list-notifications/SKILL.md 2. 保存为 ~/.claude/skills/inbox-list-notifications/SKILL.md 3. 装好后重载技能,告诉我可以用了
请使用 gh CLI 获取我当前账号的 GitHub 通知列表,并按未读、仓库、更新时间整理输出。
一份结构化的 GitHub 通知清单,便于快速浏览未读更新。
请通过 gh CLI 拉取 GitHub 通知,并按仓库分组汇总每个仓库的通知数量和主题。
按仓库分类的通知摘要,显示每个仓库的通知数量与主要主题。
请使用 gh CLI 获取 GitHub 通知,并筛选出需要我优先处理的项目,生成待办清单。
一份按优先级整理的 GitHub 通知待办清单,帮助安排后续处理。
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)帮助你快速检索 GitHub 中分配给你、待分诊或自定义条件的议题与 PR。
获取指定 GitHub 通知线程的详细信息,便于快速查看上下文与后续处理。