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/sshh12/claude-plugins/claude-mdgit clone --depth 1 https://github.com/sshh12/claude-pluginsWrote 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/sshh12/claude-plugins/claude-md)<a href="https://agentmods.dev/instructions/sshh12/claude-plugins/claude-md"><img src="https://agentmods.dev/badge/instructions/sshh12/claude-plugins/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.00773 | $0.00773 |
| Opus 5 | $0.00387 | $0.00387 |
| Sonnet 5 | $0.00155 | $0.00155 |
| Haiku 4.5 | $0.00077 | $0.00077 |
Grade A, and why
claude-plugins CLAUDE.md scanned grade A with 0 findings 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 4d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
claude-plugins
Claude Code plugin marketplace by shrivu.
Repo Structure
claude-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog (lists all plugins)
├── plugins/
│ └── <plugin-name>/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest (name, version, description)
│ ├── skills/
│ │ └── <skill-name>/
│ │ └── SKILL.md # Skill definition
│ ├── agents/ # Agent definitions (.md files)
│ ├── hooks/ # Hook scripts
│ └── ...
├── CLAUDE.md
└── README.md
Adding a Plugin
- Create a new directory under
plugins/with your plugin name (kebab-case). - Add a
.claude-plugin/plugin.jsonmanifest inside it. - Add skills, agents, hooks, MCP servers, or LSP servers as needed.
- Register the plugin in
.claude-plugin/marketplace.jsonunder thepluginsarray.
Docs
- Plugin marketplaces: https://code.claude.com/docs/en/plugin-marketplaces
- Creating plugins: https://code.claude.com/docs/en/plugins
- Plugin reference: https://code.claude.com/docs/en/plugins-reference
- Discover plugins: https://code.claude.com/docs/en/discover-plugins
Skills Authoring Reference
When building skills for plugins, refer to these guides:
-
Skills Overview: https://platform.claude.com/docs/en/agents-and-tools/agent-skills/overview
- Skills are modular, filesystem-based capabilities with progressive disclosure (metadata -> SKILL.md -> bundled files)
- SKILL.md requires YAML frontmatter with
name(lowercase/hyphens, max 64 chars) anddescription(max 1024 chars, no reserved words like "anthropic"/"claude") - Three loading levels: metadata (always loaded, ~100 tokens), instructions (on trigger, <5k tokens), resources (as needed, unlimited)
- Skills can bundle scripts, templates, and reference files alongside SKILL.md
-
Skills Best Practices: https://platform.claude.com/docs/en/agents-and-tools/agent-skills/best-practices
- Be concise — only add context Claude doesn't already have; keep SKILL.md body under 500 lines
- Write descriptions in third person that include both what the skill does and when to use it
- Use progressive disclosure: SKILL.md as overview, separate files for details (one level deep, no nested refs)
- Match freedom level to task fragility: high freedom for flexible tasks, low freedom for fragile/exact operations
- Use gerund naming (e.g.
processing-pdfs) or action-oriented names; avoid vague names likehelper/utils - Include feedback loops (run validator -> fix -> repeat) and checklists for complex workflows
- For executable scripts: handle errors explicitly, document constants, prefer execution over loading into context
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.
- 4d ago First seen · 68 lines · 773 tokens per session scan A 744700bfa730
claude-plugins CLAUDE.md is an instructions file published in the GitHub repository sshh12/claude-plugins (22 stars, last pushed 2mo ago), licensed MIT. It adds 773 tokens to every session, about $0.0039 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
ai-toolkit AGENTS.md
AGENTS.md instructions for pipefy/ai-toolkit, covering repository guidelines, documentation map, project structure, import namespace migration: pipefysdk → pipefy and src/pipefysdk/init.py (transitional shim).
agent-plugins copilot-instructions.md
Copilot instructions for dmgrok/agent-plugins, covering agent skills directory - ai agent instructions, project overview, architecture, core components and critical workflows.
NovelAI-Image-MCP AGENTS.md
Instructions for xinvxueyuan/NovelAI-Image-MCP, covering agents.md, 项目是什么, 仓库布局(uv + pnpm monorepo,turbo 编排), 常用命令 and 硬约束(不要触碰).
skrills AGENTS.md
AGENTS.md instructions for athola/skrills, covering ai agent development guidelines, guiding principles, development workflow, implementation cycle and when stuck.
skills CLAUDE.md
Instructions for cel-expr/skills, covering common expression language (cel) skills, project structure & architecture, build and test commands, go cli and bazel.
skills GEMINI.md
Instructions for cel-expr/skills, covering common expression language (cel) skills, provided tools and available skills.