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/bch1212/queryshield/claude-mdgit clone --depth 1 https://github.com/bch1212/queryshieldWrote 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/bch1212/queryshield/claude-md)<a href="https://agentmods.dev/instructions/bch1212/queryshield/claude-md"><img src="https://agentmods.dev/badge/instructions/bch1212/queryshield/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.00745 | $0.00745 |
| Opus 5 | $0.00373 | $0.00373 |
| Sonnet 5 | $0.00149 | $0.00149 |
| Haiku 4.5 | $0.00075 | $0.00075 |
Grade A, and why
queryshield 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 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.
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 — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QueryShield — Claude Code Context
What this is
Secure SQL proxy between AI agents and customer databases. Agents POST to
/v1/query in NL or structured SQL. QueryShield validates → translates →
applies row-level security → executes → audits. Agents never see connection
strings.
Architecture
proxy.py— engine. Every query flows throughexecute_query().safety.py— sqlglot AST validator. Never use keyword filtering.rls.py— AST-level WHERE injection + schema/table whitelists. Never string concat.vault.py— Fernet-encrypted credential store, in our internal Postgres. Replaces AWS Secrets Manager from the original spec (Brett's stack uses Railway, no AWS).nl_to_sql.py— Claude tool_use loop withget_schema+validate_querytools. Prompt caching on system + schema.schema.py— DB introspection with two-tier cache (in-process + Redis).cache.py— result cache. Redis ifREDIS_URL, else in-process dict.audit.py— append-only metadata log. Never log row contents.billing.py— Stripe-backed quotas. 30-day rolling reset.mcp_server.py— FastMCP wrapper, distribution channel for agent frameworks.main.py— FastAPI app and HTTP surface.start.py— Railway entrypoint. ReadsPORTviaos.getenv(Railway exec's startCommand without a shell, so$PORTdoesn't expand).
Critical rules
- NEVER allow non-SELECT —
safety.pyblocks at the AST level. - NEVER log query result rows — audit table holds metadata only.
- NEVER return raw connection strings in any API response.
- VAULT_KEY rotation = re-encrypt every row under the new key. Losing the key means losing access to every registered DB.
- Customer DB credentials should be read-only at the source. Defense in depth — even if safety + RLS were bypassed, the DB would refuse writes.
Pricing tiers (models.TIER_LIMITS)
- Starter: $500/mo · 3 DBs · 1M queries/mo
- Pro: $1,500/mo · 10 DBs · 10M queries/mo · audit export
- Enterprise: $3,500/mo · unlimited · SSO, SIEM webhook
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.
- 3d ago First seen · 63 lines · 745 tokens per session scan A b9cf9f19be49
queryshield CLAUDE.md is an instructions file published in the GitHub repository bch1212/queryshield (1 stars, last pushed 21d ago), licensed MIT. It adds 745 tokens to every session, about $0.0037 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
dbhub copilot-instructions.md
Copilot instructions for bytebase/dbhub: This project provides an MCP server (DBHub) for secure SQL access to the development database.
apple-health-mcp AGENTS.md
Instructions for neiltron/apple-health-mcp, covering repository guidance, project, validate changes, code map and invariants.
MCP-PostgreSQL-Ops copilot-instructions.md
Instructions for call518/MCP-PostgreSQL-Ops, covering architecture overview, core components, key patterns, in functions.py and development workflows.
NyxID CLAUDE.md
Instructions for ChronoAIProject/NyxID, covering project overview, critical rules, 1. mongodb model conventions, 2. layer architecture and 3. error handling.
FalkorDB-MCPServer AGENTS.md
Instructions for FalkorDB/FalkorDB-MCPServer, covering project guidelines, build & install, development, testing and pre-commit checks.
counterpoise-ledger CLAUDE.md
Instructions for jeffjjohnston/counterpoise-ledger, covering claude.md, project overview, development commands, essential commands and testing.