Skip to content

Instantly share code, notes, and snippets.

@JoshSalway
JoshSalway / SKILL.md
Created March 6, 2026 17:32
Laravel Cloud CLI skill for Claude Code
name description version
laravel-cloud
This skill should be used when the user asks to "deploy to Laravel Cloud", "set environment variables on Laravel Cloud", "add env vars to production", "redeploy on Laravel Cloud", "check deployment status", "view cloud logs", "run artisan on Laravel Cloud", "open the database locally", or mentions managing a Laravel Cloud environment via the cloud CLI.
0.1.0

Laravel Cloud CLI Skill

Manage Laravel Cloud using the cloud CLI. Run cloud --version to confirm it is installed.

#!/bin/zsh
install_aws_cli () {
echo "Downloading AWS CLI..."
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
echo "Installing AWS CLI..."
sudo installer -pkg AWSCLIV2.pkg -target /
rm -f AWSCLIV2.pkg
echo "Package file deleted successfully!"
echo "AWS CLI installed successfully!"