laravel

Laravel Cloud — DevOps skill for Claude Code

DevOps community Intermediate

Laravel Cloud deployment and management.

How to install Laravel Cloud

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

What Laravel Cloud does

Laravel Cloud deployment and management.

One of 2 entries listed from laravel/agent-skills. The repository README describes the whole collection, not this skill — read it on GitHub.

Alternatives in DevOps

  • Render Deploy — Deploy applications to Render's cloud platform using Git-backed services 14.6k ★
  • AWS Skills Pack — AWS cloud services skills 1.6k ★
  • WP CLI And Ops — WordPress CLI and operations management 902 ★

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

...