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 skills/qauth-labs/qauth/fastifynpx skills add qauth-labs/qauth --skill fastifygit clone --depth 1 https://github.com/qauth-labs/qauthWrote 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/skills/qauth-labs/qauth/fastify)<a href="https://agentmods.dev/skills/qauth-labs/qauth/fastify"><img src="https://agentmods.dev/badge/skills/qauth-labs/qauth/fastify.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.00071 | $0.01667 |
| Opus 5 | $0.00036 | $0.00834 |
| Sonnet 5 | $0.00014 | $0.00333 |
| Haiku 4.5 | $0.00007 | $0.00167 |
Grade A, and why
fastify 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Fastify (QAuth)
Standards-aligned Fastify usage for QAuth: plugin authoring, route validation, and production deployment. Use this skill when creating plugins, wiring routes, reviewing Fastify code, or configuring the server for production.
When to Use This Skill
- Adding a new
@qauth-labs/fastify-plugin-*library - Wrapping a shared utility (DB, cache, JWT, PKCE, etc.) as a Fastify plugin
- Defining or reviewing routes (schemas, type provider, validation)
- Configuring the server for production (reverse proxy, listen address, CVE/version)
- Reviewing or refactoring plugin registration order or decorator availability
- Questions about encapsulation,
fastify-plugin, or lifecycle hooks
Production
- Use a reverse proxy (e.g. Nginx, HAProxy). Do not expose the Fastify app directly to the internet. Handle TLS, HTTP→HTTPS redirects, and static assets at the proxy.
- Listen on
0.0.0.0in containers/Kubernetes so readiness/liveness probes can reach the app (the default127.0.0.1is unreachable from the pod network). - Trust proxy: behind a reverse proxy, configure
trustProxysorequest.ipandX-Forwarded-*headers are correct.
Routes and Validation
- Schema: register
schema.body,schema.querystring,schema.params, andschema.response(e.g.response: { 200: responseSchema }). Fastify v5 uses schemas for both validation and types. - Type provider: call
fastify.withTypeProvider<ZodTypeProvider>()before defining routes when using Zod schemas. - See the
validationskill for schema organization and Zod v4 validators.
fastify.withTypeProvider<ZodTypeProvider>().post(
'/login',
{
schema: {
body: loginSchema,
response: { 200: loginResponseSchema },
},
config: { rateLimit: { max: env.LOGIN_RATE_LIMIT, timeWindow: env.LOGIN_RATE_WINDOW * 1000 } },
},
async (request, reply) => {
/* ... */
}
);
Security and Dependencies
- Fastify version: keep Fastify ≥ 5.3.2 to avoid CVE-2025-32442 (content-type parsing bypass in 5.0.0–5.3.0). Do not rely on content-type-specific validation without normalizing the header.
- Audit: run
pnpm auditregularly; fix or document high/critical vulnerabilities (see thesecurityskill). - Node: Fastify v5 requires Node.js v20+; this project uses
>=24.7.0.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 132 lines · 71 tokens per session scan A 00d338521b4a
fastify is a skill published in the GitHub repository qauth-labs/qauth (24 stars, last pushed 8d ago), licensed Apache-2.0. It adds 71 tokens to every session and 1,667 once invoked, about $0.0004 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-30.
Other skills, from other repositories
add-go-test
Write or extend Go unit tests in this repo. Use when the user asks to add or update Go tests.
update-go-version
Update the Go toolchain version across the repo.
update-important-modules
Refresh the repo's important Go modules when the dependency set drifts.
code-design
TypeScript conventions, code design principles (SOLID, self-documenting code, file organization), structural design heuristics (dependency width, LoD, output arguments), pnpm rules, ES2024 target, Pi SDK patterns, and Biome/ESLint conflict workarounds. Load during implementation, refactoring, or code review.
typescript-magician
Designs complex generic types, refactors any types to strict alternatives, creates type guards and utility types, and resolves TypeScript compiler errors. Use when the user asks about TypeScript (TS) types, generics, type inference, type guards, removing any types, strict typing, type errors, infer, extends…
compiler-port
Port a compiler pass from TypeScript to Rust. Gathers context, plans the port, implements in a subagent with test-fix loop, then reviews.