module-scaffolding

module-scaffolding is a skill for Claude Code from filipebraida/adonisjs-starter-kit. It costs 59 tokens per session (1,800 once invoked), scanned A, original, MIT.

A generator for adding a self-contained module to an AdonisJS monorepo, a repository that contains multiple related parts of an application. It creates the module structure and connects it to the project's configuration.

In plain words
What is it for?
It helps create a new module with routes, a controller, a user-interface page, and a smoke test, with optional database, translation, and event support.
Why use it?
It removes the need to remember every registration required for routes, database migrations, translations, events, imports, and TypeScript checks.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions AGENTS.md.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is "../../<mod>/ui/**/*.ts",.

Good fit It helps create a new module with routes, a controller, a user-interface…

Compare 6 skills from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/filipebraida/adonisjs-starter-kit
agentmods
npx agentmods add skills/filipebraida/adonisjs-starter-kit/module-scaffolding

Made for: Claude Code.

Wrote 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.

agentmods badge for module-scaffolding

README.md
[![agentmods](https://agentmods.dev/badge/skills/filipebraida/adonisjs-starter-kit/module-scaffolding.svg)](https://agentmods.dev/skills/filipebraida/adonisjs-starter-kit/module-scaffolding)
Your own site
<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>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,800 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash 35c5adffe199, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

packages/skills/module-scaffolding/SKILL.md · 121 lines

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 — adds database/migrations/ and registers its path in config/database.ts.
  • --i18n — adds resources/lang/{en,fr,pt}/<mod>.json and registers the i18n loader.
  • --events — adds start/events.ts + types/events.ts, preloads events, and adds the types/** glob to the core tsconfig (skip that and the EventsList merge 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.ts is the only mandatory file.
  • Aliases go in apps/web/package.json"imports". Add "#<mod>/*": "./app/<mod>/*.js".
  • Preloads go in apps/web/adonisrc.tspreloads. Always add () => import('#<mod>/routes') at minimum. Add #<mod>/start/events if the module emits or listens. Add #<mod>/start/view if it mounts edge templates.
  • Migrations/seeders paths append to apps/web/config/database.tsconnections.postgres.migrations.paths and seeders.paths.
  • tsconfig include — when the module has ui/, add ../../<mod>/ui/**/*.ts and ../../<mod>/ui/**/*.tsx to apps/web/app/core/ui/tsconfig.jsoninclude. Add ../../<mod>/types/**/*.ts when it has types/events.ts, or the EventsList merge 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.

Read the full file on GitHub · 121 lines

Changes

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.

  1. 7d ago First seen · 121 lines · 59 tokens per session scan A 35c5adffe199

Subscribe to this mod's changes

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.

Related

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…

supermemoryai/supermemory · 81 tokens

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.

cosscom/coss · 46 tokens

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.…

cosscom/coss · 85 tokens

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.

nikhils4/ui-beats · 62 tokens

tuturuuu-external-apps

Integrate branded external apps with Tuturuuu app sessions, uploads, and content APIs.

tutur3u/platform · 26 tokens

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…

Ameyanagi/morphos · 79 tokens