{
  "schemaVersion": "1.0",
  "item": {
    "slug": "laravel-cloud",
    "name": "Laravel Cloud",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/florianbeer/laravel-cloud",
    "canonicalUrl": "https://clawhub.ai/florianbeer/laravel-cloud",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/laravel-cloud",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=laravel-cloud",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/laravel-cloud.sh",
      "skill.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/laravel-cloud"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/laravel-cloud",
    "agentPageUrl": "https://openagent3.xyz/skills/laravel-cloud/agent",
    "manifestUrl": "https://openagent3.xyz/skills/laravel-cloud/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/laravel-cloud/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Laravel Cloud API Skill",
        "body": "Wraps the entire Laravel Cloud REST API in a single bash script."
      },
      {
        "title": "Setup",
        "body": "Option 1 — Environment variable (preferred):\n\nexport LARAVEL_CLOUD_API_TOKEN=\"your-token-here\"\n\nOption 2 — Credentials file:\n\nmkdir -p ~/.openclaw/credentials/laravel-cloud\necho '{\"token\":\"your-token-here\"}' > ~/.openclaw/credentials/laravel-cloud/config.json\n\nGenerate your token at: cloud.laravel.com → Settings → API Tokens"
      },
      {
        "title": "Usage",
        "body": "laravel-cloud <resource> <action> [args...]"
      },
      {
        "title": "Quick Reference",
        "body": "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"
      },
      {
        "title": "Common Examples",
        "body": "# List all applications\nlaravel-cloud apps list\n\n# Create an application (requires --repository)\nlaravel-cloud apps create --name \"my-app\" --region us-east-1 --repository owner/repo\n\n# List environments for an app\nlaravel-cloud envs list <app-id>\n\n# Create an environment\nlaravel-cloud envs create <app-id> --name \"Production\" --branch main\n\n# Start / stop an environment\nlaravel-cloud envs start <env-id>\nlaravel-cloud envs stop <env-id>\n\n# View environment metrics and logs\nlaravel-cloud envs metrics <env-id> --period 24h\nlaravel-cloud envs logs <env-id>\n\n# Set environment variables\nlaravel-cloud envs vars-add <env-id> --vars 'APP_KEY=base64:...,DB_HOST=localhost'\nlaravel-cloud envs vars-replace <env-id> --vars 'KEY1=val1,KEY2=val2'\n\n# Trigger a deployment\nlaravel-cloud deployments initiate <env-id>\n\n# Run an Artisan command\nlaravel-cloud commands run <env-id> --command \"php artisan migrate --force\"\n\n# Get organization and regions\nlaravel-cloud org get\nlaravel-cloud regions list\n\n# Manage databases\n# NOTE: Creating a cluster auto-creates a \"main\" database (schema).\n# Use that default — don't create an extra one. Wire the \"main\" schema\n# to your environment via: envs update <env-id> --database-schema-id <main-schema-id>\n# To find the schema ID: databases cluster <cluster-id> (with ?include=schemas)\nlaravel-cloud databases clusters\n# DB types: laravel_mysql_84, laravel_mysql_8, neon_serverless_postgres_16/17/18, aws_rds_mysql_8, aws_rds_postgres_18\nlaravel-cloud databases cluster-create --name my-db --type laravel_mysql_84 --region us-east-1 --size db-flex.m-1vcpu-512mb --storage 5\n\n# Manage caches\nlaravel-cloud caches list\n# Cache types: upstash_redis (sizes: 250mb, 1gb, ...) or laravel_valkey (sizes: valkey-pro.250mb, ...)\nlaravel-cloud caches create --name my-cache --type laravel_valkey --region us-east-1 --size valkey-pro.250mb\n\n# Object storage\nlaravel-cloud buckets list\nlaravel-cloud buckets create --name my-bucket --region us-east-1\n\n# WebSocket clusters\nlaravel-cloud websockets list\nlaravel-cloud ws-apps list <ws-cluster-id>\n\n# Per-resource help\nlaravel-cloud help\nlaravel-cloud envs help\nlaravel-cloud databases help"
      },
      {
        "title": "Dependencies",
        "body": "curl — HTTP requests\njq — JSON parsing and pretty-printing"
      }
    ],
    "body": "Laravel Cloud API Skill\n\nWraps the entire Laravel Cloud REST API in a single bash script.\n\nSetup\n\nOption 1 — Environment variable (preferred):\n\nexport LARAVEL_CLOUD_API_TOKEN=\"your-token-here\"\n\n\nOption 2 — Credentials file:\n\nmkdir -p ~/.openclaw/credentials/laravel-cloud\necho '{\"token\":\"your-token-here\"}' > ~/.openclaw/credentials/laravel-cloud/config.json\n\n\nGenerate your token at: cloud.laravel.com → Settings → API Tokens\n\nUsage\nlaravel-cloud <resource> <action> [args...]\n\nQuick Reference\nResource\tActions\napps\tlist, get, create, update, delete\nenvs\tlist, get, create, update, delete, start, stop, metrics, logs, vars-add, vars-replace\ncommands\tlist, get, run\ndeployments\tlist, get, initiate\ndomains\tlist, get, create, update, delete, verify\ninstances\tlist, get, sizes, create, update, delete\nbg-processes\tlist, get, create, update, delete\ndatabases\tclusters, cluster, cluster-create, cluster-update, cluster-delete, cluster-metrics, types, list, get, create, delete, snapshots, snapshot, snapshot-create, snapshot-delete, restore, dedicated\ncaches\tlist, get, types, create, update, delete, metrics\nbuckets\tlist, get, create, update, delete\nbucket-keys\tlist, get, create, update, delete\nwebsockets\tlist, get, create, update, delete, metrics\nws-apps\tlist, get, create, update, delete, metrics\nips\tlist\norg\tget\nregions\tlist\nCommon Examples\n# List all applications\nlaravel-cloud apps list\n\n# Create an application (requires --repository)\nlaravel-cloud apps create --name \"my-app\" --region us-east-1 --repository owner/repo\n\n# List environments for an app\nlaravel-cloud envs list <app-id>\n\n# Create an environment\nlaravel-cloud envs create <app-id> --name \"Production\" --branch main\n\n# Start / stop an environment\nlaravel-cloud envs start <env-id>\nlaravel-cloud envs stop <env-id>\n\n# View environment metrics and logs\nlaravel-cloud envs metrics <env-id> --period 24h\nlaravel-cloud envs logs <env-id>\n\n# Set environment variables\nlaravel-cloud envs vars-add <env-id> --vars 'APP_KEY=base64:...,DB_HOST=localhost'\nlaravel-cloud envs vars-replace <env-id> --vars 'KEY1=val1,KEY2=val2'\n\n# Trigger a deployment\nlaravel-cloud deployments initiate <env-id>\n\n# Run an Artisan command\nlaravel-cloud commands run <env-id> --command \"php artisan migrate --force\"\n\n# Get organization and regions\nlaravel-cloud org get\nlaravel-cloud regions list\n\n# Manage databases\n# NOTE: Creating a cluster auto-creates a \"main\" database (schema).\n# Use that default — don't create an extra one. Wire the \"main\" schema\n# to your environment via: envs update <env-id> --database-schema-id <main-schema-id>\n# To find the schema ID: databases cluster <cluster-id> (with ?include=schemas)\nlaravel-cloud databases clusters\n# DB types: laravel_mysql_84, laravel_mysql_8, neon_serverless_postgres_16/17/18, aws_rds_mysql_8, aws_rds_postgres_18\nlaravel-cloud databases cluster-create --name my-db --type laravel_mysql_84 --region us-east-1 --size db-flex.m-1vcpu-512mb --storage 5\n\n# Manage caches\nlaravel-cloud caches list\n# Cache types: upstash_redis (sizes: 250mb, 1gb, ...) or laravel_valkey (sizes: valkey-pro.250mb, ...)\nlaravel-cloud caches create --name my-cache --type laravel_valkey --region us-east-1 --size valkey-pro.250mb\n\n# Object storage\nlaravel-cloud buckets list\nlaravel-cloud buckets create --name my-bucket --region us-east-1\n\n# WebSocket clusters\nlaravel-cloud websockets list\nlaravel-cloud ws-apps list <ws-cluster-id>\n\n# Per-resource help\nlaravel-cloud help\nlaravel-cloud envs help\nlaravel-cloud databases help\n\nDependencies\ncurl — HTTP requests\njq — JSON parsing and pretty-printing"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/florianbeer/laravel-cloud",
    "publisherUrl": "https://clawhub.ai/florianbeer/laravel-cloud",
    "owner": "florianbeer",
    "version": "1.2.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/laravel-cloud",
    "downloadUrl": "https://openagent3.xyz/downloads/laravel-cloud",
    "agentUrl": "https://openagent3.xyz/skills/laravel-cloud/agent",
    "manifestUrl": "https://openagent3.xyz/skills/laravel-cloud/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/laravel-cloud/agent.md"
  }
}