# Notify

> Send desktop notifications using lp-notify CLI

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

---


# Notify - Desktop Notifications

Use `lp-notify` to send desktop notifications to the user.

## Quick Examples

```bash
# Simple notification
lp-notify "Task completed!"

# With custom title
lp-notify "Build failed" --title "CI/CD"

# Urgent notification
lp-notify "Server down!" --urgency critical
```

## Commands

| Command | Description |
|---------|-------------|
| `lp-notify "message"` | Send notification |
| `lp-notify "msg" --title "Title"` | Custom title |
| `lp-notify "msg" --urgency critical` | Urgent (Linux) |
| `lp-notify "msg" --icon /path/icon.png` | Custom icon (Linux) |

## When to Use

- Task completed notifications
- Reminders (via lp-cron)
- Error alerts
- Status updates

## Platform Support

| Platform | Backend | Features |
|----------|---------|----------|
| Linux | notify-send | title, urgency, icon |
| macOS | osascript | title only |

