Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计未展示

laravel%3aspecifying-constraintsLaravel 3aspecifying constraints 搜索

Agent Skill

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

总安装

1,129

周安装

48

GitHub Stars

131

下载量

396
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:specifying-constraints

简介

该技能帮助定义 Laravel 模型和数据库约束条件。

  • 适用于保证数据完整性和业务规则一致性。
  • 支持字段验证、唯一性检查和外键关系管理。
  • 使用前应确认现有数据是否符合新约束。
  • 建议分阶段实施避免大规模数据冲突。laravel%3aspecifying-constraints 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

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

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

34.28%
按下载量换算136

Claude

31.31%
按下载量换算124

Cursor

18.41%
按下载量换算73

Gemini CLI

8.74%
按下载量换算35

安全审计

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

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills