Skip to content

Instantly share code, notes, and snippets.

@JoshSalway
JoshSalway / SKILL.md
Last active March 11, 2026 03:10
Claude Code Skills — Laravel, Deployment & Infrastructure

Claude Code Skills

A collection of Claude Code skills for Laravel development, deployment, and infrastructure.

How to Install

Download individual skill files and place them in ~/.claude/skills/{skill-name}/skill.md.

Or clone all at once:

#!/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!"