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/global-slice/claude-plugin/agents-mdgit clone --depth 1 https://github.com/Global-Slice/claude-pluginWhat 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.00800 | $0.00800 |
| Opus 5 | $0.00400 | $0.00400 |
| Sonnet 5 | $0.00160 | $0.00160 |
| Haiku 4.5 | $0.00080 | $0.00080 |
Grade A, and why
claude-plugin AGENTS.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 — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Contributor guide for AI agents working on the Slice Claude plugin marketplace.
Repository layout
claude-plugin/
├── .claude-plugin/marketplace.json # Marketplace manifest (lists all plugins)
├── .github/
│ ├── workflows/
│ │ ├── validate_plugin.yml # PR: claude plugin validate + version sync
│ │ ├── release.yml # Tag push: build zip + GitHub Release
│ │ └── auto-tag.yml # Main push: auto-tag on version bump
│ └── dependabot.yml # GitHub Actions updates
├── scripts/
│ ├── build-release-claude.sh # Stage plugins/slice-global/ → dist/slice-claude-<v>.zip
│ └── validate-versions.sh # Keep marketplace.json + plugin.json in sync
├── plugins/slice-global/ # The slice-global plugin
│ ├── .claude-plugin/plugin.json # Plugin manifest (canonical version source)
│ ├── .mcp.json # MCP server config (Slice HTTP endpoint)
│ └── skills/ # Claude skills (one folder per skill)
├── AGENTS.md # This file
├── CHANGELOG.md # Keep-a-Changelog format
├── LICENSE # MIT
└── README.md # Install instructions + permanent zip URL
Version-bump checklist
The canonical version lives in plugins/slice-global/.claude-plugin/plugin.json. When bumping:
- Update
versioninplugins/slice-global/.claude-plugin/plugin.json(source of truth). - Update top-level
versionandmetadata.versionin.claude-plugin/marketplace.json. Do not add aversionfield to the plugin entry insidemarketplace.json—plugin.jsonis the only source of truth. - Keep marketplace discovery fields current: top-level
description, plugindisplayName,tags,keywords,homepage,repository, and theskillspath list (relative to each plugin root). - Add a new dated entry to
CHANGELOG.md. - Merge to
main— theauto-tag.ymlworkflow creates the git tag automatically.
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 · 59 lines · 800 tokens per session scan A dcb288a9781d
claude-plugin AGENTS.md is an instructions file published in the GitHub repository Global-Slice/claude-plugin (9 stars, last pushed 1mo ago), licensed MIT. It adds 800 tokens to every session, about $0.0040 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
context-mode CLAUDE.md
Claude Code instructions for mksglu/context-mode, covering context-mode — mandatory routing rules, think in code — mandatory, blocked — do not attempt, curl / wget — blocked and inline http — blocked.
claude-skills CLAUDE.md
Instructions for secondsky/claude-skills, covering claude skills - project context, ⚠️ critical: communication rule — the most important rule, ⚠️ critical: repository policy - never touch jezweb repo, ❌ forbidden actions (jezweb repo) and ✅ required actions (secondsky repo).
claude-skills AGENTS.md
Instructions for secondsky/claude-skills, covering agent instructions, ⚠️ critical: communication rule — the most important rule and full project context.
verify CLAUDE.md
Instructions for opslane/verify, covering project, architecture, boundaries, skill sync and engine work.
agentic-seo-skills AGENTS.md
Instructions for agencia-conversion/agentic-seo-skills, covering agentic seo — agent runtime contract, mission, six pillars, audience and delivery — web companion first.
rgotify AGENTS.md
AGENTS.md instructions for dinglebear-ai/rgotify, a project described as: Rust MCP server and CLI for Gotify push notifications, with stdio/HTTP transports, auth, Claude/Codex plugin packaging, and npm/GitHub Release distribution.