# Send Netlify to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/netlify",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/hugo_netlify_toml.sh",
      "scripts/netlify_monorepo_site.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "netlify",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T01:44:46.514Z",
      "expiresAt": "2026-05-13T01:44:46.514Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify",
        "contentDisposition": "attachment; filename=\"netlify-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "netlify"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### netlify

Use the netlify CLI to create projects (“sites”), link local folders, and configure CI/CD from GitHub.

### Pre-reqs

netlify --version
Logged in (netlify login) or provide --auth $NETLIFY_AUTH_TOKEN.
Know the Netlify team/account slug you want to create sites under (optional but recommended).

Helpful checks:

netlify status
netlify sites:list

### Monorepo pattern (recommended)

For one repo with multiple sites (e.g. sites/seattlecustomboatparts.com, sites/floridacustomerboatparts.com):

Create one Netlify site per domain.
Set the site’s Base directory to that subfolder.
Put a netlify.toml inside that subfolder.

This keeps each domain’s build config self-contained.

### Hugo subfolder netlify.toml

Create sites/<domain>/netlify.toml:

[build]
  command = "hugo --minify"
  publish = "public"

[build.environment]
  HUGO_VERSION = "0.155.1"

(Adjust HUGO_VERSION as needed.)

### 1) Create a Netlify site (project)

Run inside the site folder you want to deploy (base dir):

cd sites/<domain>
netlify sites:create --name <netlify-site-name> --account-slug <team> --with-ci

Notes:

--with-ci starts CI hooks setup.
If you need manual control, add --manual.

### 2) Link local folder to the created site

If not linked already:

netlify link

### 3) Connect to GitHub for continuous deployment

netlify init

This is usually interactive (select Git remote/repo + build settings). For automation we can pre-create netlify.toml and then accept defaults.

### Environment variables

Set per-site vars:

netlify env:set VAR_NAME value
netlify env:list

Useful for monorepos:

CONTACT_EMAIL (or other shared config)

### Deploy

Manual deploys (handy for quick preview):

netlify deploy            # draft deploy
netlify deploy --prod     # production deploy

### Included scripts

scripts/hugo_netlify_toml.sh: create a netlify.toml in a Hugo subfolder
scripts/netlify_monorepo_site.sh: helper to create/link/init a site for a subfolder

When using scripts, prefer passing NETLIFY_AUTH_TOKEN via env for non-interactive runs.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ajmwagar
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T01:44:46.514Z
- Expires at: 2026-05-13T01:44:46.514Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/netlify)
- [Send to Agent page](https://openagent3.xyz/skills/netlify/agent)
- [JSON manifest](https://openagent3.xyz/skills/netlify/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/netlify/agent.md)
- [Download page](https://openagent3.xyz/downloads/netlify)