← All skills
Tencent SkillHub · Developer Tools

Laravel Cloud

Manage Laravel Cloud infrastructure via API — apps, environments, deployments, databases, caches, domains, scaling, commands, storage, and WebSockets.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage Laravel Cloud infrastructure via API — apps, environments, deployments, databases, caches, domains, scaling, commands, storage, and WebSockets.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/laravel-cloud.sh, skill.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.2.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

Laravel Cloud API Skill

Wraps the entire Laravel Cloud REST API in a single bash script.

Setup

Option 1 — Environment variable (preferred): export LARAVEL_CLOUD_API_TOKEN="your-token-here" Option 2 — Credentials file: mkdir -p ~/.openclaw/credentials/laravel-cloud echo '{"token":"your-token-here"}' > ~/.openclaw/credentials/laravel-cloud/config.json Generate your token at: cloud.laravel.com → Settings → API Tokens

Usage

laravel-cloud <resource> <action> [args...]

Quick Reference

ResourceActionsappslist, get, create, update, deleteenvslist, get, create, update, delete, start, stop, metrics, logs, vars-add, vars-replacecommandslist, get, rundeploymentslist, get, initiatedomainslist, get, create, update, delete, verifyinstanceslist, get, sizes, create, update, deletebg-processeslist, get, create, update, deletedatabasesclusters, cluster, cluster-create, cluster-update, cluster-delete, cluster-metrics, types, list, get, create, delete, snapshots, snapshot, snapshot-create, snapshot-delete, restore, dedicatedcacheslist, get, types, create, update, delete, metricsbucketslist, get, create, update, deletebucket-keyslist, get, create, update, deletewebsocketslist, get, create, update, delete, metricsws-appslist, get, create, update, delete, metricsipslistorggetregionslist

Common Examples

# List all applications laravel-cloud apps list # Create an application (requires --repository) laravel-cloud apps create --name "my-app" --region us-east-1 --repository owner/repo # List environments for an app laravel-cloud envs list <app-id> # Create an environment laravel-cloud envs create <app-id> --name "Production" --branch main # Start / stop an environment laravel-cloud envs start <env-id> laravel-cloud envs stop <env-id> # View environment metrics and logs laravel-cloud envs metrics <env-id> --period 24h laravel-cloud envs logs <env-id> # Set environment variables laravel-cloud envs vars-add <env-id> --vars 'APP_KEY=base64:...,DB_HOST=localhost' laravel-cloud envs vars-replace <env-id> --vars 'KEY1=val1,KEY2=val2' # Trigger a deployment laravel-cloud deployments initiate <env-id> # Run an Artisan command laravel-cloud commands run <env-id> --command "php artisan migrate --force" # Get organization and regions laravel-cloud org get laravel-cloud regions list # Manage databases # NOTE: Creating a cluster auto-creates a "main" database (schema). # Use that default — don't create an extra one. Wire the "main" schema # to your environment via: envs update <env-id> --database-schema-id <main-schema-id> # To find the schema ID: databases cluster <cluster-id> (with ?include=schemas) laravel-cloud databases clusters # DB types: laravel_mysql_84, laravel_mysql_8, neon_serverless_postgres_16/17/18, aws_rds_mysql_8, aws_rds_postgres_18 laravel-cloud databases cluster-create --name my-db --type laravel_mysql_84 --region us-east-1 --size db-flex.m-1vcpu-512mb --storage 5 # Manage caches laravel-cloud caches list # Cache types: upstash_redis (sizes: 250mb, 1gb, ...) or laravel_valkey (sizes: valkey-pro.250mb, ...) laravel-cloud caches create --name my-cache --type laravel_valkey --region us-east-1 --size valkey-pro.250mb # Object storage laravel-cloud buckets list laravel-cloud buckets create --name my-bucket --region us-east-1 # WebSocket clusters laravel-cloud websockets list laravel-cloud ws-apps list <ws-cluster-id> # Per-resource help laravel-cloud help laravel-cloud envs help laravel-cloud databases help

Dependencies

curl — HTTP requests jq — JSON parsing and pretty-printing

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • scripts/laravel-cloud.sh Scripts
  • skill.json Config