kukuroo-notify

kukuroo-notify is a skill for Claude Code from saiday/kukuroo. It costs 88 tokens per session (1,780 once invoked), scanned A, original, MIT.

A skill for sending push notifications to the user's phone through Kukuroo, their own web service running on a Cloudflare Worker.

In plain words
What is it for?
Use it when the user asks for a phone alert, gives a time for an alert, says they are stepping away, or mentions Kukuroo.
Why use it?
It handles the service address and authentication token needed to send a notification and helps diagnose failed sends.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the kukuroo plugin — 1 skill, 1 command shipped together

Good fit Use it when the user asks for a phone alert, gives a time for an alert, says they are stepping away, or mentions Kukuroo.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saiday/kukuroo/kukuroo-notify
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add saiday/kukuroo --skill kukuroo-notify
Clone the repo
git clone --depth 1 https://github.com/saiday/kukuroo

Made for: Claude Code.

Or install kukuroo, the plugin that ships this one along with the rest of its 1 skill, 1 command.

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 kukuroo-notify

README.md
[![agentmods](https://agentmods.dev/badge/skills/saiday/kukuroo/kukuroo-notify/github.svg)](https://agentmods.dev/skills/saiday/kukuroo/kukuroo-notify)
Your own site
<a href="https://agentmods.dev/skills/saiday/kukuroo/kukuroo-notify"><img src="https://agentmods.dev/badge/skills/saiday/kukuroo/kukuroo-notify/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kukuroo-notify

Your own site · 80×15
<a href="https://agentmods.dev/skills/saiday/kukuroo/kukuroo-notify"><img src="https://agentmods.dev/badge/skills/saiday/kukuroo/kukuroo-notify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,780 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 80
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00088 $0.01780
Opus 5 $0.00044 $0.00890
Sonnet 5 $0.00018 $0.00356
Haiku 4.5 $0.00009 $0.00178

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

Security

Grade A, and why

kukuroo-notify scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

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

curl -fsS -X POST "$KUKUROO_ORIGIN/push/send" \
skills/kukuroo-notify/SKILL.md · 136 lines

How it starts

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

Notify the user on their phone

Kukuroo is the user's own Web Push service, running on their own Cloudflare Worker. One authenticated POST puts a notification on their phone. This skill is where the endpoint lives, plus the few rules whose failures are otherwise silent.

Kukuroo is the pipe, not the errand. Spend a line or two on it and get back to the work the user actually asked for.

1. Fire only on an explicit ask

Send when the user asks for it:

  • a notification, ping, buzz, or status update on their phone
  • a time they want to be told at: "at 5pm", "in 30 minutes", "when the deploy lands"
  • leaving: "I'm stepping away", "off the monitor", "going for a walk", "afk"
  • Kukuroo by name

A push arrives on a lock screen wherever the user happens to be, so it is theirs to ask for. Work they are sitting there watching is already visible to them, and needs no notification.

2. Find where to send, or ask

Two values: KUKUROO_ORIGIN (where the Worker answers) and KUKUROO_SEND_TOKEN (the bearer token). Take the first source that has both.

  1. Already in the environment.
  2. The file this skill wrote the last time it asked:
    cat "${XDG_CONFIG_HOME:-$HOME/.config}/kukuroo/env" 2>/dev/null
    

There is no third source. A Kukuroo deployment is set up on one machine and sent to from any number of others, so the setup leaves nothing behind here to find, and a search for one is a search that comes back empty.

Ask once, in one message. The user has just asked for a notification, so getting the address is part of the job. Both values in one question, in about two sentences:

Which origin does your Kukuroo Worker answer on, and what is its send token? Pasting the token puts it in this transcript; if you would rather it did not, put both in ~/.config/kukuroo/env yourself (KUKUROO_ORIGIN= and KUKUROO_SEND_TOKEN=, a line each) and say when it is done.

Then let it go. If the answer does not come, or comes back as "not now", drop Kukuroo and do the work they actually asked for. One question costs them a moment. A second one costs them the thread.

Read the full file on GitHub · 136 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 136 lines · 88 tokens per session scan A c4353e9cbe30

Subscribe to this mod's changes

kukuroo-notify is a skill published in the GitHub repository saiday/kukuroo (126 stars, last pushed 26d ago), licensed MIT. It adds 88 tokens to every session and 1,780 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories