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/theagenticguy/agentic-plugins/claude-mdgit clone --depth 1 https://github.com/theagenticguy/agentic-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.01213 | $0.01213 |
| Opus 5 | $0.00607 | $0.00607 |
| Sonnet 5 | $0.00243 | $0.00243 |
| Haiku 4.5 | $0.00121 | $0.00121 |
Grade A, and why
agentic-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 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.
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 — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agentic-plugins
Development context for the agentic-plugins repo. This CLAUDE.md is project-level memory for when you're editing the marketplace — it is NOT shipped as a plugin component. Plugin instructions go into SKILL.md files and agent system prompts.
Repo Structure
This repo is a Claude Code plugin marketplace at the root, hosting multiple plugins under
plugins/ as sibling directories. Each plugin versions independently.
.claude-plugin/
marketplace.json # Marketplace registry — lists every plugin
plugins/
agentic-skills/ # Flagship plugin
.claude-plugin/plugin.json
.mcp.json # Bundled MCP servers (context7, deepwiki, brave, tavily, exa, you, awsknowledge)
skills/ # Skill reference files (the core content)
agents/ # Agent definitions (if present)
plugin-gardener/ # Catalog-hygiene plugin
.claude-plugin/plugin.json
skills/ references/ scripts/
tools/ # Repo-wide dev tooling (validators, scaffolding)
Harness tool names — do not confuse
Two separate tool families with similar names. Skills authored here must reference the correct one.
Agent— spawns a subagent. Parameters:subagent_type,prompt,description,model,run_in_background,isolation. NoStop/Outputsiblings — backgrounded agents auto-notify on completion. Stuck-recovery pattern is "launch a freshAgentwith a skip-completed-sections prompt," not kill-and-resume.TaskCreate/TaskUpdate/TaskList/TaskGet/TaskStop— the todo-list tools. Track multi-step work, mark items in_progress / completed, wireaddBlockedBydependencies. Do NOT spawn subagents.
No roadmap or migration commentary in skill files
SKILL.md, agent definitions, and everything under references/ / templates/ ship as prompt
content. Do NOT include forward-looking notes, migration history, authoring roadmap (TODO/FIXME), or
meta-commentary about the skill's own state. That belongs in the PR description or a CHANGELOG —
never in a file Claude reads as instructions. It costs tokens on every load and rots the moment the
referenced work lands or gets dropped.
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 · 106 lines · 1,213 tokens per session scan A 4c52752683db
agentic-plugins CLAUDE.md is an instructions file published in the GitHub repository theagenticguy/agentic-plugins (5 stars, last pushed 21d ago), licensed MIT. It adds 1,213 tokens to every session, about $0.0061 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-31.
Other instructions, from other repositories
agentsmd AGENTS.md
AGENTS.md instructions for daichunghy/agentsmd, covering agents.md, setup, build, test and conventions.
adeptability AGENTS.md
Instructions for itaywol/adeptability, a project described as: Cross-harness AI skill portability CLI. Author an agent skill once, sync it into Claude Code, Cursor, Copilot, Codex, OpenCode & 45+ AI coding agents. Safety scanner, content-hash drift detection. A package manager / dotfiles for AI coding agent skills.
intelligent-terminal rust.instructions.md
Concise Rust coding conventions for this repository.
Browser4 CLAUDE.md
Instructions for platonai/Browser4, covering browser4 — project context for claude, architecture, key dispatch chain (cli → browser), batch commands and e2e test structure.
crystal CLAUDE.md
Instructions for stravu/crystal, covering crystal - multi-session claude code manager, project overview, references, implementation status: ✅ complete and ✅ implemented features.
agent-ship CLAUDE.md
Instructions for Agent-Ship/agent-ship, covering claude.md, project overview, commands, docker development (recommended) and local development (no docker).