claude-plugins CLAUDE.md

claude-plugins CLAUDE.md is an instructions file for coding agents from patrickdappollonio/claude-plugins. It costs 2,764 tokens per session, scanned A, original, MIT.

A repository guide for the Claude Code plugin marketplace called claude-plugins. It records project rules, the visual-docs design, comments, and known pitfalls.

In plain words
What is it for?
Use it when editing plugins, updating documentation, changing marketplace files, or checking repository-specific rules before committing or pushing.
Why use it?
It gives coding agents consistent instructions for changing the repository safely. It also prevents missed version updates, unwanted commits, and differences between supported installation methods.

Instructions file

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.

agentmods
npx agentmods add instructions/patrickdappollonio/claude-plugins/claude-md
Clone the repo
git clone --depth 1 https://github.com/patrickdappollonio/claude-plugins

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 claude-plugins CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/patrickdappollonio/claude-plugins/claude-md.svg)](https://agentmods.dev/instructions/patrickdappollonio/claude-plugins/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/patrickdappollonio/claude-plugins/claude-md"><img src="https://agentmods.dev/badge/instructions/patrickdappollonio/claude-plugins/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,764 This file is loaded in full into every session.
When invoked 2,764 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
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 $0.02764 $0.02764
Opus 5 $0.01382 $0.01382
Sonnet 5 $0.00553 $0.00553
Haiku 4.5 $0.00276 $0.00276

Measured 3d ago against content hash 46707ce3afb5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

claude-plugins CLAUDE.md 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

never something it has to `curl`/`jq`/`python`/`node -e` to consume). Keep these
CLAUDE.md · 170 lines

How it starts

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

CLAUDE.md — patrickdappollonio/claude-plugins

A Claude Code plugin marketplace. .claude-plugin/marketplace.json lists the plugins under plugins/.

Hard rules

  • Never add Claude/AI attribution to commits or PRs — no Co-Authored-By: Claude, no "Generated with Claude Code". This is a standing, non-negotiable constraint from the repo owner.
  • Commit/push only when asked. Work on a branch, not main.
  • Bump the plugin's version on every meaningful change, in its plugins/<name>/.claude-plugin/plugin.json, following semver: patch for fixes and doc/wording tweaks, minor for new backwards-compatible capability (a new command, fence, or skill behavior), major for breaking changes (removed/renamed commands, changed file formats or defaults users rely on). Pure repo chores that don't touch a plugin (root README, CI) don't need a bump. The version lives only in that plugin.json — there are no git tags, GitHub releases, or per-plugin versions in marketplace.json to check or update, so don't go looking.
  • Both install paths must stay equivalent: Claude Code marketplace and npx skills. A Claude Code install brings a whole plugin (every skill under plugins/<name>/skills/); npx skills add … --skill <name> installs one skill directory and nothing above it. So a skill must be self-contained: everything it needs lives inside its own skills/<skill>/ directory, and nothing in SKILL.md may reach outside it — no ../ paths, no "see the other skill's file", no reliance on a sibling skill being present, and no symlinks (a symlink out of the directory arrives as a plain text file on a Windows checkout with core.symlinks=false — a silent, broken install). Duplicating shared prose or code into each skill is the correct trade-off, as visual-docs does with the renderer. A plugin may hold several skills; each must work alone. When you add a skill, also add it to the root README's --skill name table, and phrase cross-skill references so they degrade to a name a reader can install ("the full adversarial-review skill"), never a relative path.
  • Skills: extract whatever can be read on demand, but always keep the general guideline inline — otherwise the extraction is moot. The whole SKILL.md loads into context on every invocation, so keep it under ~500 lines. It holds what steers behavior on every pass — principles, the process outline, decision tables, rationalizations, red flags, the checklist — plus a short, self-sufficient summary of every extracted topic (the rule, the threshold, the one-line procedure). The comprehensive version — full procedures, routing tables, handoff templates, digests of other skills — goes in a .md file in the same skill directory, and the summary says exactly when to read it ("read cyclomatic-complexity.md before splitting a function"). An agent that never opens the side file must still do the right thing from the summary alone. Load-bearing discipline rules stay inline in full — an agent under pressure will skip a side file. Reference sibling files by bare filename, never a path, so both install paths ship them. And the skill must insist that the agent read every companion file on first use in a session, before any other step — a dedicated section near the top listing the files, plus a red flag and a checklist item — and re-read the named file at its step. Summaries are reminders of text already read, never a substitute. code-simplification is the worked example.
  • The visual-docs server has no authentication. --host / 0.0.0.0 binding must stay opt-in and documented as trusted-network-only.
  • Agents must never have to write code — not even a small script — to operate visual-docs. Every operation an agent performs (resolve a directory, serve, read comments, set status, lint, stop) must be a first-class node visual-docs-server.js --<command> / visual-docs-lint.js invocation that prints ready-to-read, formatted text (never JSON the agent must parse, and never something it has to curl/jq/python/node -e to consume). Keep these commands OS-agnostic as much as possible: do the platform-specific work (temp dirs via os.tmpdir(), backgrounding via detached spawn, HTTP via fetch) inside the Node CLI, so the skill only ever runs node <script> <args> — no nohup/&, no /tmp paths, no shell-only constructs. When you add an agent-facing capability, add a --command for it; don't make the agent improvise glue.

Read the full file on GitHub · 170 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. 3d ago First seen · 170 lines · 2,764 tokens per session scan A 46707ce3afb5

Subscribe to this mod's changes

claude-plugins CLAUDE.md is an instructions file published in the GitHub repository patrickdappollonio/claude-plugins (9 stars, last pushed 3d ago), licensed MIT. It adds 2,764 tokens to every session, about $0.0138 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.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,345 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens