{
  "schemaVersion": "1.0",
  "item": {
    "slug": "netlify",
    "name": "Netlify",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ajmwagar/netlify",
    "canonicalUrl": "https://clawhub.ai/ajmwagar/netlify",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/netlify",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/hugo_netlify_toml.sh",
      "scripts/netlify_monorepo_site.sh"
    ],
    "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/netlify"
    },
    "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/netlify",
    "agentPageUrl": "https://openagent3.xyz/skills/netlify/agent",
    "manifestUrl": "https://openagent3.xyz/skills/netlify/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/netlify/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": "netlify",
        "body": "Use the netlify CLI to create projects (“sites”), link local folders, and configure CI/CD from GitHub."
      },
      {
        "title": "Pre-reqs",
        "body": "netlify --version\nLogged in (netlify login) or provide --auth $NETLIFY_AUTH_TOKEN.\nKnow the Netlify team/account slug you want to create sites under (optional but recommended).\n\nHelpful checks:\n\nnetlify status\nnetlify sites:list"
      },
      {
        "title": "Monorepo pattern (recommended)",
        "body": "For one repo with multiple sites (e.g. sites/seattlecustomboatparts.com, sites/floridacustomerboatparts.com):\n\nCreate one Netlify site per domain.\nSet the site’s Base directory to that subfolder.\nPut a netlify.toml inside that subfolder.\n\nThis keeps each domain’s build config self-contained."
      },
      {
        "title": "Hugo subfolder netlify.toml",
        "body": "Create sites/<domain>/netlify.toml:\n\n[build]\n  command = \"hugo --minify\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.155.1\"\n\n(Adjust HUGO_VERSION as needed.)"
      },
      {
        "title": "1) Create a Netlify site (project)",
        "body": "Run inside the site folder you want to deploy (base dir):\n\ncd sites/<domain>\nnetlify sites:create --name <netlify-site-name> --account-slug <team> --with-ci\n\nNotes:\n\n--with-ci starts CI hooks setup.\nIf you need manual control, add --manual."
      },
      {
        "title": "2) Link local folder to the created site",
        "body": "If not linked already:\n\nnetlify link"
      },
      {
        "title": "3) Connect to GitHub for continuous deployment",
        "body": "netlify init\n\nThis is usually interactive (select Git remote/repo + build settings). For automation we can pre-create netlify.toml and then accept defaults."
      },
      {
        "title": "Environment variables",
        "body": "Set per-site vars:\n\nnetlify env:set VAR_NAME value\nnetlify env:list\n\nUseful for monorepos:\n\nCONTACT_EMAIL (or other shared config)"
      },
      {
        "title": "Deploy",
        "body": "Manual deploys (handy for quick preview):\n\nnetlify deploy            # draft deploy\nnetlify deploy --prod     # production deploy"
      },
      {
        "title": "Included scripts",
        "body": "scripts/hugo_netlify_toml.sh: create a netlify.toml in a Hugo subfolder\nscripts/netlify_monorepo_site.sh: helper to create/link/init a site for a subfolder\n\nWhen using scripts, prefer passing NETLIFY_AUTH_TOKEN via env for non-interactive runs."
      }
    ],
    "body": "netlify\n\nUse the netlify CLI to create projects (“sites”), link local folders, and configure CI/CD from GitHub.\n\nPre-reqs\nnetlify --version\nLogged in (netlify login) or provide --auth $NETLIFY_AUTH_TOKEN.\nKnow the Netlify team/account slug you want to create sites under (optional but recommended).\n\nHelpful checks:\n\nnetlify status\nnetlify sites:list\n\nMonorepo pattern (recommended)\n\nFor one repo with multiple sites (e.g. sites/seattlecustomboatparts.com, sites/floridacustomerboatparts.com):\n\nCreate one Netlify site per domain.\nSet the site’s Base directory to that subfolder.\nPut a netlify.toml inside that subfolder.\n\nThis keeps each domain’s build config self-contained.\n\nHugo subfolder netlify.toml\n\nCreate sites/<domain>/netlify.toml:\n\n[build]\n  command = \"hugo --minify\"\n  publish = \"public\"\n\n[build.environment]\n  HUGO_VERSION = \"0.155.1\"\n\n\n(Adjust HUGO_VERSION as needed.)\n\nFast workflow: create + link + init CI/CD\n1) Create a Netlify site (project)\n\nRun inside the site folder you want to deploy (base dir):\n\ncd sites/<domain>\nnetlify sites:create --name <netlify-site-name> --account-slug <team> --with-ci\n\n\nNotes:\n\n--with-ci starts CI hooks setup.\nIf you need manual control, add --manual.\n2) Link local folder to the created site\n\nIf not linked already:\n\nnetlify link\n\n3) Connect to GitHub for continuous deployment\nnetlify init\n\n\nThis is usually interactive (select Git remote/repo + build settings). For automation we can pre-create netlify.toml and then accept defaults.\n\nEnvironment variables\n\nSet per-site vars:\n\nnetlify env:set VAR_NAME value\nnetlify env:list\n\n\nUseful for monorepos:\n\nCONTACT_EMAIL (or other shared config)\nDeploy\n\nManual deploys (handy for quick preview):\n\nnetlify deploy            # draft deploy\nnetlify deploy --prod     # production deploy\n\nIncluded scripts\nscripts/hugo_netlify_toml.sh: create a netlify.toml in a Hugo subfolder\nscripts/netlify_monorepo_site.sh: helper to create/link/init a site for a subfolder\n\nWhen using scripts, prefer passing NETLIFY_AUTH_TOKEN via env for non-interactive runs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ajmwagar/netlify",
    "publisherUrl": "https://clawhub.ai/ajmwagar/netlify",
    "owner": "ajmwagar",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/netlify",
    "downloadUrl": "https://openagent3.xyz/downloads/netlify",
    "agentUrl": "https://openagent3.xyz/skills/netlify/agent",
    "manifestUrl": "https://openagent3.xyz/skills/netlify/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/netlify/agent.md"
  }
}