Token导航 LogoToken导航TokenDH.com
运维操作浏览器clawhub未标认证来源可访问clear审计通过

netlify-deploy网络化部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

16,727

周安装

704

GitHub Stars

公开资料未说明

下载量

5,857
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:netlify-deploy(网络化部署)
来源仓库:https://github.com/ivangdavila/netlify-deploy
安装命令:
openclaw skills install netlify-deploy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install netlify-deploy

简介

使用 npx netlify 部署和管理 Netlify 站点,包括身份验证、链接、预览部署、生产版本和配置检查。

SKILL.md

name
Netlify Deploy
slug
netlify-deploy
version
1.0.0
homepage
https://clawic.com/skills/netlify-deploy
description
Deploy and manage Netlify sites with npx netlify, including auth, linking, preview deploys, production releases, and config checks.
changelog
Initial release with authentication checks, link-or-create flow, and safer preview-to-production deployment guidance.
metadata
{"clawdbot":{"emoji":"NET","requires":{"bins":["npx","git"],"config":["~/netlify-deploy/"]},"os":["linux","darwin","win32"]}}

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.

TopicFile
Setup and integration flowsetup.md
Memory templatememory-template.md
CLI command mapcli-commands.md
Deployment scenariosdeployment-patterns.md
Configuration examplesnetlify-toml.md

Core Rules

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.

TrapConsequenceFix
Running deploy before login checkCommand fails with auth errorsAlways run npx netlify status first
Running --prod by defaultUnreviewed changes go liveStart with preview deploy unless user confirms production
Wrong publish directorySite deploys blank or outdated buildRun local build and verify output folder
Linking from wrong monorepo folderDeploys wrong appConfirm current path and base directory before link/deploy
Treating 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 SentPurpose
https://api.netlify.comDeploy metadata, site/project identifiers, build outputs via CLIAuthentication, linking, and deployments
https://app.netlify.comBrowser session data when login opens OAuth flowInteractive authentication and dashboard access
https://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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.42%
按下载量换算4,476

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills