Laravel development plugins for Claude Code.
Git worktrees with Laravel Valet, databases, and Warp terminal config. Enables parallel development on multiple feature branches with isolated environments.
Features:
- Create isolated worktrees with dedicated domains (
project-branch.test) - Auto-configure databases (
project_branch) - Setup Warp terminal layouts
- Manage environment variables for worktree domains
- Clean up worktrees and associated resources
Commands:
/worktree [branch]- Create a new worktree/worktree-pr- Create a PR from the current worktree/worktree-cleanup- Clean up a worktree and its resources
Debug and manage Laravel apps in production via Forge CLI and SSH.
Features:
- View production logs (application, deployment, PHP-FPM, Nginx)
- Run safe read-only commands on production
- Check queue and Horizon status
- Debug production issues with Tinker
- Manage environment variables safely
Activates when mentioning:
- "production logs", "debug production", "forge"
- "check production", "run on server", "production database"
- "deploy", "SSH to production", "server logs"
/plugin marketplace add thecrazybob/claude-code-plugins# Install laravel-valet-worktree
/plugin install laravel-valet-worktree@thecrazybob-plugins
# Install forge-cli
/plugin install forge-cli@thecrazybob-plugins# Clone the repository
git clone git@github.com:thecrazybob/claude-code-plugins.git
# Add local marketplace
/plugin marketplace add ./claude-code-plugins
# Install from local
/plugin install laravel-valet-worktree@thecrazybob-plugins- Laravel Valet installed and configured
- MySQL running locally
- Warp terminal (optional, for launch configurations)
- jq for JSON parsing
- Laravel Forge CLI installed (
composer global require laravel/forge-cli) - Forge CLI authenticated (
forge login) - SSH access to your Forge servers
The worktree plugin includes a browse function that opens the current project in the browser (worktree-aware):
# Add to ~/.zshrc or ~/.bashrc
source ~/.claude/plugins/laravel-valet-worktree/scripts/browse.sh
# Usage
browse # Opens http://project-branch.test (reads from .env)MIT License - see LICENSE for details.