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/zebbern/pocmap/claude-mdgit clone --depth 1 https://github.com/zebbern/pocmapWhat 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.02315 | $0.02315 |
| Opus 5 | $0.01157 | $0.01157 |
| Sonnet 5 | $0.00463 | $0.00463 |
| Haiku 4.5 | $0.00231 | $0.00231 |
Grade A, and why
pocmap 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 — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PocMap Conventions
PocMap is an AI-friendly CVE / PoC / exploit-discovery toolkit (CLI + MCP server + Python API).
This file covers how to develop the project. For how AI agents consume the MCP tools, see
.claude/skills/pocmap-agent/references/mcp_tools.md (canonical MCP/agent guide; also
.claude/skills/pocmap-agent/SKILL.md). AGENTS.md holds general agent guidelines, not the
MCP tool contract. For full usage/API docs, see README.md.
Knowledge Freshness & Research Preferences (IMPORTANT!)
Do not rely solely on your internal knowledge or training data when making implementation decisions. Your memory is frequently outdated.
Before implementing anything non-trivial (especially integrations, tools, SDKs, platforms, AI agents, or architectural patterns):
-
Actively look up the latest official documentation, release notes, changelogs, and recommended approaches.
-
Check whether newer versions, official solutions, or better patterns already exist that would change how the task should be approached.
-
Prefer using current best practices and existing tools over rebuilding something from scratch based on older knowledge.
-
If there is any uncertainty about the current recommended way to do something, ask clarifying questions instead of defaulting to what you remember.
Why this matters:
Defaulting to internal knowledge often leads to outdated implementations. For example, an agent might implement an older pattern for something like MCP or an AI agent integration simply because that is what it “knows,” without checking whether a newer release, official SDK, or simpler approach has become available. Always verify first.
Commands
- Install (PyPI):
pip install "pocmap[server]"(omit[server]for CLI-only) - Install (dev clone):
pip install -e ".[server,dev]"(pytest, mypy, ruff + the MCP SDK); docs site:pip install -e ".[server,docs]"thenpython scripts/generate_mcp_docs.py --check && mkdocs build --strict - Run CLI:
pocmap lookup CVE-2021-44228(orpython -m pocmap ...); full command list:python -m pocmap --help - Lint:
ruff check src/pocmap - Type check:
mypy src(strict mode is on inpyproject.toml) - Run MCP server:
uvx --from 'pocmap[server]' pocmap-mcpor installedpocmap-mcp/python -m pocmap.mcp_server(add--transport sse|http,--host,--port,--debug) - Tests:
pytestworks and is offline by default; see Testing below.
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 · 115 lines · 2,315 tokens per session scan A ef344a33d0ee
pocmap CLAUDE.md is an instructions file published in the GitHub repository zebbern/pocmap (5 stars, last pushed 9d ago), licensed MIT. It adds 2,315 tokens to every session, about $0.0116 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
Observal AGENTS.md
AGENTS.md instructions for Observal/Observal, covering agents.md, what observal is, harness capability support, architecture at a glance and how the modularisation works.
open-agent-hub AGENTS.md
AGENTS.md instructions for guanyang/open-agent-hub, covering agents.md, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.
cvehound AGENTS.md
AGENTS.md instructions for evdenis/cvehound, covering agents.md, where to look, adding a cve rule, metadata headers are test inputs, not documentation and gotcha: a files: path that resolves nowhere is silent.
cvehound CLAUDE.md
Claude Code instructions for evdenis/cvehound, a project described as: Check linux sources dump for known CVEs.
open-agent-hub CLAUDE.md
Claude Code instructions for guanyang/open-agent-hub, covering claude.md, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.
open-agent-hub GEMINI.md
Gemini CLI instructions for guanyang/open-agent-hub, covering gemini.md, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.