LaunchKit · 2026
Back to Skills

laravel-forge

Manage Laravel Forge servers, sites, deployments, databases, integrations, and more via the Forge API.

0
361 downloads
by @florianbeer

Setup & Installation

openclaw skills install @florianbeer/laravel-forge

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install laravel-forge

What This Skill Does

A bash script wrapper for the Laravel Forge API covering servers, sites, deployments, databases, PHP management, and integrations. Commands are scoped by organization, server, or site depending on the resource.

Lets you manage the full Forge lifecycle from the command line without opening the dashboard, making it scriptable in CI pipelines or agent workflows.

When to use it

  • Deploy a Laravel app to a new DigitalOcean server
  • Run database migrations on a production site
  • Rotate firewall rules before a security audit
  • Set up automated daily database backups to S3
  • Install and configure Laravel Horizon on a live site

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: deploy the latest code to site 67890 on server 12345 and run migrations

AGENT
  1. 1Run `laravel-forge deployments deploy 12345 67890` to trigger deployment
  2. 2Poll `laravel-forge deployments list 12345 67890` until the latest entry shows success
  3. 3Run `laravel-forge commands run 12345 67890 --command 'php artisan migrate --force'`
  4. 4Fetch output with `laravel-forge commands output 12345 67890 <command-id>`
OUTPUT

Deployment complete and migrations applied; command output confirms no errors

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

LARAVEL_FORGE_API_TOKEN environment variable (generate at forge.laravel.com → Profile → API)Laravel Forge account