🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

adonisjs-maestro

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonisjs-maestro

Install AdonisJS Maestro agent skills by stack

latest
Source
npmnpm
Version
0.1.2
Version published
Weekly downloads
4
-82.61%
Maintainers
1
Weekly downloads
 
Created
Source

Skills

Reusable agent skills for AdonisJS, Lucid, Inertia, Japa, and full-cycle engineering orchestration.

Install

Guided Installer

Use the adonisjs-maestro CLI to install the right skills for your stack:

npx adonisjs-maestro

Non-interactive examples:

npx adonisjs-maestro --stack=vue --yes
npx adonisjs-maestro --stack=react --global --agent=codex --yes
npx adonisjs-maestro --skills=maestro,adonisjs,lucid,japa --yes

Available stacks:

StackSkills
monorepomaestro, adonisjs, lucid, japa
hypermediamaestro, adonisjs, lucid, japa, edge
reactmaestro, adonisjs, lucid, japa, inertia-react
vuemaestro, adonisjs, lucid, japa, inertia-vue
customChoose individual skills

Direct Skills CLI

Install the collection with the skills CLI:

npx skills add lncitador/adonisjs-maestro

For a global install:

npx skills add lncitador/adonisjs-maestro -g --yes

Restart your agent after installing so the new skills are loaded.

Skills

SkillUse it for
maestroOrchestrating full-cycle app work: intake, planning, implementation, verification, commit, push, and PR
adonisjsAdonisJS v7 backend work: migrations, models, transformers, controllers, routes, auth, policies, services, events, and review
lucidLucid ORM and SQL layer: migrations, schema generation, models, relationships, query builders, transactions, factories, and seeders
edgeEdge.js server-side templates in AdonisJS Hypermedia apps: layouts, components, forms, slots, and template state
inertia-vueVue 3 frontend patterns in AdonisJS + Inertia projects
inertia-reactReact frontend patterns in AdonisJS + Inertia projects
japaJapa testing in AdonisJS apps: API tests, browser tests, console tests, fakes, swaps, and database setup

In Progress

SkillStackUse it for
tuyauapi-monorepoTuyau end-to-end type-safe API client: codegen, typed routes, and RPC-style calls

Recommended Entry Point

Use maestro when the task is broader than a single framework question.

INTAKE -> PLANNING -> BUILD -> VERIFY -> PUBLISH -> DONE

Examples:

/maestro plan and implement this AdonisJS + Inertia feature.
/maestro review this PR against the implementation plan.
/maestro verify, commit, push, and open a PR for this change.

maestro coordinates the other skills instead of replacing them. For example, an AdonisJS + Inertia Vue task should usually combine:

  • /maestro for phase control and workflow gates
  • /adonisjs for backend contracts and routing
  • /lucid for migrations, models, relationships, query builders, and factories
  • /inertia-vue for frontend page/form patterns
  • /japa for test strategy and fixtures

Direct Skill Usage

Use a specialized skill directly when the request is narrow:

/adonisjs create a controller, route, and validator for posts.
/lucid create a migration, model relationship, and factory for posts.
/japa write a functional test with loginAs.
/inertia-vue fix this Form component.
/inertia-react type these generated Data props.

Repository Layout

All skills live under skills/. Each folder contains a required SKILL.md file and optional resources:

skills/
├── maestro/
├── adonisjs/
├── lucid/
├── edge/
├── inertia-vue/
├── inertia-react/
└── japa/

The framework skills include references and runbooks for deeper context. The maestro skill intentionally has no scripts or references: it is an orchestration layer.

Development

Use the Skills CLI to search, install, check, and update skills:

npm run typecheck
npm run build
npx skills find adonisjs
npx skills check
npx skills update

Before publishing changes, make sure each skill folder contains a valid SKILL.md with YAML frontmatter:

---
name: skill-name
description: Use when...
---

Keep optional resources (references/, scripts/, assets/, agents/) only when they directly support the skill.

Release

Releases are created with release-it:

npm run release

The release command runs typecheck, tests, and build before bumping the package version, creating the release commit, and tagging it as v<version>. Pushing the tag triggers GitHub Actions to publish adonisjs-maestro to npm.

Configure npm Trusted Publishing for .github/workflows/publish.yml before the first release. The workflow uses GitHub OIDC instead of a long-lived npm token.

Notes

  • These skills assume modern AdonisJS v7 conventions.
  • lucid is focused on the ORM/database layer and should be paired with adonisjs for controllers, routes, validators, services, and framework-level architecture.
  • inertia-vue and inertia-react are frontend-layer skills and should be paired with adonisjs for backend work.
  • japa is focused on testing patterns for AdonisJS apps.
  • maestro should be used when a task needs orchestration, phase gates, or publishing workflow discipline.

Keywords

adonisjs

FAQs

Package last updated on 08 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts