agentsclimarketplace

Deploy netlify

Skill ominou5/funnel-architect-plugin/skills/deploy-netlify

Deploys funnel pages to Netlify. Covers CLI setup, deploy commands, environment variables, custom domains, and redirect configuration.From its SKILL.md

Install
npx -y skills add ominou5/funnel-architect-plugin --skill deploy-netlify

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 5 commands, including `npm install -g netlify-cli` and 4 more.

SKILL.md

1.9 KB, 474 tokens by cl100k_base, as published. Nobody here has run it

Deploy to Netlify

Prerequisites

  • Node.js installed
  • Netlify account (free tier works for funnels)

Setup

# Install Netlify CLI
npm install -g netlify-cli

# Login to Netlify
netlify login

# Initialize project (first time only)
netlify init

Deploy Commands

# Deploy a preview (draft URL)
netlify deploy --dir=.

# Deploy to production
netlify deploy --dir=. --prod

Netlify Configuration (netlify.toml)

[build]
  publish = "."

# Redirect www to non-www
[[redirects]]
  from = "https://www.example.com/*"
  to = "https://example.com/:splat"
  status = 301

# Custom 404 page
[[redirects]]
  from = "/*"
  to = "/404.html"
  status = 404

# Headers for performance
[[headers]]
  for = "/*.html"
  [headers.values]
    Cache-Control = "public, max-age=300"

[[headers]]
  for = "/*.css"
  [headers.values]
    Cache-Control = "public, max-age=31536000, immutable"

[[headers]]
  for = "/*.js"
  [headers.values]
    Cache-Control = "public, max-age=31536000, immutable"

[[headers]]
  for = "/*.webp"
  [headers.values]
    Cache-Control = "public, max-age=31536000, immutable"

Custom Domain

  1. Go to Site settings → Domain management → Add custom domain
  2. Add a CNAME record pointing to [site-name].netlify.app
  3. Enable HTTPS (automatic with Let's Encrypt)

Environment Variables

Set via Netlify dashboard: Site settings → Environment variables Or via CLI: netlify env:set KEY value

Form Handling

Netlify has built-in form handling — add netlify attribute:

<form name="lead-capture" method="POST" data-netlify="true">
  <input type="email" name="email" required>
  <button type="submit">Subscribe</button>
</form>

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.