Skip to content
Development
Skill

/laravel-architecture

Enforce core architectural standards for scalable Laravel applications. Use when structuring controllers, service layers, action classes, Form Requests, or Service Container bindings in Laravel projects.

From plugin
agent-skills-standard
538200 skills1 MCP
Install
$ npx -y skills add hoangnguyen0403/agent-skills-standard --skill laravel-architecture --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/laravel-architecture

Context preview

The summary Claude sees to decide when to auto-load this skill.

Enforce core architectural standards for scalable Laravel applications. Use when structuring controllers, service layers, action classes, Form Requests, or Service Container bindings in Laravel projects.

SKILL.md

laravel-architecture.SKILL.md
name: laravel-architecture
description: Enforce core architectural standards for scalable Laravel applications. Use when structuring controllers, service layers, action classes, Form Requests, or Service Container bindings in Laravel projects.
metadata:
  triggers:
    files:
    - 'app/Http/Controllers/**/*.php'
    - 'routes/*.php'
    keywords:
    - controller
    - service
    - action
    - request
    - container

Laravel Architecture

**Priority: P0 (CRITICAL)**

Structure

See [project structure](references/implementation.md#project-structure) for recommended directory layout.

Workflow

1. **Create Form Request** for validation (`php artisan make:request StoreUserRequest`). 2. **Create Action class** with single `handle()` method for use case. 3. **Inject Action** into controller via constructor DI. 4. **Bind interfaces** in `AppServiceProvider` for swappable implementations.

Controller Pattern

See [implementation examples](references/implementation.md#controller-pattern) for slim controller, action class, and service container binding patterns.

Validation

  • Use Form Requests with `authorize()` and `rules()` methods.
  • Call `$request->validated()` in controller for mass assignment.
  • Never use inline `$request->validate()`.

Anti-Patterns

  • **No logic in Controllers**: Move to Services or Action classes.
  • **No manual instantiation**: Use Service Container via DI.
  • **No inline `$request->validate()`**: Favor Form Request classes.
  • **No excessive global helpers**: Use class-based logic instead.

References

  • [Slim Controller Patterns](references/implementation.md)

Canonical response anchors

When this skill applies, preserve the following domain terminology or equivalent concrete examples in the answer when relevant:

  • No logic in
  • Additional task-grounded exact anchors: handle()
Read more
Ships withagent-skills-standard

The portable SDLC standards layer for AI coding agents. Sync once, then work in your own runtime.

Get the whole plugin

Other skills on agent-skills-standard.