Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

adonisjsadonisjs 搜索

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:adonisjs(adonisjs 搜索)
来源仓库:https://github.com/enzopita/adonisjs-docs-indexer
仓库路径:skills/adonisjs
安装命令:
npx skills add https://github.com/enzopita/adonisjs-docs-indexer --skill adonisjs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/enzopita/adonisjs-docs-indexer --skill adonisjs

简介

adonisjs 索引 AdonisJS v7 官方文档为单一 Markdown 文件,提供路由、ORM、认证等主题的快速检索。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中需要查找 Lucid 模型关系、中间件配置或守卫实现的场景。
  • 所有链接指向 docs.adonisjs.com 的原始 .md 端点,保证内容实时同步无需本地缓存。
  • 使用时应优先通过 llms.txt 索引定位关键词,再访问具体 .md 页面获取详细语法与示例代码。
  • adonisjs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

AdonisJS v7 Development Skill

Documentation Sources

All documentation is served as raw markdown, always up-to-date:

  • Index with topics: https://adonisjs-docs-indexer.enzopita.com/llms.txt
  • Full docs (single file): https://adonisjs-docs-indexer.enzopita.com/llms-full.txt

Every link in the index points to a .md endpoint on docs.adonisjs.com that returns raw markdown.

When to Use This Skill

Trigger this skill when the user asks to:

  • Create or modify AdonisJS routes, controllers, or middleware
  • Work with Lucid ORM (models, migrations, relationships, queries)
  • Implement authentication (session guard, access tokens, social auth)
  • Add authorization with Bouncer (abilities and policies)
  • Handle validation with VineJS
  • Configure file uploads, sessions, or cookies
  • Use Edge templates or Inertia (React/Vue) for frontend
  • Set up mail, queues, cache, or other services
  • Write tests (API, browser, console)
  • Create Ace CLI commands
  • Deploy AdonisJS applications to production

How to Use the Documentation

Step 1: Fetch the index

Fetch https://adonisjs-docs-indexer.enzopita.com/llms.txt to find the right page.

Each entry has this format:

