con un clic
vimeo
Work with the Vimeo API to manage videos.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Work with the Vimeo API to manage videos.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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
Basado en la clasificación ocupacional SOC
| name | vimeo |
| description | Work with the Vimeo API to manage videos. |
Work with the Vimeo API to manage videos and users.
The Vimeo API is documented at https://developer.vimeo.com/api Requests to the API should be made using EYG scripts. You have no access to a Vimeo API token. Instead, the Vimeo 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.
DONT try to decode JSON. Return the JSON content for the llm to handle.
let get_user_videos = (_) -> {
let operation = {
method: GET({}),
path: "/me/videos",
query: None({}),
headers: [],
body: !string_to_binary("")
}
perform Vimeo(operation)
}
let get_video_details = (video_id) -> {
let operation = {
method: GET({}),
path: !string.concat("/videos/", video_id),
query: None({}),
headers: [],
body: !string_to_binary("")
}
match perform Vimeo(operation) {
Ok({body: body}) -> {
match !string_from_binary(body) {
Ok(body) -> { body }
Error(_) -> { "bad body" }
}
}
Error(_) -> { "bad request" }
}
}
{get_user_videos: get_user_videos, get_video_details: get_video_details}
The Vimeo effect supports the following operations:
Retrieve data from the Vimeo API.
Parameters:
path: The API endpoint path (e.g., "/me/videos")query: Optional query parameters (as a record or None)headers: Optional headers (as a list of tuples)body: Empty string converted to binaryCreate or update resources in the Vimeo API.
Parameters:
path: The API endpoint pathquery: Optional query parametersheaders: Optional headersbody: Request body as binaryPartially update resources in the Vimeo API.
Parameters:
path: The API endpoint pathquery: Optional query parametersheaders: Optional headersbody: Request body as binaryRemove resources from the Vimeo API.
Parameters:
path: The API endpoint pathquery: Optional query parametersheaders: Optional headersbody: Empty string converted to binaryAuthentication is handled automatically by the Vimeo effect. You don't need to include authorization headers in your operations.