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 skills add filipebraida/adonisjs-starter-kit --skill routesgit clone --depth 1 https://github.com/filipebraida/adonisjs-starter-kitWrote 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/filipebraida/adonisjs-starter-kit/routes)<a href="https://agentmods.dev/skills/filipebraida/adonisjs-starter-kit/routes"><img src="https://agentmods.dev/badge/skills/filipebraida/adonisjs-starter-kit/routes/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/filipebraida/adonisjs-starter-kit/routes"><img src="https://agentmods.dev/badge/skills/filipebraida/adonisjs-starter-kit/routes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.1 | $0.00098 | $0.01273 |
| Opus 5 | $0.00049 | $0.00636 |
| Sonnet 5 | $0.00020 | $0.00255 |
| Haiku 4.5 | $0.00010 | $0.00127 |
Grade A, and why
routes 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 9d 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 — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Routes
Each module owns its routes.ts. The file gets discovered by the preload wired in [[module-scaffolding]] — there is no autoloader. Routes have three loads to bear: they're the source of truth for URL generation (typed clients like Tuyau and the server-side URL builder read the named routes), for the middleware chain that guards the endpoint, and for the param typing that keeps garbage input out of the ORM.
Rules
- Numeric params get
router.matchers.number(). Without it, a non-numeric URL reaches the controller,Number('foo') → NaN, and Postgres throwsinvalid input syntax for type integer— the response is a 500. With the matcher the router 404s upstream, before boot. - CRUD verbs go through
router.resource(). Custom verb actions (activate, publish, finalize) are separaterouter.post(...)in the same file, not extra methods on the resource controller. - Route names follow the URL hierarchy:
parents.children.action. Named routes are the single source of truth for both the typed frontend URL client and the server-sideurlFor(...)used inside jobs and listeners. Both derive the URL from the name; the name is a contract. - Param names match across parents: for a nested resource named
parents.childrenuse.params({ parents: 'parent_id' })and pin every id:.where('parent_id', router.matchers.number()).where('id', router.matchers.number()). Snake_case, semantic, matching what the URL client expects. - Group by shared middleware. Put every route that shares the same auth/middleware stack inside one
router.group(() => {...}).middleware(...)block. Public routes live outside, guarded ones inside.
Reference shape
router
.group(() => {
// Top-level resource
router
.resource('/entities', EntitiesController)
.only(['index', 'create', 'store', 'show'])
.where('id', router.matchers.number())
.as('entities')
// Verb action on an entity
router
.post('/entities/:id/publish', [EntitiesController, 'publish'])
.where('id', router.matchers.number())
.as('entities.publish')
// Nested resource — rename the parent segment + pin every numeric id
router
.resource('parents.children', ChildrenController)
.only(['index', 'store', 'destroy'])
.params({ parents: 'parent_id' })
.where('parent_id', router.matchers.number())
.where('id', router.matchers.number())
// Verb action inside the nested resource
router
.post('/parents/:parent_id/children/:id/approve', [ChildrenController, 'approve'])
.where('parent_id', router.matchers.number())
.where('id', router.matchers.number())
.as('parents.children.approve')
})
.middleware(middleware.auth())
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.
- 9d ago First seen · 86 lines · 98 tokens per session scan A 0e9f0f9b73fc
routes is a skill published in the GitHub repository filipebraida/adonisjs-starter-kit (96 stars, last pushed 29d ago), licensed MIT. It adds 98 tokens to every session and 1,273 once invoked, about $0.0005 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
supermemory
Supermemory is a state-of-the-art memory and context infrastructure for AI agents. Use this skill when building applications that need persistent memory, user personalization, long-term context retention, or semantic search across knowledge bases. It provides Memory API for learned user context, User Profiles for…
coss-particles
Index of all COSS UI particle examples. Use when implementing UI features to find copy-paste-ready component patterns built on coss primitives. Each particle has a description and a JSON URL for easy installation.
coss
Helps implement coss UI components correctly. Use when building UIs with coss primitives and patterns (buttons, dialogs, selects, forms, menus, tabs, segmented controls, inputs, toasts, etc.), migrating from shadcn/Radix to coss/Base UI, composing trigger-based overlays, or troubleshooting coss component behavior.…
ui-beats
Use this skill when users want to add, customize, or troubleshoot UI Beats components in React/Next.js projects. It covers component selection, shadcn registry installation from uibeats.com, the UI Beats MCP server, motion and reduced-motion handling, and integration patterns for animated sections.
tuturuuu-external-apps
Integrate branded external apps with Tuturuuu app sessions, workspace invitations and members, Drive storage, uploads, and content APIs.
morphous-catalog
Create or refresh Morphous website design-system/theme bundles from animal, insect, plant, landscape, mineral, weather, or other nature motifs. Use when Codex is asked to generate Morphous motif images, light/dark design-system boards, reusable image prompts, generated web assets, shadcn/tweakcn theme exports, or the…