用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft/vscode-team-kit --skill inbox-list-notifications命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | inbox-list-notifications |
| description | Fetch GitHub notifications using the gh CLI |
| tools | ["execute"] |
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)