laravel-development

laravel-development is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 21 tokens per session (559 once invoked), scanned A, original, Apache-2.0.

A set of development rules for Laravel, a PHP framework for building web applications. It covers application structure, security, automated tests, and continuous integration, which automatically checks code changes.

In plain words
What is it for?
Use it to structure Laravel applications, validate requests, protect sessions and models, move slow work into background jobs, and write and verify tests with Pest.
Why use it?
It helps prevent common Laravel problems such as unsafe input handling, cross-user data access, slow database queries, and untested changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to structure Laravel applications, validate requests, protect sessions and models, move slow work into background jobs, and write and verify tests with Pest.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jxoesneon/ciel/laravel-development
Install

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.

Any agent
npx skills add jxoesneon/Ciel --skill laravel-development
Clone the repo
git clone --depth 1 https://github.com/jxoesneon/Ciel

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for laravel-development

README.md
[![agentmods](https://agentmods.dev/badge/skills/jxoesneon/ciel/laravel-development/github.svg)](https://agentmods.dev/skills/jxoesneon/ciel/laravel-development)
Your own site
<a href="https://agentmods.dev/skills/jxoesneon/ciel/laravel-development"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/laravel-development/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.

agentmods 80×15 button for laravel-development

Your own site · 80×15
<a href="https://agentmods.dev/skills/jxoesneon/ciel/laravel-development"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/laravel-development.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.00559
Opus 5 $0.00010 $0.00280
Sonnet 5 $0.00004 $0.00112
Haiku 4.5 $0.00002 $0.00056

Measured 8d ago against content hash a05f7b13bbd6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

laravel-development scanned grade A with 0 findings 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 8d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/laravel-development/SKILL.md · 52 lines

What it actually says

CIEL ADAPTATION: Laravel Development (The Modern PHP Layer)

This skill formalizes the development of high-quality Laravel applications. It mandates thin controllers, action-based logic, and a strict "RefreshDatabase" testing strategy.

Architecture & Patterns

  1. Layered Boundaries: Controller (thin) -> Actions/Services (use cases) -> Models (pure domain).
  2. Routing: Use Route-Model binding and scoped bindings to prevent cross-tenant access.
  3. Data Access: Enforce Eager Loading (with()) to prevent N+1 queries. Use snake_case and plural table names.
  4. IO Efficiency: Move all heavy work (Email, PDF, Integrations) to Queued Jobs.

Security Standards

  • Mass Assignment: ALWAYS use $fillable or $guarded. Prohibit Model::unguard().
  • Validation: Mandate FormRequest classes for all controller inputs.
  • XSS: Default to Blade {{ }} escaping. Use {!! !!} ONLY for sanitized, trusted HTML.
  • CSRF: Maintain VerifyCsrfToken for all session-based browser routes.

TDD & Verification

  • Framework: Prefer Pest for new tests. Use RefreshDatabase for clean state.
  • Mocks: Use Bus::fake(), Queue::fake(), and Mail::fake() for side effects.
  • CI Loop: Clean build -> pint --test -> phpstan analyse -> artisan test --coverage (80% gate).

Anti-Patterns

  • Fat Models: Putting complex business logic in Eloquent models instead of Actions.
  • Blind Merging: Merging dependencies without running composer audit.
  • Impossible States: Using boolean flags in the DB instead of a status enum or state machine.
Changes

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.

  1. 8d ago First seen · 52 lines · 21 tokens per session scan A a05f7b13bbd6

Subscribe to this mod's changes

laravel-development is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 4d ago), licensed Apache-2.0. It adds 21 tokens to every session and 559 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

doc-crafter

Especialista em documentação de código e APIs. Gera e atualiza especificações (OpenAPI/Swagger), diagramas Mermaid, README e JSDoc/Docstrings. Use para "documentar este endpoint", "atualizar swagger" ou "gerar documentação da função".

rcelebrone/DotAgents · 62 tokens

backend-patterns

Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.

Kacper0199/Opencode-Ultrathinker · 31 tokens

agent-crdt-synchronizer

Agent skill for crdt-synchronizer - invoke with $agent-crdt-synchronizer.

ruvnet/ruflo · 25 tokens

api-debugging

Systematic approach to debugging REST APIs, HTTP errors, authentication issues, and network problems. Use when the user has API errors, status code issues, timeout problems, or needs help troubleshooting HTTP requests.

ownpilot/OwnPilot · 44 tokens

service-app-creator

Create or update the Service component of a NextClaw Mini App, choosing between Portable Rust/WASI Components and native-process MCP services. Use after nextclaw-app-creator selects a Service-backed app, or when the user explicitly asks for Service Actions, portable components, local files, external APIs, commands…

Peiiii/nextclaw · 74 tokens

neo4j-getting-started-skill

Orchestrates zero-to-running-app in 8 stages — prerequisites → context → provision → model → load → explore → query → build. Each stage reads its own reference file. Supports HITL and fully autonomous operation. Use when starting a new Neo4j project from scratch, provisioning Aura, generating synthetic data, building…

neo4j-contrib/neo4j-skills · 157 tokens