with one click
netlify
Work with the Netlify API to manage sites and deployments.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Work with the Netlify API to manage sites and deployments.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | netlify |
| description | Work with the Netlify API to manage sites and deployments. |
The Netlify API is documented at https://docs.netlify.com/llms.txt Requests to the API should be made using EYG scripts. You have no access to a Netlify API token. Instead, the Netlify effect with operations should be used.
ALWAYS load the write-eyg skill before creating a function.
ALWAYS read the API documentation for the endpoints you will use.
NEVER return dummy or example data. Tell the user you can't write the script if you keep getting errors.
NEVER guess an endpoint.
For example:
let list_sites = (_) -> {
let operation = {
method: GET({}),
path: "/api/v1/sites",
query: None({}),
headers: [],
body: !string_to_binary("")
}
perform Netlify(operation)
}
let list_deployments = (_) -> {
let operation = {
method: GET({}),
path: "/api/v1/deploys",
query: None({}),
headers: [],
body: !string_to_binary("")
}
match perform Netlify(operation) {
Ok({body: body}) -> {
match !string_from_binary(body) {
Ok(body) -> { body }
Error(_) -> { "bad body" }
}
}
Error(_) -> { "bad request" }
}
}
{list_sites: list_sites, list_deployments: list_deployments}
Decode and parse JSON strings with EYG.
Work with the DNSimple API to manage domains and integrations.
Create and dispatch HTTP requests.
Work with the GitHub API to manage repositories, issues, and other resources.
When a user makes a location specific query (what is the weather tomorrow) or asks for anything relative to their location.
Manage a running ollama instance; start stop and list active models