Skip to main content

netlify

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

インストールへ移動

ソース情報

リポジトリ
Kernel8901/ai-agent-skills-classification
ソースの最終更新活動
2026年4月4日 15:26
検出された SKILL.md の言語
英語
スター
4
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

ファイルエクスプローラー
2 ファイル

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
netlify
description
Manage Netlify sites, deploys, and functions via API. Deploy and configure web projects.
metadata
{"clawdbot":{"emoji":"🔷","requires":{"env":"[Truncated]"}}}
# 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/
GitHubで見る