用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill laravel-api-tool-kit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
| name | laravel-api-tool-kit |
| description | > Use when this capability is needed. |
This project uses the essa/api-tool-kit package. All API code MUST follow the standards in this skill — both the general Laravel best practices and the package-specific patterns.
essa/api-tool-kit is installed via ComposerController already uses the ApiResponse traitdateTimeFormat() global helper is availabledynamicPaginate() macro is registered on the query builderFill these in when installing the skill. The AI reads this section to match existing project conventions.
ulid ← change to id if this project uses auto-incrementsanctum ← change if different (e.g. api)Tests\TestCase ← change if the project uses a custom baseThe rules in the rules/ directory are pattern-based. While examples use standard Laravel paths (e.g., app/Models), they are designed to be mapped to any structure.
If the project uses a DDD structure, the rules apply to the corresponding domain folders. Folder naming may vary by project (e.g., Repository vs Repositories). Examples include:
app/Domain/{Domain}/Models/app/Domain/{Domain}/Actions/app/Domain/{Domain}/Repository/ (or Repositories/)app/Domain/{Domain}/DTO/ (or DTOs/)app/Domain/{Domain}/Filters/Note for AI: Always run ls app/Domain/ to identify the project's specific naming conventions before creating new files. Priority is always: Project Patterns > Global Rules.
If a specific project requires overrides (e.g., "We use id instead of ulid" or "We return raw arrays instead of DTOs"), do not modify these global rules. Instead:
AGENTS.md, CLAUDE.md, or .claude/rules/ for Claude Code).Before reading anything else, these rules apply universally:
declare(strict_types=1);private readonly promotiontrans() — never hardcodedSee rules/code-quality.md for the full baseline.
When working on a specific concern, read the corresponding rule file:
| Task | Read |
|---|---|
| Code style, types, naming, constants | rules/code-quality.md |
| Injecting dependencies | rules/dependency-injection.md |
| Events and listeners | rules/events.md |
| Standalone queued jobs | rules/jobs.md |
| Authorization and policies | rules/authorization.md |
| Error and exception handling | rules/exceptions.md |
| Writing feature tests | rules/testing.md |
| Database patterns, ULIDs, transactions, bulk ops | rules/database.md |
| External 3rd-party integrations | rules/services.md |
| DDD structure, domain boundaries, cross-domain rules | rules/ddd.md |
| Task | Read |
|---|---|
| Return a JSON response | rules/responses.md |
| Add filtering / sorting / search to an endpoint | rules/filters.md |
| Create a new Action class | rules/actions.md |
| Create a DTO for an Action or Service | rules/dtos.md |
| Write or review a Controller | rules/controllers.md |
| Write a FormRequest | rules/requests.md |
| Write an API Resource | rules/resources.md |
| Create or update a Model | rules/models.md |
| Create or update a Repository | rules/repositories.md |
| Create an Enum | rules/enums.md |
| Add pagination | rules/pagination.md |
| Task | Read |
|---|---|
| Before writing any code | rules/anti-patterns.md |
Follow workflows/new-endpoint.md for the full step-by-step process.
The order is always: Model → Migration → Filter → Enum → Requests → Resource → Policy → Action (if needed) → Controller → Language file → Route → Test
workflows/new-endpoint.md — add a complete CRUD resource from scratchworkflows/add-filter.md — add filtering to an existing modelworkflows/write-tests.md — write tests for any feature (decides test type, structure, actors, edge cases)workflows/code-review.md — multi-phase code review (structural + defense + scope discipline)workflows/investigate.md — structured debugging (data-first, multi-source, 15-min checkpoint)workflows/curl-test.md — test an endpoint with curl and cross-reference response vs DBworkflows/update-knowledge.md — save learnings into rules or knowledge filesworkflows/organize-knowledge.md — consolidate scattered docs into one-file-per-featureworkflows/create-workflow.md — capture a discovered process as a reusable workflowPer-feature accumulated knowledge lives in a knowledge/ directory. The exact location depends on your AI tool:
.claude/knowledge/[feature].md.agent/knowledge/[feature].mdknowledge/[feature].md (project root)Each file contains:
When investigating a bug, check knowledge/ first. When confirming a root cause, update knowledge/ before closing the session.
Source: ahmedesa/laravel-api-tool-kit — distributed by TomeVault.