kukuroo-setup

kukuroo-setup is a command for Claude Code from saiday/kukuroo. It costs 17 tokens per session (917 once invoked), scanned A, original, MIT.

A setup command for connecting coding agents on this computer to a Kukuroo Worker, a private web service that sends phone notifications.

In plain words
What is it for?
Use it to configure a new machine, save the Kukuroo connection details, and test the connection with a real notification.
Why use it?
It keeps the service address and sending token in one shared configuration file and confirms that a notification really arrived.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

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

Good fit Use it to configure a new machine, save the Kukuroo connection details, and test the connection with a real notification.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/saiday/kukuroo/kukuroo-setup
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.

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-setup

README.md
[![agentmods](https://agentmods.dev/badge/commands/saiday/kukuroo/kukuroo-setup.svg)](https://agentmods.dev/commands/saiday/kukuroo/kukuroo-setup)
Your own site
<a href="https://agentmods.dev/commands/saiday/kukuroo/kukuroo-setup"><img src="https://agentmods.dev/badge/commands/saiday/kukuroo/kukuroo-setup.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 917 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.
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.00917
Opus 5 $0.00009 $0.00458
Sonnet 5 $0.00003 $0.00183
Haiku 4.5 $0.00002 $0.00092

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

Security

Grade A, and why

kukuroo-setup 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 7d 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" \
commands/kukuroo-setup.md · 77 lines

How it starts

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

Wire up Kukuroo

The user invoked this with: $ARGUMENTS

Goal: leave $XDG_CONFIG_HOME/kukuroo/env holding a working origin and send token, verified by a notification that actually arrived. Every project on this machine reads that one file afterwards.

1. Find what is already there

cat "${XDG_CONFIG_HOME:-$HOME/.config}/kukuroo/env" 2>/dev/null

That file, or KUKUROO_ORIGIN and KUKUROO_SEND_TOKEN already in the environment, is the only place either value lives on this machine. Kukuroo is deployed on one machine and sent to from others, so being on a machine that has never been wired up is the normal case and not a sign anything is wrong.

$ARGUMENTS, if given, is the origin. Accept it with or without a scheme and normalise to https://<host> with no trailing slash.

2. Ask for what is missing

One message, both values:

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.

Both are in kukuroo.credentials.json on the machine the deployment was set up from: sendToken, and the address is the custom domain in its wrangler.jsonc or the workers.dev URL the deploy printed. Say that once if they do not have the values to hand.

If they have not deployed a Worker at all yet, npx kukuroo init my-push is the whole of setup. Say that and stop, rather than walking them through it here.

3. Prove it, then store it

Send a real notification. This is the only way to know: nothing in the config can tell you whether a device is still enrolled.

curl -fsS -X POST "$KUKUROO_ORIGIN/push/send" \
  -H "authorization: Bearer $KUKUROO_SEND_TOKEN" \
  -H 'content-type: application/json' \
  -d '{"notification":{"title":"Kukuroo is wired up","body":"Your agents can reach this phone.","tag":"kukuroo-warmup","navigate":"'"$KUKUROO_ORIGIN"'/"}}'

Read the full file on GitHub · 77 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. 7d ago First seen · 77 lines · 17 tokens per session scan A cd6ffece394f

Subscribe to this mod's changes

kukuroo-setup is a command published in the GitHub repository saiday/kukuroo (123 stars, last pushed 22d ago), licensed MIT. It adds 17 tokens to every session and 917 once invoked, about $0.0001 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.