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/dvd90/chassis/add-resourcenpx skills add dvd90/chassis --skill add-resourcegit clone --depth 1 https://github.com/dvd90/chassisWrote 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/dvd90/chassis/add-resource)<a href="https://agentmods.dev/skills/dvd90/chassis/add-resource"><img src="https://agentmods.dev/badge/skills/dvd90/chassis/add-resource.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.00059 | $0.00938 |
| Opus 5 | $0.00030 | $0.00469 |
| Sonnet 5 | $0.00012 | $0.00188 |
| Haiku 4.5 | $0.00006 | $0.00094 |
Grade A, and why
add-resource 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 — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add a resource to Chassis
Scaffold and implement a REST resource so it matches Chassis conventions exactly. Follow these steps in order. Read AGENTS.md first if you haven't — it defines the conventions this skill applies.
Step 1 — Scaffold
Run the generator (converts the name to a controller class + base path):
npm run gen <Name> # e.g. npm run gen book -> BookController at /books
This creates src/controllers/<Name>.controller.ts, a smoke test in
src/__tests__/, and adds the export to src/controllers/index.ts. If
the generator isn't available, create those three by hand modeled on an
existing *.controller.ts, and add the export * from './<Name>.controller';
line yourself.
Step 2 — Define the input schema(s)
For every route that accepts input, write a zod schema. Put it at the top
of the controller file or in src/schemas/<name>.schema.ts:
const createBookSchema = z.object({
title: z.string().min(1),
author: z.string().min(1),
year: z.coerce.number().int().min(0).optional()
});
Step 3 — Implement the routes
Fill in the controller. Rules that keep it idiomatic:
- Decorate each method with
@route(method, path, [middlewares])(or@protectedRoutewhen it requires auth). - Attach validation via
validate({ body|query|params: schema })in the middleware array. - Return through
req.resHandler— pick the helper that matches the outcome (ok,created,noContent, …). - Signal failures by throwing
AppErrorwith the rightERROR_CODESentry. No try/catch.
@route('get', '/:id')
async show(req: Request): Promise<Response> {
const book = await BookModel.findById(req.params.id);
if (!book) throw new AppError(ERROR_CODES.NOT_FOUND, 'Book not found');
return req.resHandler.ok(book);
}
@route('post', '/', [validate({ body: createBookSchema })])
async create(req: Request): Promise<Response> {
return req.resHandler.created(await BookModel.create(req.body));
}
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 · 103 lines · 59 tokens per session scan A d6359eefff91
add-resource is a skill published in the GitHub repository dvd90/chassis (6 stars, last pushed 27d ago), licensed MIT. It adds 59 tokens to every session and 938 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 skills, from other repositories
merge-seed
Merge upstream React Starter Kit updates (the seed remote) into main, preserving this project's identity, scope, and behavior. Use when asked to sync, pull, or merge the seed / starter kit / upstream template.
ocli-api
Turn any OpenAPI/Swagger API into CLI commands and call them. Search endpoints with BM25, check parameters, execute — no MCP server needed.
ultracite
Ultracite is a zero-config linting and formatting preset for JavaScript/TypeScript projects. Use when: (1) Setting up or initializing Ultracite in a project (ultracite init), (2) Running linting or formatting commands (check, fix, doctor), (3) Writing or reviewing JS/TS code in a project that uses Ultracite — to…
next-upgrade
Upgrade Next.js to the latest version following official migration guides and codemods.
procedure
Vovk.ts procedures — atomic unit of server-side logic in Vovk project. Use whenever user asks to build ANYTHING producing or consuming data on server — page loading data ("users page", "dashboard", "product list"), endpoint, API handler, server action, form submission, controller, validation with Zod / Valibot /…
rpc
Vovk.ts RPC client — how vovk generate turns controllers into type-safe client modules, composed vovk-client vs segmented clients, call shape (apiRoot, params, body, query, meta, init, disableClientValidation, validateOnClient, interpretAs, transform, fetcher), customizing generation via outputConfig.imports.fetcher +…