Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/microsoft/vscode-team-kit --skill inbox-dismiss-notification명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-dismiss-notification |
| description | Dismiss GitHub notification |
| tools | ["execute"] |
Replace {thread_id} with the notification's id field.
Notification will still render in inbox, but marked as read.
gh api --method PATCH /notifications/threads/{thread_id}
Notification will be marked as done and removed from inbox, but doesn't unsubscribe from the thread.
gh api --method DELETE /notifications/threads/{thread_id}
Will no longer receive notifications from the thread.
gh api --method DELETE /notifications/threads/{thread_id}/subscription
To fully dismiss a notification, unsubscribe and mark as done.
gh api --method DELETE /notifications/threads/{thread_id}/subscription
gh api --method DELETE /notifications/threads/{thread_id}
Chain multiple commands together in a single terminal invocation using && or ; to avoid multiple confirmations.
GH_PAGER=cat to gh api calls to avoid interactive pagers