- [Title](https://docs.adonisjs.com/{permalink}.md): Description of the page
  Topics: Heading 1, Heading 2, Heading 3, ...

Use the Topics line to identify the exact page you need without opening it. For example, if the user asks about "remember me tokens", scan the topics and you'll find it under the Session guard page.

Step 2: Fetch the specific page

Click/fetch the URL from the index entry. It returns raw markdown with full code examples.

Step 3: Apply with context

Use the fetched documentation to provide accurate, version-correct code. Never guess AdonisJS v7 APIs — always verify against the docs first.

When to use llms-full.txt

Use the full docs file when:

  • The user asks a broad question spanning multiple topics
  • You need to cross-reference between sections
  • You want full context about the framework in one fetch

Prefer the index + individual pages for targeted questions (lower token cost).

Quick Start

npm init adonisjs@latest my-app
cd my-app
node ace serve --hmr

Key Patterns

Routing

// start/routes.ts
import router from '@adonisjs/core/services/router'

router.get('/', async () => ({ hello: 'world' }))
router.post('/posts', '#controllers/posts_controller.store')
router.resource('posts', '#controllers/posts_controller')

router.group(() => {
  router.get('/profile', '#controllers/users_controller.profile')
}).prefix('/api').middleware('auth')

Controllers

// app/controllers/posts_controller.ts
import type { HttpContext } from '@adonisjs/core/http'

export default class PostsController {
  async index({ response }: HttpContext) {
    return response.ok({ posts: [] })
  }

  async store({ request }: HttpContext) {
    const data = request.only(['title', 'content'])
    return data
  }
}

Lucid ORM

// app/models/post.ts
import { DateTime } from 'luxon'
import { BaseModel, column, hasMany } from '@adonisjs/lucid/orm'
import type { HasMany } from '@adonisjs/lucid/types/relations'
import Comment from '#models/comment'

export default class Post extends BaseModel {
  @column({ isPrimary: true })
  declare id: number

  @column()
  declare title: string

  @hasMany(() => Comment)
  declare comments: HasMany<typeof Comment>

  @column.dateTime({ autoCreate: true })
  declare createdAt: DateTime
}

Validation (VineJS)

import vine from '@vinejs/vine'

const createPostValidator = vine.compile(
  vine.object({
    title: vine.string().trim().minLength(3).maxLength(255),
    content: vine.string().trim(),
  })
)

// In controller:
const data = await request.validateUsing(createPostValidator)

Authentication

// Login with session guard
await auth.use('web').login(user)

// Protect routes
router.get('/dashboard', '#controllers/dashboard_controller.index')
  .middleware('auth')

// Access authenticated user
const user = auth.user!

Deprecated v6 Patterns — DO NOT USE

Your training data likely contains AdonisJS v5/v6 patterns. These are wrong for v7. Never generate them.

Imports and modules

// WRONG — v6 IoC container imports
import User from 'App/Models/User'
import Route from '@ioc:Adonis/Core/Route'
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'

// CORRECT — v7 uses ESM subpath imports
import User from '#models/user'
import router from '@adonisjs/core/services/router'
import type { HttpContext } from '@adonisjs/core/http'

JIT compiler

// WRONG — ts-node was replaced in v7
import 'ts-node-maintained/register/esm'

// CORRECT
import '@poppinss/ts-exec'

Request and Response classes

// WRONG — renamed in v7 (conflicted with native platform classes)
import { Request, Response } from '@adonisjs/core/http'
Request.macro('foo', () => {})

// CORRECT
import { HttpRequest, HttpResponse } from '@adonisjs/core/http'
HttpRequest.macro('foo', () => {})

URL builder

// WRONG — deprecated in v7
router.makeUrl('posts.show', { id: 1 })
router.makeSignedUrl('posts.show', { id: 1 })

// CORRECT
import { urlFor } from '@adonisjs/core/services/url_builder'
urlFor('posts.show', { id: 1 })

// Edge templates:
// WRONG: route('posts.show', { id: 1 })
// CORRECT: urlFor('posts.show', { id: 1 })

Helpers removed in v7

// WRONG — these helpers no longer exist
import { getDirname, getFilename, slash, cuid } from '@adonisjs/core/helpers'

// CORRECT
import.meta.dirname          // replaces getDirname()
import.meta.filename         // replaces getFilename()

import stringHelpers from '@adonisjs/core/helpers/string'
stringHelpers.toUnixSlash()  // replaces slash()
// cuid() removed — use crypto.randomUUID() or nanoid

Flash messages

{{-- WRONG — 'errors' key was removed in v7 --}}
{{ flashMessages.get('errors.email') }}

{{-- CORRECT --}}
{{ flashMessages.get('inputErrorsBag.email') }}

Assembler hooks (adonisrc.ts)

// WRONG — v6 hook names
hooks: {
  onBuildStarting: [],
  onSourceFileChanged: [],
  onDevServerStarted: [],
  onBuildCompleted: [],
}

// CORRECT — v7 renamed all hooks
hooks: {
  buildStarting: [],
  fileChanged: [],
  devServerStarted: [],
  buildFinished: [],
  // New in v7: fileAdded, fileRemoved, devServerStarting, testsStarting, testsFinished
}

Inertia configuration

// WRONG — v6 Inertia config pattern
export default defineConfig({
  entrypoint: 'inertia/app/app.tsx',
  history: { encrypt: true },
  sharedData: { user: (ctx) => ctx.auth.user },
})

// CORRECT — v7 restructured Inertia
export default defineConfig({
  // entrypoint removed
  encryptHistory: true,
  // sharedData removed — use middleware instead
})
// File paths changed: inertia/app/app.tsx → inertia/app.tsx

Encryption

// WRONG — v6 had appKey in config/app.ts
// appKey: env.get('APP_KEY')

// CORRECT — v7 uses dedicated config/encryption.ts
import { defineConfig, drivers } from '@adonisjs/core/encryption'

export default defineConfig({
  default: 'legacy',
  list: {
    legacy: drivers.legacy({
      keys: [env.get('APP_KEY')],
    }),
  },
})

Test file globs

// WRONG — v6 glob syntax (glob package)
files: ['tests/unit/**/*.spec(.ts|.js)']

// CORRECT — v7 uses Node.js built-in glob
files: ['tests/unit/**/*.spec.{ts,js}']

General v6 patterns to avoid

  • CommonJS: Never use require(), module.exports, or export =. AdonisJS v7 is ESM-only.
  • @ioc: prefix: The @ioc: import prefix does not exist in v7. All imports use standard ESM.
  • Contract interfaces: HttpContextContract, RequestContract, etc. were renamed to just HttpContext, Request types.
  • Relative imports for app code: Always use # subpath imports (#models/..., #controllers/...), never ../../app/models/....
  • Youch bundled: youch is no longer bundled — install it as a dev dependency if needed.

Best Practices

  • Use # imports: AdonisJS uses subpath imports (#controllers/..., #models/...) instead of relative paths
  • Validate at the edge: Always validate request input in controllers using VineJS
  • Type-safe: Leverage TypeScript — AdonisJS provides end-to-end type safety
  • Convention over configuration: Follow the framework's naming conventions and folder structure
  • Use Ace generators: node ace make:controller, node ace make:model, node ace make:migration
  • Never guess APIs: When unsure, fetch the relevant .md page from the index and verify

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.24%
按下载量换算24

Claude

31.27%
按下载量换算21

Cursor

20.35%
按下载量换算13

Gemini CLI

8.85%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills