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 instructions/pick/prompt-chime/claude-mdgit clone --depth 1 https://github.com/pick/prompt-chimeWrote 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.
[](https://agentmods.dev/instructions/pick/prompt-chime/claude-md)<a href="https://agentmods.dev/instructions/pick/prompt-chime/claude-md"><img src="https://agentmods.dev/badge/instructions/pick/prompt-chime/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00858 | $0.00858 |
| Opus 5 | $0.00429 | $0.00429 |
| Sonnet 5 | $0.00172 | $0.00172 |
| Haiku 4.5 | $0.00086 | $0.00086 |
Grade B, and why
prompt-chime CLAUDE.md scanned grade B 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 3d 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
- **`install.sh`** — Copies `scripts/` to `~/.claude/notifications/` and registers the Stop hook in `~/.claude/settings.json` How it starts
The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
prompt-chime is a cross-platform notification toolkit for AI coding assistants. It plays sounds and shows toast notifications when prompts complete. It's a Claude Code plugin that registers a Stop hook.
Commands
# Run E2E tests (requires python3)
bash scripts/test_e2e.sh
# Test a notification manually
bash scripts/notify.sh --event stop --title "Test" --body "Hello"
# Management CLI
bash scripts/manage.sh status
bash scripts/manage.sh test
bash scripts/manage.sh help
There is no build step. No package manager. No linter configured.
Architecture
The codebase is pure shell scripts (bash + PowerShell) with inline Python for JSON config manipulation. No external dependencies.
Entry Points
hooks/hooks.json— Claude Code Stop hook definition; triggersscripts/notify.shasync on every assistant stopinstall.sh— Copiesscripts/to~/.claude/notifications/and registers the Stop hook in~/.claude/settings.json.claude-plugin/plugin.json— Plugin manifest for marketplace-style installation
Core Scripts (all in scripts/)
notify.sh— Main notification dispatcher. Parses args (--event,--project,--title,--body), readsconfig.jsonvia embedded Python, resolves sound file, detects OS, delegates to platform script. Falls back to pure-bash grep if python3 is unavailable.manage.sh— CLI for managing config (volume, quiet hours, toast, profiles, project overrides, sound selection). All config mutations go through thepyconf()helper which embeds Python code strings — user input must only pass throughsys.argv, never interpolated into the Python code string.platforms/windows.ps1— Windows: Win32 MCI (mciSendStringvia P/Invoke) for audio (WAV+MP3), WinRTToastNotificationManagerfor toasts (BalloonTip fallback). Toast fires first for instant feedback, then sound plays synchronously.platforms/macos.sh— macOS:afplayfor audio,osascriptfor toastsplatforms/linux.sh— Linux:paplay/pw-play/aplayfor audio,notify-sendfor toastsconfig.json— Default configuration (gets copied to install dir; the installed copy is what's read at runtime)test_e2e.sh— E2E test suite (9 test groups: structure, sounds, config, OS detection, CLI, profiles, project overrides, security, live notification)generate_meme_sounds.py— Synthesizes chiptune meme notification sounds (Mario 1-Up, Zelda secret, etc.) as WAV files intosounds/custom/. Run withpython3 scripts/generate_meme_sounds.py. Output is gitignored.
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.
- 3d ago First seen · 60 lines · 858 tokens per session scan B d67e8378bf11
prompt-chime CLAUDE.md is an instructions file published in the GitHub repository pick/prompt-chime (0 stars, last pushed 5mo ago), licensed MIT. It adds 858 tokens to every session, about $0.0043 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
open-agent-hub AGENTS.md
AGENTS.md instructions for guanyang/open-agent-hub, covering agents.md, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.
gmgn-skills CLAUDE.md
Claude Code instructions for GMGNAI/gmgn-skills, covering claude.md, critical rule — read this first, project overview, available skills and quick decision guide.
core copilot-instructions.md
Copilot instructions for asdecided/core: These decisions are already accepted. Do not re-open or contradict them; ask the AsDecided MCP tools (getartifact, searchartifacts) for the full text before proposing a change that touches one.
Atomic-Spec AGENTS.md
Instructions for Chappygo-OS/Atomic-Spec, covering agents.md — adding a new ai agent to atomic spec, about atomic spec and the atomicspec cli, general practices, adding new agent support and current supported agents.
codexspec CLAUDE.md
Claude Code instructions for Zts0hg/codexspec, covering claude.md - codexspec development guide, project overview, purpose, technology stack and architecture.
blurt AGENTS.md
Instructions for satyaborg/blurt, covering agents.md, what is blurt, commands, dev install and run.