Install
$ agentstack add skill-leeovery-agentic-skills-laravel-packages ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Laravel Packages
Package development: extracting reusable patterns for use across projects.
Related guides:
- [package-extraction.md](references/package-extraction.md) - Extracting code into packages
- [DTOs](../laravel-dtos/SKILL.md) - Using Spatie Laravel Data
- [Models](../laravel-models/SKILL.md) - Using Spatie Model States and Query Builder
When to Extract
Extract to package when:
- Pattern used in 3+ projects
- Code is stable and well-tested
- Pattern has clear boundaries
- Maintenance cost justified
[→ Complete extraction guide: package-extraction.md](references/package-extraction.md)
Package Structure
my-package/
├── src/
│ ├── PackageServiceProvider.php
│ ├── Actions/
│ ├── DTOs/
│ └── ...
├── tests/
├── composer.json
└── README.md
Use semantic versioning. Test packages independently. Document clearly.
Core Packages (Always)
Spatie Laravel Data
composer require spatie/laravel-data
- DTOs with casting, validation, transformers
- Test factory support
Spatie Model States
composer require spatie/laravel-model-states
- State machine pattern
- State transitions with dedicated classes
Spatie Query Builder
composer require spatie/laravel-query-builder
- Filter, sort, include relations via query strings
- API-friendly querying
Saloon
composer require saloonphp/saloon saloonphp/laravel-plugin
- Elegant API client builder
- Testable external service integrations
Pest
composer require pestphp/pest pestphp/pest-plugin-laravel --dev
- Expressive testing framework
- Architecture tests
Optional Packages
Laravel Sanctum
composer require laravel/sanctum
When: API authentication needed
Stancl Tenancy
composer require stancl/tenancy
When: Multi-tenant application
Spatie Settings
composer require spatie/laravel-settings
When: Application-level settings needed
Installation Commands
Full Install
composer require \
spatie/laravel-data \
spatie/laravel-model-states \
spatie/laravel-query-builder \
saloonphp/saloon \
saloonphp/laravel-plugin
composer require \
pestphp/pest \
pestphp/pest-plugin-laravel \
--dev
./vendor/bin/pest --init
Minimal Install
composer require spatie/laravel-data
composer require pestphp/pest pestphp/pest-plugin-laravel --dev
./vendor/bin/pest --init
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: leeovery
- Source: leeovery/agentic-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.