# C Notify

> Send native macOS notification center alerts from the command line using terminal-notifier.

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

---


# Notifications (terminal-notifier)

```bash
# Simple notification
terminal-notifier -title "OpenPaw" -message "Task complete!"

# With subtitle and sound
terminal-notifier -title "Build" -subtitle "Project X" -message "Done!" -sound default

# Open URL when clicked
terminal-notifier -title "PR Merged" -message "Click to view" -open "https://github.com/..."

# Activate app when clicked
terminal-notifier -title "Music" -message "Now playing" -activate "com.spotify.client"

# Group notifications (replaces previous in same group)
terminal-notifier -title "Progress" -message "50%" -group "build"
terminal-notifier -title "Progress" -message "100%" -group "build"

# Remove a notification group
terminal-notifier -remove "build"

# Custom app icon
terminal-notifier -title "Alert" -message "Hello" -appIcon /path/to/icon.png
```

## Guidelines

- Use notifications to alert the user when long tasks complete
- Group related notifications so they don't spam
- Add `-sound default` for important alerts
- Use `-open URL` to make notifications actionable
- Keep messages short — notifications truncate long text

