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.
npx agentmods add commands/noisy/noisy-coding/updategit clone --depth 1 https://github.com/noisy/noisy-codingWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00014 | $0.00633 |
| Opus 5 | $0.00007 | $0.00316 |
| Sonnet 5 | $0.00003 | $0.00127 |
| Haiku 4.5 | $0.00001 | $0.00063 |
Grade A, and why
update 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 yesterday.
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.
3. Fetch the release notes and tell the user WHY this update is worth it BEFORE recreating anything: `gh api repos/noisy/noisy-coding/releases --paginate -q '.[0:3]'` (or `curl -s https://api.github.com/repos/noisy/noisy What it actually says
Update the user's noisy-coding backend. Follow these steps in order and narrate briefly:
- Check what is running:
docker inspect noisy-coding --format '{{.Config.Image}} {{.Image}}'. If the container does not exist, stop and point the user at/noisy-coding:setupinstead. - Record the current image digest, then pull:
docker pull noisy/noisy-coding:latest. If the digest did not change, tell the user they are already on the latest version and stop. - Fetch the release notes and tell the user WHY this update is worth it BEFORE recreating anything:
gh api repos/noisy/noisy-coding/releases --paginate -q '.[0:3]'(orcurl -s https://api.github.com/repos/noisy/noisy-coding/releases). Quote the Highlights sections of the releases newer than what they run — those bullets are written for exactly this purpose. Ask the user to confirm the restart (it cuts any voice conversation for a few seconds). - Recreate the container, preserving the config volume (API key, settings, history live there and MUST survive):
docker rm -f noisy-coding docker run -d --name noisy-coding \ -p 127.0.0.1:8765-8767:8765-8767 \ -v noisy-coding-config:/root/.config/noisy-coding \ --restart unless-stopped \ noisy/noisy-coding:latest - Verify NON-INVASIVELY, exactly like setup does:
curl -s http://127.0.0.1:8765/statusmust return JSON with"api_key_set": true(the volume survived). Do NOT probe port 8766 with raw TCP. - THE CONTAINER IS ONLY HALF THE SYSTEM — always close with the plugin check, never skip it:
- Read the installed plugin version (
claude plugin list) and compare with the version just released. If they differ, UPDATE IT NOW yourself —claude plugin update noisy-coding@noisyworks from inside the session — and tell the user the one thing you cannot do for them: run/reload-plugins(or restart) in every live session, in every Claude profile they use (a second profile needs its ownCLAUDE_CONFIG_DIR=<profile> claude plugin update ...). - If versions match, say so explicitly ("plugin already current — container was the only half to refresh"), so the user never wonders whether a step is missing.
- Installer users (no plugin): re-run
docker exec -i noisy-coding python3 /app/hooks/install.py --dockerinstead when the release notes mention hook changes.
- Read the installed plugin version (
- Remind the user to reload the dashboard tab (hard refresh — the UI and favicon are served by the new container) and re-click ENABLE TAB AUDIO if the banner reappears.
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.
- yesterday First seen · 25 lines · 14 tokens per session scan A efd90aad807e
update is a command published in the GitHub repository noisy/noisy-coding (6 stars, last pushed 3d ago), licensed MIT. It adds 14 tokens to every session and 633 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-31.
Other commands, from other repositories
start-talking
Start talking with Cadence Code.
jump-in
Jump In and add spoken guidance.
voice-settings
Choose Cadence Code speech models.
wrap-up
End the active Cadence Code conversation.
stts
User speaks the prompt, which is sent to the Model, the received response is spoken/read aloud in a loop.
worktree
Create a gitignored worktree off fresh origin/main per CLAUDE.md's "MAIN STAYS IN ROOT" rule.