Manage Netlify sites, deploys, and functions via API. Deploy and configure web projects.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add Demerzels-lab/elsamultiskillagent --skill netlify --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Netlify?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/demerzels-lab-netlify)More formats (shields.io, HTML) on the badges page.
---
name: netlify
description: Manage Netlify sites, deploys, and functions via API. Deploy and configure web projects.
metadata: {"clawdbot":{"emoji":"🔷","requires":{"env":["NETLIFY_AUTH_TOKEN"]}}}
---
# Netlify
Web deployment platform.
## Environment
```bash
export NETLIFY_AUTH_TOKEN="xxxxxxxxxx"
```
## CLI Commands
```bash
netlify sites:list
netlify deploy --prod
netlify env:list
netlify functions:list
```
## API - List Sites
```bash
curl "https://api.netlify.com/api/v1/sites" -H "Authorization: Bearer $NETLIFY_AUTH_TOKEN"
```
## API - Trigger Deploy
```bash
curl -X POST "https://api.netlify.com/api/v1/sites/{site_id}/builds" \
-H "Authorization: Bearer $NETLIFY_AUTH_TOKEN"
```
## API - List Deploys
```bash
curl "https://api.netlify.com/api/v1/sites/{site_id}/deploys" \
-H "Authorization: Bearer $NETLIFY_AUTH_TOKEN"
```
## Links
- Dashboard: https://app.netlify.com
- Docs: https://docs.netlify.com/api/get-started/
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.