Babysitter netlify

Netlify deployment, functions, forms, and edge handlers.

install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/web-development/skills/netlify" ~/.claude/skills/a5c-ai-babysitter-netlify && rm -rf "$T"
manifest: library/specializations/web-development/skills/netlify/SKILL.md
source content

Netlify Skill

Expert assistance for deploying to Netlify.

Capabilities

  • Configure Netlify deployments
  • Create Netlify Functions
  • Handle form submissions
  • Set up edge handlers
  • Configure redirects

Configuration

# netlify.toml
[build]
  command = "npm run build"
  publish = "dist"
  functions = "netlify/functions"

[[redirects]]
  from = "/api/*"
  to = "/.netlify/functions/:splat"
  status = 200

[[headers]]
  for = "/*"
  [headers.values]
    X-Frame-Options = "DENY"

Target Processes

  • netlify-deployment
  • serverless-functions
  • jamstack-deployment