用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft/vscode-team-kit --skill inbox-manage-subscription命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Monitor a pull request until CI status or Copilot review is available. Use when: monitor PR, watch PR, land PR, wait for CI, wait for checks, wait for review, check PR status. Starts two async terminal tasks (CI + Copilot review) and reacts when either completes.
Create and manage banned AST patterns that prevent code constructs in edits. USE FOR: "ban a code pattern", "add a tree-sitter lint rule", "prevent specific syntax in edits", "validate a BANNED_AST.md rule". DO NOT USE FOR: "explain how existing code works", "answer general programming questions".
Full setup of the Component Explorer including CLI, MCP server, VS Code tasks and launch config. USE FOR: "complete component explorer setup with the CLI", "configure the component explorer MCP server", "add VS Code tasks for the component explorer", "add a launch config for the component explorer". DO NOT USE FOR: "minimal or plugin only component explorer setup", "write a fixture for a component".
基于 SOC 职业分类
正在显示 SKILL.md
| name | inbox-manage-subscription |
| description | Manage subscription for a GitHub notification thread |
| tools | ["execute"] |
Stop receiving notifications for this thread:
gh api --method PUT /notifications/threads/{thread_id}/subscription -f ignored=true
Subscribe to receive notifications:
gh api --method PUT /notifications/threads/{thread_id}/subscription -f ignored=false
Remove subscription entirely:
gh api --method DELETE /notifications/threads/{thread_id}/subscription
Replace {thread_id} with the notification's id field.