Skip to main content
laravel/agent-skills is a repository under active development (as of April 2026). The current plugin version is 1.0.0, but changes and additions are expected going forward.

What is laravel/agent-skills?

laravel/agent-skills is an officially maintained collection of AI agent skills and plugins from Laravel. Taylor Otwell is listed as an author, and it is being developed as Laravel’s official marketplace. The repository originally started as a place to host Claude Code skills, but was renamed to agent-skills and now offers plugins compatible with both Claude Code and Cursor. It’s a set of skills that lets AI agents understand Laravel best practices and autonomously operate official services like Laravel Cloud and Nightwatch when you develop Laravel apps with AI.

Repository structure

The repository has a directory per skill (plugin), and each directory contains configuration files for both Claude Code and Cursor.

Provided plugins

laravel — code quality improvement agent

laravel-simplifier is an agent that reviews recently changed PHP/Laravel code and improves clarity, consistency, and maintainability without changing behavior. It lives in the laravel/ directory inside the repository and is installed as laravel-simplifier@laravel. Key features:
  • Applies Laravel conventions and the PSR-12 standard
  • Reduces unnecessary complexity and nesting
  • Improves variable and function name readability
  • Organizes and consolidates related logic
  • Clarifies conditional branching using match expressions
By default the agent targets only “recently changed code.” Calling it at the end of a coding session automatically identifies the changed sections and suggests refactorings.

laravel-cloud — deployment and infrastructure management skill

laravel-cloud is a skill that assists with deployment and resource management on Laravel Cloud. It’s fully familiar with cloud CLI command patterns and guides you through deployment steps. Key features:
  • Guides workflows for initial deploys and deploying existing apps
  • Manages infrastructure resources such as databases, caches, domains, and buckets
  • Operational checklists for multi-step tasks
  • Operates according to the Cloud CLI’s CRUD command patterns

laravel-nightwatch — monitoring configuration skill

laravel-nightwatch is a skill that helps configure Laravel Nightwatch data collection, sampling rates, filtering rules, and redaction policies. It also bundles a Nightwatch MCP server, allowing AI agents to directly view and operate on Nightwatch issues.

Installation

Claude Code

Install using Claude Code’s marketplace feature.
You can install only the plugins you need—there’s no need to install all of them.

Cursor

In Cursor, open the plugin marketplace panel and search for Laravel to install.
1

Open Cursor

Open the “Plugins” panel from Cursor’s sidebar or settings.
2

Search for Laravel

Type “Laravel” into the search bar.
3

Install the plugins you need

Install what you need from laravel, laravel-cloud, and laravel-nightwatch.

Usage examples

Automating code review with laravel-simplifier

Call it at the end of a coding session to automatically refine your code following Laravel best practices.
The agent runs autonomously, identifies changed files, and proposes improvements. Unless you explicitly instruct otherwise, only recently changed code is targeted.

Deploying to Laravel Cloud

You can instruct deployment tasks in natural language. The agent combines and executes the appropriate cloud CLI commands.

Investigating issues in Nightwatch

Because the Nightwatch MCP server is integrated, you can ask the AI to investigate issues directly.

How plugins work

Each plugin is defined in .claude-plugin/plugin.json or .cursor-plugin/plugin.json. The agent definition (.md file) contains the system prompt, which precisely specifies how the AI should behave. An excerpt from the laravel-simplifier prompt:
Skills provide additional knowledge to the AI in the form of context files (Markdown documents). For example, the laravel-cloud skill contains detailed Cloud CLI operations and cautions, guiding the AI to avoid mistaken deployments.

Future outlook

The laravel/agent-skills repository is being developed as the official AI skill marketplace covering the entire Laravel ecosystem. Currently three plugins are provided (Laravel, Laravel Cloud, and Laravel Nightwatch), but future expansions expected include:
  • Support for other official Laravel packages (Forge, Vapor, Cashier, Sanctum, etc.)
  • Support for AI tools other than Claude Code and Cursor, such as GitHub Copilot
  • Community-contributed third-party skills (marketplace expansion)
As AI-driven development becomes a standard workflow, having the Laravel team officially provide and manage AI skills should significantly contribute to the ecosystem’s overall quality.

laravel/agent-skills repository

See the official repository README for skill details and installation instructions.

Laravel Cloud

Laravel’s official hosting service that integrates with the laravel-cloud skill.

Laravel Nightwatch

Laravel’s official error monitoring service that integrates with the laravel-nightwatch skill.
Last modified on July 13, 2026