← All skills
Tencent SkillHub Β· Developer Tools

Netlify

Use the Netlify CLI (netlify) to create/link Netlify sites and set up CI/CD (continuous deployment) from GitHub, especially for monorepos (multiple sites in one repo like Hugo sites under sites/<domain>). Use when Avery asks to deploy a new site, connect a repo to Netlify, configure build/publish settings, set environment variables, enable deploy previews, or automate Netlify site creation.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Use the Netlify CLI (netlify) to create/link Netlify sites and set up CI/CD (continuous deployment) from GitHub, especially for monorepos (multiple sites in one repo like Hugo sites under sites/<domain>). Use when Avery asks to deploy a new site, connect a repo to Netlify, configure build/publish settings, set environment variables, enable deploy previews, or automate Netlify site creation.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/hugo_netlify_toml.sh, scripts/netlify_monorepo_site.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/hugo_netlify_toml.sh Scripts
  • scripts/netlify_monorepo_site.sh Scripts