{
  "schemaVersion": "1.0",
  "item": {
    "slug": "web-deploy",
    "name": "Web Deploy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/cmanfre7/web-deploy",
    "canonicalUrl": "https://clawhub.ai/cmanfre7/web-deploy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/web-deploy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-deploy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "slug": "web-deploy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T20:39:25.504Z",
      "expiresAt": "2026-05-17T20:39:25.504Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-deploy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=web-deploy",
        "contentDisposition": "attachment; filename=\"web-deploy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "web-deploy"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/web-deploy"
    },
    "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/web-deploy",
    "agentPageUrl": "https://openagent3.xyz/skills/web-deploy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web-deploy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web-deploy/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": "web-deploy",
        "body": "Build and deploy websites, web apps, and APIs to production."
      },
      {
        "title": "Local Preview Workflow",
        "body": "# Static site\nnpx http-server ./dist -p 8080 -c-1\n\n# Next.js\nnpm run dev          # Development (hot reload)\nnpm run build && npm run start  # Production preview\n\n# FastAPI\nuvicorn app.main:app --reload --port 8000\n\n# Vite-based\nnpm run dev          # Dev server\nnpm run build && npx serve dist  # Production preview"
      },
      {
        "title": "Vercel (Frontend / Next.js / Static)",
        "body": "# First time setup\nnpx vercel link\n\n# Preview deployment\nnpx vercel\n\n# Production deployment\nnpx vercel --prod\n\n# Environment variables\nnpx vercel env add SECRET_KEY\n\nBest for: Next.js apps, React SPAs, static sites, serverless functions.\n\nConfig: vercel.json (usually not needed for Next.js)\n\n{\n  \"buildCommand\": \"npm run build\",\n  \"outputDirectory\": \"dist\",\n  \"framework\": \"nextjs\"\n}"
      },
      {
        "title": "Railway (Backend / APIs / Databases)",
        "body": "# First time setup\nrailway login\nrailway init\n\n# Deploy\nrailway up\n\n# Add database\nrailway add --plugin postgresql\n\n# Environment variables\nrailway variables set SECRET_KEY=value\n\n# View logs\nrailway logs\n\nBest for: Backend APIs, databases, long-running processes, Docker containers."
      },
      {
        "title": "GitHub Pages (Static Sites)",
        "body": "# Using gh-pages package\nnpm install -D gh-pages\n# Add to package.json scripts: \"deploy\": \"gh-pages -d dist\"\nnpm run build && npm run deploy\n\nBest for: Documentation, simple static sites, project pages."
      },
      {
        "title": "Canvas (Clawdbot Workspace)",
        "body": "Deploy to ~/clawd/canvas/ for local serving through the clawdbot gateway.\n\ncp -r ./dist/* ~/clawd/canvas/my-project/"
      },
      {
        "title": "Pre-Deploy Checklist",
        "body": "Build succeeds locally (npm run build / python -m build)\n No TypeScript/lint errors\n Tests pass\n Environment variables set on target platform\n .env / secrets NOT in git\n robots.txt and sitemap.xml if public site\n Favicon and meta tags set\n HTTPS configured (automatic on Vercel/Railway)\n Error pages (404, 500) configured\n Performance: images optimized, code split, no huge bundles"
      },
      {
        "title": "Rollback",
        "body": "# Vercel — redeploy previous\nnpx vercel rollback\n\n# Railway — redeploy previous\nrailway rollback\n\n# Git-based — revert and push\ngit revert HEAD && git push"
      },
      {
        "title": "Domain Setup",
        "body": "# Vercel\nnpx vercel domains add mydomain.com\n\n# DNS: Point CNAME to cname.vercel-dns.com\n# Or A record to 76.76.21.21"
      }
    ],
    "body": "web-deploy\n\nBuild and deploy websites, web apps, and APIs to production.\n\nLocal Preview Workflow\n# Static site\nnpx http-server ./dist -p 8080 -c-1\n\n# Next.js\nnpm run dev          # Development (hot reload)\nnpm run build && npm run start  # Production preview\n\n# FastAPI\nuvicorn app.main:app --reload --port 8000\n\n# Vite-based\nnpm run dev          # Dev server\nnpm run build && npx serve dist  # Production preview\n\nDeployment Targets\nVercel (Frontend / Next.js / Static)\n# First time setup\nnpx vercel link\n\n# Preview deployment\nnpx vercel\n\n# Production deployment\nnpx vercel --prod\n\n# Environment variables\nnpx vercel env add SECRET_KEY\n\n\nBest for: Next.js apps, React SPAs, static sites, serverless functions.\n\nConfig: vercel.json (usually not needed for Next.js)\n\n{\n  \"buildCommand\": \"npm run build\",\n  \"outputDirectory\": \"dist\",\n  \"framework\": \"nextjs\"\n}\n\nRailway (Backend / APIs / Databases)\n# First time setup\nrailway login\nrailway init\n\n# Deploy\nrailway up\n\n# Add database\nrailway add --plugin postgresql\n\n# Environment variables\nrailway variables set SECRET_KEY=value\n\n# View logs\nrailway logs\n\n\nBest for: Backend APIs, databases, long-running processes, Docker containers.\n\nGitHub Pages (Static Sites)\n# Using gh-pages package\nnpm install -D gh-pages\n# Add to package.json scripts: \"deploy\": \"gh-pages -d dist\"\nnpm run build && npm run deploy\n\n\nBest for: Documentation, simple static sites, project pages.\n\nCanvas (Clawdbot Workspace)\n\nDeploy to ~/clawd/canvas/ for local serving through the clawdbot gateway.\n\ncp -r ./dist/* ~/clawd/canvas/my-project/\n\nPre-Deploy Checklist\n Build succeeds locally (npm run build / python -m build)\n No TypeScript/lint errors\n Tests pass\n Environment variables set on target platform\n .env / secrets NOT in git\n robots.txt and sitemap.xml if public site\n Favicon and meta tags set\n HTTPS configured (automatic on Vercel/Railway)\n Error pages (404, 500) configured\n Performance: images optimized, code split, no huge bundles\nRollback\n# Vercel — redeploy previous\nnpx vercel rollback\n\n# Railway — redeploy previous\nrailway rollback\n\n# Git-based — revert and push\ngit revert HEAD && git push\n\nDomain Setup\n# Vercel\nnpx vercel domains add mydomain.com\n\n# DNS: Point CNAME to cname.vercel-dns.com\n# Or A record to 76.76.21.21"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/cmanfre7/web-deploy",
    "publisherUrl": "https://clawhub.ai/cmanfre7/web-deploy",
    "owner": "cmanfre7",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/web-deploy",
    "downloadUrl": "https://openagent3.xyz/downloads/web-deploy",
    "agentUrl": "https://openagent3.xyz/skills/web-deploy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/web-deploy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/web-deploy/agent.md"
  }
}