adonisjs skills

15 tagged adonisjs, measured the same way as everything else here.

Browse within: ReAct 15monorepo 15shadcn-ui 15tailwindcss 15

actions-events

01

filipebraida/adonisjs-starter-kit

Skill Claude CodeCodex

Action + event pattern for AdonisJS. Actions are single-purpose classes with .handle(input); they never touch HttpContext and never call side-effect code (mail, notifications, transmit) directly — they emit a domain event and a listener wired in /start/events.ts runs the effect. Use when adding a new action, wiring a…

94 22d ago A 111 tokens original MIT

authorization

02

filipebraida/adonisjs-starter-kit

Skill Claude CodeCodex

RBAC + Bouncer pattern in an AdonisJS + Inertia app. Capabilities live in a PERMISSIONS const, role slugs in ROLES; a WithRoles mixin composes into User to expose hasPermission / hasRole / syncRoles; BasePolicy subclasses gate routes; the frontend consumes a typed useCan() prop. Escalation is protected in depth. Use…

94 22d ago A 145 tokens original MIT

crud

03

filipebraida/adonisjs-starter-kit

Skill Claude CodeCodex

Build an end-to-end CRUD stack in AdonisJS + Inertia: resource route → thin controller → VineJS validator → Bouncer policy → single-purpose action → transformer variant → Inertia page. Trigger on: "add CRUD for X", "create resource", "list/create/edit/delete X", "resource endpoint".

94 22d ago A 66 tokens original MIT