# Send Netlify Deploy 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-deploy",
    "name": "Netlify Deploy",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/netlify-deploy",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/netlify-deploy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/netlify-deploy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify-deploy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "cli-commands.md",
      "deployment-patterns.md",
      "memory-template.md",
      "netlify-toml.md",
      "setup.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "netlify-deploy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T03:02:24.407Z",
      "expiresAt": "2026-05-13T03:02:24.407Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify-deploy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=netlify-deploy",
        "contentDisposition": "attachment; filename=\"netlify-deploy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "netlify-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/netlify-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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/netlify-deploy",
    "downloadUrl": "https://openagent3.xyz/downloads/netlify-deploy",
    "agentUrl": "https://openagent3.xyz/skills/netlify-deploy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/netlify-deploy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/netlify-deploy/agent.md"
  }
}
```
## Documentation

### Setup

On first use, read setup.md for integration and environment checks.

### When to Use

User needs to deploy, host, publish, or relink a web project on Netlify from the terminal. Use this skill for first deploys, preview deploys, production pushes, monorepo paths, and netlify.toml fixes.

### Architecture

Memory lives in ~/netlify-deploy/.
Use this local memory only for operational defaults so future deploy requests can start with the right safety assumptions.

~/netlify-deploy/
\`- memory.md    # Preferred deploy mode, default project path, and common build settings

See memory-template.md for setup.

### Quick Reference

Load only the file needed for the current task to keep command decisions fast and avoid irrelevant context.

TopicFileSetup and integration flowsetup.mdMemory templatememory-template.mdCLI command mapcli-commands.mdDeployment scenariosdeployment-patterns.mdConfiguration examplesnetlify-toml.md

### 1. Verify Auth and Site Link Before Any Deploy

npx netlify status

If not authenticated, run npx netlify login and re-check status. If authenticated but not linked, resolve linking before deploy.

### 2. Use Link-First, Init-Second

git remote get-url origin
npx netlify link --git-remote-url <remote-url>

If the repository is not linked or no matching site exists, fall back to npx netlify init.

### 3. Default to Preview Deploys Unless User Asks for Production

npx netlify deploy

Use npx netlify deploy --prod only when the user explicitly requests production or confirms readiness.
Never force production deploys as a shortcut when validation is still pending.

### 4. Confirm Build and Publish Paths Before First Production Deploy

npm run build
npx netlify deploy --dir=dist

Use framework defaults only as a starting point. Validate the actual output folder in the current project.

### 5. Make Monorepo Context Explicit

For monorepos, deploy from the correct subdirectory or set build.base in netlify.toml before linking/deploying.

### 6. Report Actionable Results

After each deploy, return deploy URL, environment (preview or production), and one concrete next step.

### Common Traps

These traps are prioritized by how often they cause failed or risky deploys in terminal-first workflows.

TrapConsequenceFixRunning deploy before login checkCommand fails with auth errorsAlways run npx netlify status firstRunning --prod by defaultUnreviewed changes go liveStart with preview deploy unless user confirms productionWrong publish directorySite deploys blank or outdated buildRun local build and verify output folderLinking from wrong monorepo folderDeploys wrong appConfirm current path and base directory before link/deployTreating netlify.toml as optional on complex projectsInconsistent builds between environmentsCommit a minimal, explicit netlify.toml

### External Endpoints

Only Netlify service endpoints and Netlify documentation endpoints are expected in normal usage of this skill.

EndpointData SentPurposehttps://api.netlify.comDeploy metadata, site/project identifiers, build outputs via CLIAuthentication, linking, and deploymentshttps://app.netlify.comBrowser session data when login opens OAuth flowInteractive authentication and dashboard accesshttps://docs.netlify.comDocumentation requests onlyReference for command and config behavior

No other data is sent externally.

### Security & Privacy

Data that leaves your machine:

Project deploy artifacts and metadata are sent to Netlify when running deploy commands.
Auth/session data is exchanged with Netlify during npx netlify login.

Data that stays local:

Local source files and build scripts remain in your project unless you deploy.
Skill preferences stay in ~/netlify-deploy/memory.md.

This skill does NOT:

Store secrets inside skill files.
Run undeclared external services beyond Netlify endpoints.
Modify unrelated repositories or directories.

### Trust

By using this skill, deployment data is sent to Netlify services.
Only install if you trust Netlify with your project artifacts and deployment metadata.

### Related Skills

Install with clawhub install <slug> if user confirms:

ci-cd - delivery pipeline design and release automation practices
git - branch hygiene and release-safe commit workflow
deploy - generic deployment planning across environments
devops - infrastructure and operational guardrails

### Feedback

If useful: clawhub star netlify-deploy
Stay updated: clawhub sync
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- 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-06T03:02:24.407Z
- Expires at: 2026-05-13T03:02:24.407Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/netlify-deploy)
- [Send to Agent page](https://openagent3.xyz/skills/netlify-deploy/agent)
- [JSON manifest](https://openagent3.xyz/skills/netlify-deploy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/netlify-deploy/agent.md)
- [Download page](https://openagent3.xyz/downloads/netlify-deploy)