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/bvdr/claude-plugins/claude-mdgit clone --depth 1 https://github.com/bvdr/claude-pluginsWhat 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.01011 | $0.01011 |
| Opus 5 | $0.00505 | $0.00505 |
| Sonnet 5 | $0.00202 | $0.00202 |
| Haiku 4.5 | $0.00101 | $0.00101 |
Grade B, and why
claude-plugins 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 2d 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.
tail -f ~/.claude/hooks/debug.log How it starts
The opening of the file, as written. The whole thing — 127 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
A collection of Claude Code plugins and skills for macOS productivity. Contains native macOS integrations (dialogs, voice alerts, statusline) that enhance Claude Code workflows.
Platform: macOS only (uses osascript, say command)
Dependencies: jq (required), git (optional for statusline)
Repository Structure
plugins/
├── bvdr-smart-permissions/ # AI-powered auto-allow/deny permission hook
│ └── hooks/ # PreToolUse + PermissionRequest scripts
├── bvdr-interactive-notifications/ # Native macOS dialogs for permissions/questions
│ └── hooks/ # Bash scripts invoked by Claude Code hooks
└── bvdr/ # Skills collection (voice alerts, statusline, Slack)
└── commands/ # Skill markdown files
Development Commands
# Test hook scripts directly (pipe JSON input)
echo '{"tool_name":"Bash","cwd":"/path","tool_input":{"command":"ls"}}' | bash plugins/bvdr-interactive-notifications/hooks/interactive-permission.sh
# View debug logs
tail -f ~/.claude/hooks/debug.log
tail -f ~/.claude/hooks/permission.log
# Test text-to-speech voices
say -v "?" # List all available voices
say -v Zarvox "Hello" # Test specific voice
# Install plugin locally for testing
claude --plugin-dir ./
Hook System Architecture
Hooks intercept Claude Code events and return JSON decisions:
Claude Code Event → Hook Script (stdin: JSON) → AppleScript Dialog → JSON Response (stdout)
Hook Response Format:
{
"hookSpecificOutput": {
"hookEventName": "PermissionRequest",
"decision": {
"behavior": "allow|deny|ask",
"updatedInput": {},
"message": "optional context"
}
}
}
Behavior values:
allow- Approve the actiondeny- Block with optional messageask- Fall back to terminal prompt (timeout fallback)
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.
- 2d ago First seen · 127 lines · 1,011 tokens per session scan B 6dcaeaa1751d
claude-plugins CLAUDE.md is an instructions file published in the GitHub repository bvdr/claude-plugins (3 stars, last pushed 2mo ago), licensed MIT. It adds 1,011 tokens to every session, about $0.0051 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
skills CLAUDE.md
Instructions for wondelai/skills, covering claude.md, repository purpose, repository structure, current skills (65) and skill file format.
skills copilot-instructions.md
Instructions for wondelai/skills, covering agent skills repository instructions, key requirements, directory structure, compliance and style.
claude-code-marketplace AGENTS.md
Instructions for netresearch/claude-code-marketplace, covering agents.md — netresearch claude code marketplace, commands, scope separation (mandatory), marketplace as canonical discovery hub and required fields per marketplace skill entry.
jko-claude-plugins CLAUDE.md
Instructions for johnkozaris/jko-claude-plugins, covering jko-skills, project structure, installing this marketplace, register as a marketplace for local development and then install any plugin from the local checkout.
jko-claude-plugins CLAUDE.md
Instructions for mathisk2095/jko-claude-plugins, covering jko-claude-plugins, project structure, installing this marketplace, register as a marketplace for local development and then install any plugin from the local checkout.
dot-claude-plugins CLAUDE.md
Instructions for and3r817/dot-claude-plugins, covering claude.md, repository overview, core architecture principles, testing commands and run all test suites (master runner).