# Inbox Manage Subscription

> Manage subscription for a GitHub notification thread

- Skill: `microsoft/inbox-manage-subscription` (Agent Skill)
- Install (CLI): `npx skillmds@latest add microsoft/inbox-manage-subscription`
- Raw SKILL.md: https://api.skillmd.com/api/skills/microsoft/inbox-manage-subscription/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Microsoft (https://skillmd.com/u/microsoft)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/microsoft/inbox-manage-subscription

---


# Manage Notification Subscription

## Ignore (mute) a thread

Stop receiving notifications for this thread:

```
gh api --method PUT /notifications/threads/{thread_id}/subscription -f ignored=true
```

## Watch a thread

Subscribe to receive notifications:

```
gh api --method PUT /notifications/threads/{thread_id}/subscription -f ignored=false
```

## Unsubscribe from a thread

Remove subscription entirely:

```
gh api --method DELETE /notifications/threads/{thread_id}/subscription
```

Replace `{thread_id}` with the notification's `id` field.

