Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add arbazkhan971/godmode --skill laravelgit clone --depth 1 https://github.com/arbazkhan971/godmodeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/arbazkhan971/godmode/laravel)<a href="https://agentmods.dev/skills/arbazkhan971/godmode/laravel"><img src="https://agentmods.dev/badge/skills/arbazkhan971/godmode/laravel/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/arbazkhan971/godmode/laravel"><img src="https://agentmods.dev/badge/skills/arbazkhan971/godmode/laravel.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00052 | $0.01835 |
| Opus 5 | $0.00026 | $0.00918 |
| Sonnet 5 | $0.00010 | $0.00367 |
| Haiku 4.5 | $0.00005 | $0.00184 |
Grade A, and why
laravel scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://localhost:8000/health How it starts
The opening of the file, as written. The whole thing — 278 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Laravel — Laravel Mastery
Activate When
- User invokes
/godmode:laravel - User says "build a Laravel app", "Laravel API"
- User asks about Eloquent, Blade, Livewire, queues
- When working with PHP backend using Laravel
Workflow
Step 1: Project Assessment
# Detect Laravel version
php artisan --version 2>/dev/null
php -v | head -1
# Check for common issues
php artisan route:list --json | wc -l
php artisan config:show app.debug 2>/dev/null
LARAVEL ASSESSMENT:
Laravel: <11.x>, PHP: <8.3.x>
Architecture: Full-stack (Blade) | API-only | Inertia
Database: MySQL | PostgreSQL | SQLite
Queue: Redis | Database | SQS
Auth: Sanctum | Passport | Breeze | Jetstream
IF PHP < 8.2: recommend upgrade (performance + types)
IF using $guarded = []: switch to explicit $fillable
IF no preventLazyLoading: enable in AppServiceProvider
Step 2: Eloquent ORM Patterns
QUERY OPTIMIZATION:
| Pattern | Usage |
|------------------------|--------------------|
| with('relation') | Eager load (N+1) |
| withCount('relation') | Count without load |
| select('col1','col2') | Reduce memory |
| chunk(1000, fn) | Large datasets |
| cursor() | One-by-one stream |
THRESHOLDS:
N+1 tolerance: 0 (use preventLazyLoading)
chunk size: 1000 records per batch
Model::all() in production: NEVER
IF query count > 10 per request: audit with Debugbar
RULES:
Always with() for displayed relationships
Always use API Resources (never raw models)
Always backed enums for status fields (PHP 8.1+)
Always index foreign keys and WHERE columns
IF processing > 100 records: use chunk/cursor
Step 3: Service Container & Architecture
SERVICE ARCHITECTURE:
| Pattern | When to Use |
|---------------------|---------------------|
| Action classes | Complex single ops |
| Service classes | Related operations |
| Repository pattern | Abstract data access |
| DTOs | Typed input/output |
| Contracts | Swappable impls |
| Pipelines | Sequential steps |
RULES:
Bind interfaces in service providers
Action classes: one public method (execute)
Constructor injection over facades
DB::transaction() for atomicity
IF business logic in controller: extract to service
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 6d ago First seen · 278 lines · 52 tokens per session scan A 9b9a90eae745
laravel is a skill published in the GitHub repository arbazkhan971/godmode (26 stars, last pushed 12d ago), licensed MIT. It adds 52 tokens to every session and 1,835 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
architecture-patterns
Use this skill when choosing a system-level architecture (monolith, modular monolith, microservices, event-driven, serverless, clean/hexagonal, or DDD) for a new or growing PHP application, or when weighing a premature move to a more distributed style. Provides a decision guide and the common pitfalls that cause…
application-layer
Use this skill when writing controllers, structuring use cases, or implementing Service Layer / Application Layer and Command/Query/Handler (CQRS) patterns in PHP applications. Triggers on questions about thin controllers, handler responsibilities, service definition, or DTO usage.
event-sourcing
Use this skill when evaluating or implementing Event Sourcing in a PHP application. Triggers on questions about event stores, aggregates, projections, snapshots, event replay, temporal queries, CQRS with event sourcing, or PHP event-sourcing libraries (Ecotone, Prooph, EventSauce, Patchlevel). Distinguishes Event…
dependency-injection
Use this skill when wiring dependencies, configuring a DI container, designing plugin/extension points, or migrating away from legacy service locators in PHP. Triggers on questions about constructor injection, interface registration, swapping implementations, or testing without booting the container.
framework-integration
Use this skill when applying clean-architecture, DDD, or hexagonal patterns inside a specific PHP framework. Provides framework-specific port mapping, adapter patterns, and pitfalls to avoid for Laravel, Symfony, Slim, CakePHP, CodeIgniter, Yii, Laminas, Mezzio, Zend Framework, and legacy/maintenance-mode frameworks.…
bitrix-console-commands
Covers Bitrix CLI tools — php bitrix/bitrix.php, generators make:module/make:controller/make:tablet/make:entity/make:service/make:event/make:eventhandler/make:message/make:messagehandler/make:component/make:request, kernel commands (orm:annotate, messenger:consume, translate:index, update:, dev:locator-codes…