{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lb-vercel-skill",
    "name": "Vercel",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/leonaaardob/lb-vercel-skill",
    "canonicalUrl": "https://clawhub.ai/leonaaardob/lb-vercel-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/lb-vercel-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-vercel-skill",
    "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": "lb-vercel-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T14:59:52.472Z",
      "expiresAt": "2026-05-17T14:59:52.472Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-vercel-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lb-vercel-skill",
        "contentDisposition": "attachment; filename=\"lb-vercel-skill-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lb-vercel-skill"
      },
      "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/lb-vercel-skill"
    },
    "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/lb-vercel-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lb-vercel-skill/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": "Vercel",
        "body": "Complete Vercel CLI reference and documentation access."
      },
      {
        "title": "When to Use",
        "body": "Deploying applications to Vercel\nManaging projects, domains, and environment variables\nRunning local development server\nViewing deployment logs and status\nLooking up Vercel documentation"
      },
      {
        "title": "Documentation",
        "body": "Fetch any Vercel docs page as markdown:\n\ncurl -s \"https://vercel.com/docs/<path>\" -H 'accept: text/markdown'\n\nGet the full sitemap to discover all available pages:\n\ncurl -s \"https://vercel.com/docs/sitemap.md\" -H 'accept: text/markdown'"
      },
      {
        "title": "Deployment",
        "body": "vercel / vercel deploy [path]\n\nDeploy the current directory or specified path.\n\nOptions:\n\n--prod - Deploy to production\n-e KEY=VALUE - Set runtime environment variables\n-b KEY=VALUE - Set build-time environment variables\n--prebuilt - Deploy prebuilt output (use with vercel build)\n--force - Force new deployment even if unchanged\n--no-wait - Don't wait for deployment to finish\n-y, --yes - Skip prompts, use defaults\n\nExamples:\n\nvercel                          # deploy current directory\nvercel --prod                   # deploy to production\nvercel /path/to/project         # deploy specific path\nvercel -e NODE_ENV=production   # with env var\nvercel build && vercel --prebuilt  # prebuilt deploy\n\nvercel build\n\nBuild the project locally into ./vercel/output.\n\nvercel build\n\nvercel dev [dir]\n\nStart local development server.\n\nOptions:\n\n-l, --listen <URI> - Port/address (default: 0.0.0.0:3000)\n\nExamples:\n\nvercel dev                  # start on port 3000\nvercel dev --listen 8080    # start on port 8080"
      },
      {
        "title": "Project Management",
        "body": "vercel link [path]\n\nLink local directory to a Vercel project.\n\nOptions:\n\n-p, --project <NAME> - Specify project name\n-y, --yes - Skip prompts\n\nExamples:\n\nvercel link\nvercel link --yes\nvercel link -p my-project\n\nvercel projects\n\nManage projects.\n\nvercel projects list              # list all projects\nvercel projects add <name>        # create new project\nvercel projects inspect [name]    # show project details\nvercel projects remove <name>     # delete project\n\nvercel pull [path]\n\nPull project settings and env vars from cloud.\n\nvercel pull"
      },
      {
        "title": "Environment Variables",
        "body": "vercel env\n\nManage environment variables.\n\nvercel env list [environment]                    # list env vars\nvercel env add <name> [environment]              # add env var\nvercel env remove <name> [environment]           # remove env var\nvercel env pull [filename]                       # pull to .env.local\n\nEnvironments: development, preview, production\n\nExamples:\n\nvercel env list production\nvercel env add DATABASE_URL production\nvercel env pull .env.local"
      },
      {
        "title": "Domains & Aliases",
        "body": "vercel domains\n\nManage domain names.\n\nvercel domains list                          # list domains\nvercel domains add <domain> <project>        # add domain\nvercel domains inspect <domain>              # show domain info\nvercel domains remove <domain>               # remove domain\nvercel domains buy <domain>                  # purchase domain\nvercel domains transfer-in <domain>          # transfer domain to Vercel\n\nvercel alias\n\nManage deployment aliases.\n\nvercel alias list                                    # list aliases\nvercel alias set <deployment> <alias>                # create alias\nvercel alias remove <alias>                          # remove alias\n\nExamples:\n\nvercel alias set my-app-abc123.vercel.app my-app.vercel.app\nvercel alias set my-app-abc123.vercel.app custom-domain.com"
      },
      {
        "title": "Deployments",
        "body": "vercel ls [app] / vercel list\n\nList deployments.\n\nvercel ls\nvercel ls my-project\n\nvercel inspect [id]\n\nDisplay deployment information.\n\nvercel inspect <deployment-url-or-id>\n\nvercel logs <url|id>\n\nView runtime logs for a deployment.\n\nOptions:\n\n-j, --json - Output as JSON (compatible with jq)\n\nExamples:\n\nvercel logs my-app.vercel.app\nvercel logs <deployment-id> --json\nvercel logs <deployment-id> --json | jq 'select(.level == \"error\")'\n\nvercel promote <url|id>\n\nPromote deployment to production.\n\nvercel promote <deployment-url-or-id>\n\nvercel rollback [url|id]\n\nRollback to previous deployment.\n\nvercel rollback\nvercel rollback <deployment-url-or-id>\n\nvercel redeploy [url|id]\n\nRebuild and deploy a previous deployment.\n\nvercel redeploy <deployment-url-or-id>\n\nvercel rm <id> / vercel remove\n\nRemove a deployment.\n\nvercel rm <deployment-url-or-id>"
      },
      {
        "title": "Authentication & Teams",
        "body": "vercel login [email]      # log in or create account\nvercel logout             # log out\nvercel whoami             # show current user\nvercel switch [scope]     # switch between scopes/teams\nvercel teams              # manage teams"
      },
      {
        "title": "Other Commands",
        "body": "vercel open               # open project in dashboard\nvercel init [example]     # initialize from example\nvercel install [name]     # install marketplace integration\nvercel integration        # manage integrations\nvercel certs              # manage SSL certificates\nvercel dns                # manage DNS records\nvercel bisect             # binary search for bug-introducing deployment"
      },
      {
        "title": "Global Options",
        "body": "Available on all commands:\n\nOptionDescription-h, --helpShow help-v, --versionShow version-d, --debugDebug mode-t, --token <TOKEN>Auth token-S, --scopeSet scope/team--cwd <DIR>Working directory-A, --local-config <FILE>Path to vercel.json--no-colorDisable colors"
      },
      {
        "title": "Quick Reference",
        "body": "TaskCommandDeployvercel or vercel --prodDev serververcel devLink projectvercel linkList deploymentsvercel lsView logsvercel logs <url>Add env varvercel env add <name> <env>Pull env varsvercel env pullRollbackvercel rollbackAdd domainvercel domains add <domain> <project>Get docscurl -s \"https://vercel.com/docs/<path>\" -H 'accept: text/markdown'Docs sitemapcurl -s \"https://vercel.com/docs/sitemap.md\" -H 'accept: text/markdown'"
      }
    ],
    "body": "Vercel\n\nComplete Vercel CLI reference and documentation access.\n\nWhen to Use\nDeploying applications to Vercel\nManaging projects, domains, and environment variables\nRunning local development server\nViewing deployment logs and status\nLooking up Vercel documentation\nDocumentation\n\nFetch any Vercel docs page as markdown:\n\ncurl -s \"https://vercel.com/docs/<path>\" -H 'accept: text/markdown'\n\n\nGet the full sitemap to discover all available pages:\n\ncurl -s \"https://vercel.com/docs/sitemap.md\" -H 'accept: text/markdown'\n\nCLI Commands\nDeployment\nvercel / vercel deploy [path]\n\nDeploy the current directory or specified path.\n\nOptions:\n\n--prod - Deploy to production\n-e KEY=VALUE - Set runtime environment variables\n-b KEY=VALUE - Set build-time environment variables\n--prebuilt - Deploy prebuilt output (use with vercel build)\n--force - Force new deployment even if unchanged\n--no-wait - Don't wait for deployment to finish\n-y, --yes - Skip prompts, use defaults\n\nExamples:\n\nvercel                          # deploy current directory\nvercel --prod                   # deploy to production\nvercel /path/to/project         # deploy specific path\nvercel -e NODE_ENV=production   # with env var\nvercel build && vercel --prebuilt  # prebuilt deploy\n\nvercel build\n\nBuild the project locally into ./vercel/output.\n\nvercel build\n\nvercel dev [dir]\n\nStart local development server.\n\nOptions:\n\n-l, --listen <URI> - Port/address (default: 0.0.0.0:3000)\n\nExamples:\n\nvercel dev                  # start on port 3000\nvercel dev --listen 8080    # start on port 8080\n\nProject Management\nvercel link [path]\n\nLink local directory to a Vercel project.\n\nOptions:\n\n-p, --project <NAME> - Specify project name\n-y, --yes - Skip prompts\n\nExamples:\n\nvercel link\nvercel link --yes\nvercel link -p my-project\n\nvercel projects\n\nManage projects.\n\nvercel projects list              # list all projects\nvercel projects add <name>        # create new project\nvercel projects inspect [name]    # show project details\nvercel projects remove <name>     # delete project\n\nvercel pull [path]\n\nPull project settings and env vars from cloud.\n\nvercel pull\n\nEnvironment Variables\nvercel env\n\nManage environment variables.\n\nvercel env list [environment]                    # list env vars\nvercel env add <name> [environment]              # add env var\nvercel env remove <name> [environment]           # remove env var\nvercel env pull [filename]                       # pull to .env.local\n\n\nEnvironments: development, preview, production\n\nExamples:\n\nvercel env list production\nvercel env add DATABASE_URL production\nvercel env pull .env.local\n\nDomains & Aliases\nvercel domains\n\nManage domain names.\n\nvercel domains list                          # list domains\nvercel domains add <domain> <project>        # add domain\nvercel domains inspect <domain>              # show domain info\nvercel domains remove <domain>               # remove domain\nvercel domains buy <domain>                  # purchase domain\nvercel domains transfer-in <domain>          # transfer domain to Vercel\n\nvercel alias\n\nManage deployment aliases.\n\nvercel alias list                                    # list aliases\nvercel alias set <deployment> <alias>                # create alias\nvercel alias remove <alias>                          # remove alias\n\n\nExamples:\n\nvercel alias set my-app-abc123.vercel.app my-app.vercel.app\nvercel alias set my-app-abc123.vercel.app custom-domain.com\n\nDeployments\nvercel ls [app] / vercel list\n\nList deployments.\n\nvercel ls\nvercel ls my-project\n\nvercel inspect [id]\n\nDisplay deployment information.\n\nvercel inspect <deployment-url-or-id>\n\nvercel logs <url|id>\n\nView runtime logs for a deployment.\n\nOptions:\n\n-j, --json - Output as JSON (compatible with jq)\n\nExamples:\n\nvercel logs my-app.vercel.app\nvercel logs <deployment-id> --json\nvercel logs <deployment-id> --json | jq 'select(.level == \"error\")'\n\nvercel promote <url|id>\n\nPromote deployment to production.\n\nvercel promote <deployment-url-or-id>\n\nvercel rollback [url|id]\n\nRollback to previous deployment.\n\nvercel rollback\nvercel rollback <deployment-url-or-id>\n\nvercel redeploy [url|id]\n\nRebuild and deploy a previous deployment.\n\nvercel redeploy <deployment-url-or-id>\n\nvercel rm <id> / vercel remove\n\nRemove a deployment.\n\nvercel rm <deployment-url-or-id>\n\nAuthentication & Teams\nvercel login [email]      # log in or create account\nvercel logout             # log out\nvercel whoami             # show current user\nvercel switch [scope]     # switch between scopes/teams\nvercel teams              # manage teams\n\nOther Commands\nvercel open               # open project in dashboard\nvercel init [example]     # initialize from example\nvercel install [name]     # install marketplace integration\nvercel integration        # manage integrations\nvercel certs              # manage SSL certificates\nvercel dns                # manage DNS records\nvercel bisect             # binary search for bug-introducing deployment\n\nGlobal Options\n\nAvailable on all commands:\n\nOption\tDescription\n-h, --help\tShow help\n-v, --version\tShow version\n-d, --debug\tDebug mode\n-t, --token <TOKEN>\tAuth token\n-S, --scope\tSet scope/team\n--cwd <DIR>\tWorking directory\n-A, --local-config <FILE>\tPath to vercel.json\n--no-color\tDisable colors\nQuick Reference\nTask\tCommand\nDeploy\tvercel or vercel --prod\nDev server\tvercel dev\nLink project\tvercel link\nList deployments\tvercel ls\nView logs\tvercel logs <url>\nAdd env var\tvercel env add <name> <env>\nPull env vars\tvercel env pull\nRollback\tvercel rollback\nAdd domain\tvercel domains add <domain> <project>\nGet docs\tcurl -s \"https://vercel.com/docs/<path>\" -H 'accept: text/markdown'\nDocs sitemap\tcurl -s \"https://vercel.com/docs/sitemap.md\" -H 'accept: text/markdown'"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/leonaaardob/lb-vercel-skill",
    "publisherUrl": "https://clawhub.ai/leonaaardob/lb-vercel-skill",
    "owner": "leonaaardob",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lb-vercel-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/lb-vercel-skill",
    "agentUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lb-vercel-skill/agent.md"
  }
}