notify

notify is a command for Claude Code from an8079/take-skills. It costs 17 tokens per session (915 once invoked), scanned C, original, MIT.

A command for configuring task notifications in Claude Code, including desktop alerts, sounds, and webhooks.

In plain words
What is it for?
Use it to send alerts through supported desktop environments, audio devices, Slack, Discord, Telegram, Lark/Feishu, or a custom HTTP endpoint.
Why use it?
It helps you notice completed work, questions, reviews, errors, and session limits when you are not watching the terminal.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable. Also seen: names the ExitPlanMode tool; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the claude-dev-assistant plugin — 21 skills, 39 commands shipped together

Good fit Use it to send alerts through supported desktop environments, audio devices, Slack, Discord, Telegram, Lark/Feishu, or a custom HTTP endpoint.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add an8079/take-skills
Claude Code
/plugin install claude-dev-assistant

Made for: Claude Code.

Or install claude-dev-assistant, the plugin that ships this one along with the rest of its 21 skills, 39 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for notify

README.md
[![agentmods](https://agentmods.dev/badge/commands/an8079/take-skills/takes-notify.svg)](https://agentmods.dev/commands/an8079/take-skills/takes-notify)
Your own site
<a href="https://agentmods.dev/commands/an8079/take-skills/takes-notify"><img src="https://agentmods.dev/badge/commands/an8079/take-skills/takes-notify.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 915 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00017 $0.00915
Opus 5 $0.00009 $0.00458
Sonnet 5 $0.00003 $0.00183
Haiku 4.5 $0.00002 $0.00092

Measured 8d ago against content hash 98562ed3093f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade C, and why

notify scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://raw.githubusercontent.com/777genius/claude-notifications-go/main/bin/bootstrap.sh | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://raw.githubusercontent.com/777genius/claude-notifications-go/main/bin/bootstrap.sh | bash
commands/takes-notify.md · 160 lines

How it starts

The opening of the file, as written. The whole thing — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/notify - 通知配置

配置 Claude Code 通知,支持桌面通知、Webhook 集成、声音提醒。

使用方式

/notify

通知设置
配置通知

功能模块

1. 桌面通知

功能 说明
任务完成 主要任务完成时通知
审查完成 代码审查完成时通知
提问 AI 有问题时通知
计划就绪 ExitPlanMode 时通知
会话限制 Session limit 到达时通知
API 错误 API 错误时通知

2. 声音提醒

设置项 说明
音量控制 0-100% 可调
声音选择 内置声音或自定义
设备选择 指定音频输出设备

3. Webhook 集成

平台 配置
Slack Webhook URL, Channel
Discord Webhook URL
Telegram Bot Token, Chat ID
Lark/Feishu Webhook URL
Custom 自定义 HTTP POST

4. 点击聚焦 (Click-to-Focus)

支持的终端:

  • macOS: Ghostty, VS Code, iTerm2, Warp, kitty, WezTerm, Alacritty, Hyper
  • Linux: GNOME Terminal, Konsole, VS Code, kitty, WezTerm, Tilix
  • Windows: 通知提醒(无点击聚焦)

支持的复用器:

  • tmux (含 iTerm2 -CC 模式)
  • zellij
  • WezTerm
  • kitty

推荐插件

claude-notifications-go - Go 编写的通知插件

# 快速安装
curl -fsSL https://raw.githubusercontent.com/777genius/claude-notifications-go/main/bin/bootstrap.sh | bash

功能:

  • 6 种通知类型
  • 跨平台桌面通知
  • 声音提醒
  • Webhook 集成
  • 点击聚焦
  • Git branch 显示

配置示例

桌面通知配置

{
  "notifications": {
    "desktop": {
      "enabled": true,
      "sound": true,
      "volume": 0.8,
      "clickToFocus": true
    },
    "webhook": {
      "enabled": false,
      "preset": "slack",
      "url": "https://hooks.slack.com/services/..."
    }
  },
  "statuses": {
    "task_complete": {
      "title": "✅ Completed",
      "sound": "${CLAUDE_PLUGIN_ROOT}/sounds/task-complete.mp3"
    },
    "question": {
      "title": "❓ Question",
      "sound": "${CLAUDE_PLUGIN_ROOT}/sounds/question.mp3"
    }
  }
}

通知压制规则

{
  "suppressFilters": [
    {
      "name": "Suppress in specific folder",
      "status": "task_complete",
      "folder": "specific-project"
    }
  ]
}

集成命令

安装 claude-notifications-go 后:

# 初始化
/claude-notifications-go:init

# 配置设置
/claude-notifications-go:settings

# 测试声音
/claude-notifications-go:sounds

Read the full file on GitHub · 160 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 160 lines · 17 tokens per session scan C 98562ed3093f

Subscribe to this mod's changes

notify is a command published in the GitHub repository an8079/take-skills (4 stars, last pushed 5mo ago), licensed MIT. It adds 17 tokens to every session and 915 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.