Token导航 LogoToken导航TokenDH.com
研究检索权限需确认github未标认证来源可访问clear审计未展示

laravel_specifying-constraintsLaravel specifying constraints 搜索

Agent Skill

laravel_specifying-constraints 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

941

周安装

40

GitHub Stars

公开资料未说明

下载量

330
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add jpcaparas/superpowers-laravel --skill "laravel:specifying-constraints"

简介

用于查找和筛选 Laravel 约束指定相关资源,适合在 AI 宿主中快速定位候选结果。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境中的研究检索场景。
  • 通过关键词或任务线索定位信息,需结合仓库 README 确认具体用法。
  • 安装命令为 npx skills add jpcaparas/superpowers-laravel --skill "laravel:specifying-constraints"。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。

SKILL.md

Specifying Constraints

Constraints guide the AI toward solutions that fit your project. Without them, you get generic code that may not meet your requirements.

Performance Constraints

Vague

"Make it fast"

Specific

"Optimize product search:

  • Response time < 200ms for 95th percentile
  • Support 1000 concurrent users
  • Cache results for 5 minutes using Redis
  • Use database indexes on name, category_id, published_at
  • Paginate results, max 50 per page
  • Avoid N+1 queries with eager loading"

Database Performance

"Query orders with performance constraints:

  • Use select() to load only needed columns
  • Eager load items, customer, shipping_address in one query
  • Add composite index on (user_id, created_at, status)
  • Use chunk() for batch processing > 1000 records
  • Set query timeout to 5 seconds"

Security Constraints

Vague

"Make it secure"

Specific

"Implement user profile update with security requirements:

  • Authorize using ProfilePolicy@update
  • Validate all inputs in ProfileUpdateRequest
  • Sanitize HTML in bio field (strip scripts, allow basic formatting)
  • Rate limit to 10 requests per minute per user
  • Hash passwords with bcrypt (cost factor 12)
  • Log all profile changes for audit trail
  • Prevent mass assignment vulnerabilities with $fillable"

API Security

"Secure the payment API:

  • Require auth:sanctum middleware
  • Validate API tokens have process-payments ability
  • Use HTTPS only (enforce in middleware)
  • Validate webhook signatures from payment provider
  • Store sensitive data encrypted in database
  • Never log credit card numbers or tokens
  • Return generic error messages (don't leak system details)"

Testing Constraints

Vague

"Add tests"

Specific

"Test the order processing feature:

  • Feature test for complete order flow (create → process → confirm)
  • Unit tests for OrderService methods
  • Test validation failures (invalid payment, insufficient inventory)
  • Test edge cases (zero quantity, negative prices)
  • Mock external payment gateway
  • Use factories for test data
  • Aim for 80% code coverage on business logic
  • Tests must run in < 30 seconds"

Test Requirements

"Testing requirements for authentication:

  • Test successful login with valid credentials
  • Test failed login with invalid credentials
  • Test rate limiting (max 5 attempts per minute)
  • Test token expiration after 24 hours
  • Test logout invalidates token
  • Use RefreshDatabase trait
  • No external API calls in tests (use mocks)"

Architectural Constraints

Patterns to Follow

"Implement payment processing following our architecture:

  • Use repository pattern: PaymentRepository for data access
  • Use service layer: PaymentService for business logic
  • Use jobs for async work: ProcessPaymentJob
  • Use events: PaymentProcessed, PaymentFailed
  • Controllers orchestrate only, no business logic
  • Keep cyclomatic complexity < 7 per method
  • Follow SOLID principles"

Patterns to Avoid

"Implement user management with these constraints:

  • Don't use static methods or facades in business logic
  • Don't put business logic in controllers or models
  • Don't use global state or singletons
  • Don't mix concerns (separate validation, business logic, persistence)
  • Don't use raw SQL queries (use Eloquent or Query Builder)
  • Don't bypass authorization checks"

Dependency Constraints

Version Requirements

"Add image processing feature:

  • Use intervention/image ^3.0 (Laravel 11.x compatible)
  • Requires PHP 8.2+
  • Requires GD or Imagick extension
  • Compatible with our existing spatie/laravel-medialibrary ^11.0
  • No conflicts with current dependencies"

Package Selection

"Choose a package for PDF generation:

  • Must support Laravel 11.x
  • Must handle UTF-8 and special characters
  • Should support headers/footers
  • Prefer actively maintained (updated in last 6 months)
  • Check compatibility with our PHP 8.2 requirement
  • Consider: barryvdh/laravel-dompdf or spatie/laravel-pdf"

Constraint Templates

Performance Template

- Response time: < X ms
- Throughput: Y requests/second
- Cache strategy: Redis, TTL Z minutes
- Database: indexes on [columns], eager load [relationships]
- Pagination: max X per page

Security Template

- Authentication: [Sanctum/Passport/Session]
- Authorization: [Policy/Gate]
- Validation: [Form Request class]
- Rate limiting: X requests per Y minutes
- Data protection: [encryption/hashing requirements]
- Audit logging: [what to log]

Testing Template

- Coverage: X% on business logic
- Test types: [feature/unit/integration]
- Mocking: [external services to mock]
- Factories: [models to factory]
- Performance: tests complete in < X seconds
- Edge cases: [specific scenarios to test]

Quick Reference

Specify constraints clearly:

  • Performance - Response times, throughput, caching, indexes
  • Security - Auth, validation, rate limiting, data protection
  • Testing - Coverage, test types, mocking, edge cases
  • Architecture - Patterns to follow/avoid, complexity limits
  • Dependencies - Versions, compatibility, package requirements

Clear constraints = code that fits your project.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

27.85%
按下载量换算92

Antigravity

20.66%
按下载量换算68

windsurf

17.54%
按下载量换算58

OpenCode

12.56%
按下载量换算41

Gemini CLI

7.05%
按下载量换算23

Codex

2.98%
按下载量换算10

安全审计

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

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills