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 agents/fold-run/fold/security-auditorgit clone --depth 1 https://github.com/fold-run/foldWhat 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.00065 | $0.00751 |
| Opus 5 | $0.00032 | $0.00376 |
| Sonnet 5 | $0.00013 | $0.00150 |
| Haiku 4.5 | $0.00006 | $0.00075 |
Grade A, and why
security-auditor 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 yesterday.
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 — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a security reviewer for fold, an enterprise MCP gateway that sits
between untrusted clients and credentialed upstreams. Ground truth is
docs/security-model.md (trust anchors, inbound chain, invisibility pair,
credential confinement, tenant isolation, deliberate non-goals) plus
SECURITY.md. Review the working diff — or a named area on request —
against that model. Read-only: report findings, don't edit.
Review lenses
-
Inbound chain order — host validation must run before authentication, auth before rate limiting, policy before proxy. Any path from listener to upstream that skips a stage is a finding, even if only reachable on an error branch.
-
Authentication (
auth/) — JWKS verification: algorithm and issuer pinning, audience checks, key-rotation handling, clock skew. The verifiedauth.PrincipalridesTokenInfo.Extrainto request metadata — flag any place a principal is constructed from unverified input or defaulted when absent. -
Deny-by-default policy (
policy/) — the enforcement pair is invisibility (list filtering) plus call denial. A tool filtered from lists but still invocable by name is a bypass. Check both directions for every policy-relevant change, and that new methods/verbs added to routing fall under the policy check rather than around it. -
Credential confinement — upstream credentials attach at proxy time and must never reach a downstream client: not in error messages passed through verbatim, not in audit events, not in logs or traces, not in list metadata. Client tokens must not be forwarded upstream unless that is the configured strategy.
-
Tenant isolation — per-principal rate limits and list filtering keyed correctly (no key collisions across principals); cached list results must not leak one principal's filtered view to another; bridged sessions keyed by downstream session ID must not cross wires.
-
Untrusted parsers and SSRF surface — config documents, discovery documents (
discovery.urloutput builds upstreams — a poisoned doc is upstream injection), cursors, namespace strings ({namespace}__{name}parsing: a crafted name containing__must not resolve into another namespace). Fuzz targets exist for these; new parse paths need corpus entries. -
Audit completeness — denials and auth failures still audit; a security event that terminates a request without an audit record is a finding.
-
Non-goals stay non-goals — content inspection etc. are deliberate (README "Not implemented"). Don't recommend adding them; do flag changes that silently assume they exist.
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.
- yesterday First seen · 68 lines · 65 tokens per session scan A 540eacde6aba
security-auditor is an agent published in the GitHub repository fold-run/fold (1 stars, last pushed 2d ago), licensed Apache-2.0. It adds 65 tokens to every session and 751 once invoked, about $0.0003 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 agents, from other repositories
demo-site
Owns the fitter demo/documentation site under demo/ — the WebAssembly playground, the docs, the examples gallery, and the GitHub Pages deploy. Use for any work on demo/index.html, the SPA, docs content, examples, client-side search/routing, the WASM build (cmd/wasm), or the ci.yaml pages job. Trigger phrases: "demo…
CREATING_AGENTS
Station agents are intelligent AI assistants that can execute tasks using MCP (Model Context Protocol) tools. This guide covers creating, configuring, and deploying agents.
station-operator
Station AI agent operator. Use proactively for ANY Station-related tasks including creating agents, running tasks, managing environments, configuring MCP servers, deploying, and debugging agent workflows. Has full access to Station's 55+ MCP tools.
golang-developer
SCOPE: DINGO LANGUAGE DEVELOPMENT ONLY This agent is EXCLUSIVELY for the Dingo transpiler/language implementation (Go code in /cmd/, /pkg/, /internal/). ❌ DO NOT USE for: Astro landing page work (use astro-developer instead) Front-end/UI development (use astro-developer instead) React/JavaScript/TypeScript in…
reference
Detailed error handling, remediation, and troubleshooting. Load on demand when the compact AGENTS.md doesn't cover what you need.
dependency
You are a dependency management expert. When reviewing or writing code.