Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计未展示

laravel%3alaravel-prompting-patternsLaravel 3alaravel prompting 模式

Agent Skill

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

总安装

1,164

周安装

49

GitHub Stars

131

下载量

408
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:laravel-prompting-patterns

简介

该技能提供 Laravel Agent 提示词设计和行为约束模板。

  • 适用于规范 AI 助手在框架内执行任务的边界和格式。
  • 支持任务拆解、输出标准化和错误处理流程定义。
  • 使用时需结合实际业务逻辑调整模板细节。
  • 避免将示例直接当作硬性规则执行。laravel%3alaravel-prompting-patterns 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

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

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

35.28%
按下载量换算144

Claude

28.91%
按下载量换算118

Cursor

18.6%
按下载量换算76

Gemini CLI

10.28%
按下载量换算42

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills