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/resq-software/pypi/claude-mdgit clone --depth 1 https://github.com/resq-software/pypiWrote 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/resq-software/pypi/claude-md)<a href="https://agentmods.dev/instructions/resq-software/pypi/claude-md"><img src="https://agentmods.dev/badge/instructions/resq-software/pypi/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.00589 | $0.00589 |
| Opus 5 | $0.00295 | $0.00295 |
| Sonnet 5 | $0.00118 | $0.00118 |
| Haiku 4.5 | $0.00059 | $0.00059 |
Grade A, and why
pypi 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 — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ResQ PyPI Packages — Agent Guide
Mission
Registry workspace for ResQ Python packages published to PyPI.
Stack
- Runtime: Python 3.11+
- Build: Hatchling
- Package Manager: uv
- Testing: pytest (+ hypothesis for property-based tests in resq-mcp)
- Linting: ruff + mypy (strict)
- Release: python-semantic-release for both published packages. Triggered manually via
workflow_dispatch— the branch ruleset rejects the release commit, so pushes do not publish.
Repo Map
packages/resq-mcp/— FastMCP server for AI agent integration (drone fleet, PDIE, DTSOP)packages/resq-dsa/— Zero-dependency data structures & algorithms (Bloom, CountMin, Graph, Heap, Trie, Rabin-Karp)packages/fleet-api/— FastAPI service for fleet state and sector deployments. Not published; no release lane.
Commands
# resq-mcp
cd packages/resq-mcp && uv sync && uv run pytest
uv run ruff check src/ tests/
uv run mypy src/
# resq-dsa
cd packages/resq-dsa && uv sync && uv run pytest
uv run ruff check src/ tests/
# fleet-api
cd packages/fleet-api && uv sync && uv run pytest
uv run ruff check src/ tests/
Rules
resq-dsamust have zero runtime dependencies — stdlib only- Each package has its own
pyproject.tomland virtual environment - Python 3.11+ minimum across all packages
- ruff for linting, mypy for type checking (strict mode)
- All source files must include Apache-2.0 license header
AGENTS.mdis the source of truth forCLAUDE.md— never editCLAUDE.mddirectly
Safety
- Don't add runtime dependencies to
resq-dsa - Don't publish without running full test suite and linting
resq-mcpsafe mode (RESQ_SAFE_MODE=true) is default — mutations raise errors
Workflow
cdinto the specific package directoryuv syncto install dependenciesuv run pytestto testuv run ruff check src/ tests/to lint- Summarize: files changed, behavior change, tests run
References
- resq-mcp README — Full MCP server documentation
- resq-dsa README — DSA library documentation
- README — Package overview
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 · 60 lines · 589 tokens per session scan A 251d9c56b1d2
pypi CLAUDE.md is an instructions file published in the GitHub repository resq-software/pypi (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 589 tokens to every session, about $0.0029 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
microsoft-planner-mcp python.instructions.md
Use when writing or modifying Python source code. Covers module layout, async patterns, imports, and framework conventions for FastMCP + Microsoft Graph SDK.
appkit-bpmn-server python.instructions.md
Python development guidelines and best practices for the appkit project.
python-sdk AGENTS.md
AGENTS.md instructions for modelcontextprotocol/python-sdk, covering development guidelines, note for ai agents, branching model, package management and code quality.
Embody AGENTS.md
AGENTS.md instructions for dylanroscover/Embody, covering embody + envoy - ai instructions, critical rules, td python rules, network layout rules and mcp server safety rules.
property-shared CLAUDE.md
Claude Code instructions for paulieb89/property-shared, covering claude.md, project overview, commands, run api server and run cli (core mode - no server needed).
ros2_mcp AGENTS.md
AGENTS.md instructions for wise-vision/ros2_mcp, covering agent instructions, project layout, dev setup (preferred), running locally and tests.