Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计通过

laravel-laravel-prompting-patternsLaravel Laravel prompting 模式

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

636

周安装

26

GitHub Stars

8

下载量

204
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/noartem/laravel-vue-skills --skill laravel-laravel-prompting-patterns

简介

laravel-laravel-prompting-patterns 用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。

  • 适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。
  • 使用时需保留真实业务约束,不要把示例当硬规则。
  • 涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Laravel Prompting Patterns

Use Laravel's vocabulary to get idiomatic code. Generic requests produce generic solutions that don't leverage the framework.

Database Operations

Generic

"Get all active users with their posts"

Laravel-Specific

"Query active users with eager-loaded posts using Eloquent:

User::where('active', true)
    ->with('posts')
    ->get();

Add a scope to User model: scopeActive($query)"

Relationships

"Set up a many-to-many relationship between Posts and Tags:

  • Create post_tag pivot table migration
  • Add belongsToMany in Post model
  • Add belongsToMany in Tag model
  • Use attach(), detach(), sync() for management"

Query Optimization

"Avoid N+1 on the posts index:

  • Eager load author and category relationships
  • Use withCount('comments') for comment totals
  • Add database indexes on published_at and category_id"

Validation

Generic

"Validate the user input"

Laravel-Specific

"Create UserStoreRequest with validation rules:

public function rules(): array
{
    return [
        'email' => ['required', 'email', 'unique:users,email'],
        'password' => ['required', 'min:12', Password::defaults()],
        'name' => ['required', 'string', 'max:255'],
    ];
}

Add custom error messages in messages() method"

Complex Validation

"Validate order creation:

  • Use Rule::exists('products', 'id') for product IDs
  • Validate nested items array: items.*.quantity must be integer, min 1
  • Use Rule::requiredIf() for conditional shipping address
  • Add custom rule for inventory check: new HasSufficientStock"

API Endpoints

Generic

"Create an API for products"

Laravel-Specific

"Create RESTful product API:

  • Resource controller: ProductController with apiResource routes
  • Use ProductResource for response transformation
  • Add ProductCollection for index endpoint with pagination
  • Protect with Sanctum middleware: auth:sanctum
  • Return 201 on create, 204 on delete
  • Use ProductStoreRequest and ProductUpdateRequest for validation"

Pagination

"Paginate products API:

  • Use Product::paginate(20) in controller
  • Return with ProductResource::collection($products)
  • Include meta: total, per_page, current_page, last_page
  • Support ?page=2 query parameter"

Filtering

"Add filtering to products API:

  • Accept ?category=electronics&min_price=100 query params
  • Use when() for conditional queries
  • Extract to ProductFilters class for reusability
  • Document query params in API docs"

Background Processing

Generic

"Send email after user registers"

Laravel-Specific

"Dispatch SendWelcomeEmail job after registration:

SendWelcomeEmail::dispatch($user)
    ->onQueue('emails')
    ->delay(now()->addMinutes(5));
  • Implement ShouldQueue interface
  • Add $tries = 3 and $timeout = 30
  • Handle failure in failed() method
  • Tag job for Horizon: $tags = ['user:'.$user->id]"

Queue Configuration

"Configure queue for payment processing:

  • Use redis connection for payments queue
  • Set queue:work --queue=payments,default
  • Add retry_after to 90 seconds in config
  • Monitor with Horizon dashboard"

Job Chaining

"Process order with job chain:

Bus::chain([
    new ValidateInventory($order),
    new ChargePayment($order),
    new SendConfirmation($order),
])->dispatch();

If any job fails, chain stops. Handle in catch() callback."

Referencing Documentation

Effective References

"Implement according to Laravel's Eloquent Relationships docs"

"Follow Laravel's Form Request Validation pattern"

"Use Laravel's API Resource pattern for response transformation"

"Configure queues per Laravel Queue docs"

Pattern Catalog

Models & Eloquent:

  • Relationships: hasMany, belongsTo, belongsToMany, morphMany
  • Scopes: scopeActive, scopePublished
  • Accessors/Mutators: get{Attribute}Attribute, set{Attribute}Attribute
  • Casts: protected $casts = ['published_at' => 'datetime']

Validation:

  • Form Requests: UserStoreRequest, ProductUpdateRequest
  • Rules: required, unique:table,column, exists:table,column
  • Custom Rules: new Uppercase, Rule::in(['admin', 'user'])

API:

  • Resources: UserResource, ProductCollection
  • Pagination: paginate(), simplePaginate(), cursorPaginate()
  • Rate Limiting: throttle:60,1 middleware

Jobs & Queues:

  • Jobs: ShouldQueue, dispatch(), dispatchSync()
  • Chains: Bus::chain(), Bus::batch()
  • Horizon: Tags, monitoring, failed job handling

Use Laravel's vocabulary. Get Laravel solutions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Codex

27.46%
按下载量换算56

windsurf

21.83%
按下载量换算45

OpenCode

19.12%
按下载量换算39

Claude Code

11.1%
按下载量换算23

Antigravity

6.99%
按下载量换算14

Gemini CLI

3.54%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills