thinkfleetai/thinkfleet-engine

netlify

Manage Netlify sites, deploys, and functions via API. Deploy and configure web projects.

First seen Mar 1, 2026

Installation

$ npx skills add thinkfleetai/thinkfleet-engine --skill netlify

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from thinkfleetai/thinkfleet-engine

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 940 B
  • docs SUMMARY.md 103 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Netlify

Web deployment platform.

Environment

export NETLIFY_AUTH_TOKEN="xxxxxxxxxx"

CLI Commands

netlify sites:list
netlify deploy --prod
netlify env:list
netlify functions:list

API - List Sites

curl "https://api.netlify.com/api/v1/sites" -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN"

API - Trigger Deploy

curl -X POST "https://api.netlify.com/api/v1/sites/{site_id}/builds" \
  -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN"

API - List Deploys

curl "https://api.netlify.com/api/v1/sites/{site_id}/deploys" \
  -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN"

Links