Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

laravel-guidelinesLaravel guidelines 命令行

Agent Skill

laravel-guidelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

451

周安装

19

GitHub Stars

公开资料未说明

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/stefanmermans/agent-config --skill laravel-guidelines

简介

laravel-guidelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Laravel Guidelines

This document outlines best practices for building robust, maintainable, and modern Laravel applications. Focus is placed on clean architecture, efficient database usage, and reliable testing strategies.

1. General Principles

  • Correctness > Clarity > Consistency > Performance > Cleverness.
  • KISS: Keep It Simple, Stupid. Avoid over-engineering.
  • DRY (Don't Repeat Yourself): Extract shared logic but be pragmatic. Duplication is cheaper than the wrong abstraction.
  • SOLID: Adhere to SOLID principles, with particular emphasis on Single Responsibility (SRP) in classes and methods.
  • Strict Typing: Use PHP's strict typing (declare(strict_types=1);) to ensure type safety.
  • Config/Env: Prefer config() and .env variables over hardcoded strings to ensure flexibility across environments.

2. Modern PHP Features

Leverage modern PHP features for cleaner, more expressive code:

  • Constructor Property Promotion: Reduce boilerplate in DTOs and Services.
  • Readonly Properties: Ensure immutability for value objects and DTOs.
  • Enums: Use backed Enums for status fields and categories instead of constants or magic strings.
  • Match Expressions: Use match instead of complex switch or if/else chains.
  • Named Arguments: Improve readability for functions with many parameters (though prefer refactoring to parameter objects/DTOs if too many).

3. Architecture

Controllers

  • Keep Thin: Controllers should only handle HTTP concerns (validation, request parsing, response formatting).
  • Delegate Logic: Business logic differs from HTTP logic. Delegate complex operations to Services or Actions.
  • API Resources: Use JsonResource for response shaping. This decouples the API response structure from the database model and ensures consistency.

Services (Actions)

  • Single Responsibility (SRP): A Service or Action should typically do one thing well. Avoid "Manager" classes that become god-objects.

- *Good*: CreateUserAction, ProcessPaymentService. - *Bad*: UserService (handling creation, deletion, reporting, notification, etc.).

  • Stateless: Services should generally be stateless. Pass data via method arguments.
  • Dependency Injection: Prefer dependency injection where it improves testability and clarity. Inject dependencies via the constructor.

Validation (Form Requests)

  • Always use Form Requests: Use Form Requests for complex validation. Do not validate in the controller.
  • Type Hinting: Type-hint the Form Request in the controller method.
  • Business Rules: Simple business rules (e.g., "email must be unique") belong in Form Requests. Complex state-dependent rules belong in the Service/Action.
  • Authorization: Use the authorize() method in Form Requests for basic request authorization.

4. Eloquent & Database (Deep Dive)

Queries & Performance

  • Strict Mode: Enable Eloquent Strict Mode in non-production environments to prevent lazy loading, unfillable attribute assignments, and accessing missing attributes. // AppServiceProvider.php Model::shouldBeStrict(!app()->isProduction());
  • Eager Loading: Prevent N+1 problems by eager loading relationships using with() or load(). // Bad $users = User::all(); foreach ($users as $user) {echo $user->profile->name;} // N+1 query // Good $users = User::with('profile')->get();
  • Select Specific Columns: When querying large tables, select only necessary columns to reduce memory usage.
  • Chunking: Use chunk() or cursor() for initializing heavy processing on large datasets to keep memory usage low.

Transactions

  • Multi-step Writes: Use DB Transactions (DB::transaction(...)) for operations involving multiple write steps (e.g., creating a user and their initial settings) to ensure data integrity.

Typing

  • Type Templating: Use PHPDoc for type templating when necessary, especially for collections, arrays and relations, to aid static analysis and IDE autocompletion. /** @var Collection<int, User> $users */

Scopes

  • Local Scopes: Encapsulate common query logic into reusable local scopes. Naming should be readable and expressive.
  • Global Scopes: Use sparingly. They apply to *all* queries on the model and can lead to unexpected behavior if hidden implementation details are forgotten.

Observers

  • Use with Caution: Observers are "magic" and hidden from the code flow, making debugging difficult.
  • Explicit Registration: Prefer using the #[ObservedBy(UserObserver::class)] attribute on the Model to make the connection explicit and less "magic".
  • Single Responsibility: Observers should adhere to SRP. Do not create a single Observer for all events; separate them if the logic is distinct.
  • Prefer explicit calls: For critical logic, explicit calls (e.g., firing an Event from a Service) are often better than Observers.
  • Appropriate Use Cases: Cache clearing, simple logging, or generating slugs/metadata where the operation is strictly tied to the database record lifecycle and not complex business logic.

Fillable vs. Guarded

  • Use $fillable: Explicitly strictly define which attributes can be mass-assigned. This is a security feature.
  • Avoid $guarded = []: While convenient, unguarding models globally opens up Mass Assignment Vulnerabilities if all() is passed from requests.

Pruning

  • Prunable Trait: Use the Prunable or MassPrunable trait for models that need periodic cleanup (e.g., logs, tokens). Define the prunable() query builder method to automate deletion logic.

Relations

  • Prefer Relation Helpers: Prefer relationship helper methods over setting foreign key columns manually. This keeps intent explicit and reduces coupling to schema details. // Preferred $model->relation()->attach($relation); // Avoid when a relation helper exists $model->relation_id = $relation->id; $model->save();
  • Factories Should Build Relations, Not IDs: In tests and seeders, prefer factory relationship helpers such as has(), for(), and hasAttached() over assigning *_id via state() or create(). // Preferred Model::factory()->for(Relation::factory())->create(); // Avoid when relation helpers can express the same intent Model::factory()->state(['relation_id' => Relation::factory(),])->create();
  • Use Relationship-Aware Query Helpers: Prefer Eloquent relationship query helpers over manual foreign key filters when possible. // Preferred Order::query()->whereBelongsTo($customer)->get(); // Avoid when a relationship-aware helper exists Order::query()->where('customer_id', $customer->id)->get();

5. Security (Authorization)

  • Policies: Use Policies for all authorization.

- Create one policy per Model (e.g., UserPolicy, PostPolicy).

  • Gates: Use Gates for simple, non-resource-specific actions (e.g., Gate::define('access-dashboard',...)).
  • Controller Authorization: Use $this->authorize() (or Gate::authorize()) in controller methods, or middleware for route groups. Do not rely solely on UI hiding; backend verification is mandatory.

6. Testing

Structure all tests using Arrange, Act, Assert.

public function test_user_can_register() {
    // Arrange
    $data = ['name' => fake()->name(), 'email' => fake()->safeEmail(), 'password' => fake()->password()];

    // Act
    $response = $this->post('/register', $data);

    // Assert
    $response->assertStatus(201);
    $this->assertDatabaseHas(User::class, ['email' => $data['email']]);
}

Use models factories and builders for test setup over manual instantiation. Use state() methods for variations (e.g., User::factory()->admin()->create()) to create test data.

// Bad
Order::factory()->create([
    'delivery_status' => 'delivered',
    'customer_id' => $customer->id,
    'product_id' => $product->id,
    'paid' => true,
])

// Good
Order::factory()->delivered()->paid()->for($customer)->for($product)->create();

Always use fake() for values instead of hardcoding, unless a fixed value is absolutely required for the test logic.

Each function in a tests class should test one thing only!

When using database asserts like assertDatabaseHas when possible do not hardcode the database table, but use the model class instead

// Bad
$this->assertDatabaseHas('users', ...);

// Good
$this->assertDatabaseHas(User::class, ...);

7. Laravel Tooling

  • Artisan make: Prefer using artisan make php artisan make:<what-to-make> commands over creating files manually.

8. Dependency injection

  • Service Instantiation: Do not manually create services that have dependency injection that should be resolved by Larvel (this is always the case for services). Instead realy on the global app(...) helper
// Bad
$service = new Service($dependency);

// Good
$service = app(Service::class);

9. Stricly typed code

  • Classes over keyed arrays: Prefer using classes over keyed arrays for data transfer objects. This improves type safety and makes code more readable. If the project has laravel-data by spatie installed. Use that for Data classes.
// Bad
$data = [
    'name' => 'John',
    'email' => 'john@example.com',
    'password' => 'secret',
];

// Good
$data = new UserData(
    name: 'John',
    email: 'john@example.com',
    password: 'secret',
);

10. Database

  • Never run migrate:fresh unless the user explicitly requests it! Migrating the database fresh is a destructive command that will result in dataloss. Warn the user against this if they want you to run it.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.99%
按下载量换算55

Claude

30.54%
按下载量换算48

Cursor

18.42%
按下载量换算29

Gemini CLI

7.88%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills