Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/filipebraida/adonisjs-starter-kitnpx agentmods add skills/filipebraida/adonisjs-starter-kit/module-scaffoldingWrote 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/module-scaffolding)<a href="https://agentmods.dev/skills/filipebraida/adonisjs-starter-kit/module-scaffolding"><img src="https://agentmods.dev/badge/skills/filipebraida/adonisjs-starter-kit/module-scaffolding.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.1 | $0.00059 | $0.01800 |
| Opus 5 | $0.00030 | $0.00900 |
| Sonnet 5 | $0.00012 | $0.00360 |
| Haiku 4.5 | $0.00006 | $0.00180 |
Grade A, and why
module-scaffolding 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 7d 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 — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Module scaffolding
Every feature lives under app/<mod>/ as a self-contained module. There is no autoloader — preloads, import aliases, migration paths, tsconfig includes, and event listener mounts are all wired explicitly. Miss any of these and the module simply won't load, its rows won't migrate, or its event types won't typecheck.
Quick start — make:module
Do not wire by hand unless you have to. The generator creates the skeleton and injects every touchpoint idempotently:
node ace make:module <mod> # routes + controller + ui page + smoke test
node ace make:module <mod> --db --i18n --events
--db— addsdatabase/migrations/and registers its path inconfig/database.ts.--i18n— addsresources/lang/{en,fr,pt}/<mod>.jsonand registers the i18n loader.--events— addsstart/events.ts+types/events.ts, preloads events, and adds thetypes/**glob to the core tsconfig (skip that and theEventsListmerge breaks the client typecheck).
Always wired: the #<mod>/* alias, the #<mod>/routes preload, and the ui/** tsconfig include. After running it, pnpm dev (or any node ace) regenerates route/page types, then pnpm typecheck. The rest of this skill is what the command does under the hood — use it to add a piece later or to wire a module by hand.
Conventions
- Module dir tree & existing modules — see AGENTS.md → "Architecture — module per bounded context" (always in context). Create only the pieces you need;
routes.tsis the only mandatory file. - Aliases go in
apps/web/package.json→"imports". Add"#<mod>/*": "./app/<mod>/*.js". - Preloads go in
apps/web/adonisrc.ts→preloads. Always add() => import('#<mod>/routes')at minimum. Add#<mod>/start/eventsif the module emits or listens. Add#<mod>/start/viewif it mounts edge templates. - Migrations/seeders paths append to
apps/web/config/database.ts→connections.postgres.migrations.pathsandseeders.paths. - tsconfig include — when the module has
ui/, add../../<mod>/ui/**/*.tsand../../<mod>/ui/**/*.tsxtoapps/web/app/core/ui/tsconfig.json→include. Add../../<mod>/types/**/*.tswhen it hastypes/events.ts, or theEventsListmerge is invisible to the client tsc and event typechecks break. - i18n — if the module has UI strings, drop JSON in
resources/lang/{en,fr,pt}/<mod>.json. Three locales are canonical; all three must 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.
- 7d ago First seen · 121 lines · 59 tokens per session scan A 35c5adffe199
module-scaffolding is a skill published in the GitHub repository filipebraida/adonisjs-starter-kit (96 stars, last pushed 27d ago), licensed MIT. It adds 59 tokens to every session and 1,800 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-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, 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…