Laravel Cloud banner
laravel laravel

Laravel Cloud

DevOps community Intermediate

Description

A collection of agents and skills for PHP / Laravel development, available as plugins for both [Claude Code](https://code.claude.com) and [Cursor](https://cursor.com).

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for laravel/agent-skills, shared by 2 entries in this directory. It describes the repository, not this entry specifically.

Laravel Agents & Skills

A collection of agents and skills for PHP / Laravel development, available as plugins for both [Claude Code](https://code.claude.com) and [Cursor](https://cursor.com).

Plugins

laravel-simplifier

An agent that reviews recently modified PHP / Laravel code and refines it for clarity, consistency, and maintainability — without changing functionality.

  • Applies Laravel conventions and PSR-12 standards
  • Reduces unnecessary complexity and nesting
  • Improves naming and readability
  • Focuses on recently modified code by default

laravel-cloud

A skill for deploying and managing applications on [Laravel Cloud](https://cloud.laravel.com) using the `cloud` CLI.

  • Guides deployment workflows (first deploy, existing apps, environment setup)
  • Manages infrastructure resources (databases, caches, domains, buckets)
  • Includes operational checklists for multi-step tasks
  • Follows the CRUD command patterns of the Cloud CLI

The skill content is sourced from [`laravel/cloud-cli`](https://github.com/laravel/cloud-cli/tree/main/skills/deploying-laravel-cloud) via a sparse-checkout submodule.

Installation

Claude Code

/plugin marketplace add laravel/agent-skills
/plugin install laravel-simplifier@laravel
/plugin install laravel-cloud@laravel

Usage

**laravel-simplifier** — invoke the agent after a coding session:

> Review recent changes using the laravel-simplifier agent

**laravel-cloud** — triggers automatically when you ask about deploying or managing Laravel Cloud resources:

> Deploy my app to Laravel Cloud
> Set up a database and cache for the staging environment

Development

After cloning, initialize the submodule to pull the Laravel Cloud skill:

git clone --recurse-submodules https://github.com/laravel/agent-skills.git

Or if already cloned:

git submodule update --init

...