mit einem Klick
linode-api
Linode API Documentation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Linode API Documentation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| name | linode-api |
| description | Linode API Documentation |
Comprehensive assistance with the Linode API - a RESTful API for programmatically managing Linode cloud infrastructure including compute instances, networking, storage, domains, and billing.
This skill should be triggered when:
from linode import LinodeClient
# Initialize client with your personal access token
token = "your-personal-access-token"
client = LinodeClient(token)
Getting a token: Log into cloud.linode.com → Profile → "Create a Personal Access Token"
# Retrieve all Linodes on your account
my_linodes = client.linode.get_instances()
# Iterate and display instance labels
for linode in my_linodes:
print(linode.label)
# Get available regions
available_regions = client.get_regions()
chosen_region = available_regions[0]
# Create instance with region, type, and image
new_linode, password = client.linode.create_instance(
chosen_region,
'g5-standard-4',
image='linode/debian9'
)
# Display SSH connection info
print(f"ssh root@{new_linode.ipv4[0]} - {password}")
curl -X POST https://api.linode.com/v4/linode/instances \
-H "Authorization: Bearer <your-token>" \
-H "Content-Type: application/json" \
-d '{
"type": "g5-standard-2",
"region": "us-east",
"image": "linode/debian12",
"root_pass": "secure_password_here",
"label": "prod-web-1"
}'
curl https://api.linode.com/v4/account \
-H "Authorization: Bearer <your-token>"
curl https://api.linode.com/v4/account/invoices \
-H "Authorization: Bearer <your-token>"
curl https://api.linode.com/v4/account/availability \
-H "Authorization: Bearer <your-token>"
# Install the official Python library
pip install linode-api
# Or from source
git clone git@github.com:Linode/python-linode-api
cd python-linode-api
python setup.py install
from linode import LinodeClient
# Initialize the client
token = "your-personal-access-token"
client = LinodeClient(token)
# Now you can access resources
regions = client.get_regions()
instances = client.linode.get_instances()
All API requests to non-public resources must include an Authorization header:
Authorization: Bearer <your-personal-access-token>
https://api.linode.com/v4)The Linode API uses Personal Access Tokens (PATs) for authentication. Tokens can have different permission scopes (read/write) for different resource types. Always keep tokens secure and never commit them to version control.
API responses use envelope-based pagination with metadata:
page: Current page numberpages: Total number of pagesresults: Number of results per pageThe API supports advanced filtering via the X-Filter header with operators:
+gt: Greater than+lte: Less than or equal+or: Logical ORCommon Linode instance types:
g5-standard-1, g5-standard-2, etc. (cost-effective for general workloads)g6-dedicated-2, etc. (guaranteed CPU resources)g6-highmem-1, etc. (memory-intensive applications)Linode has global data centers. Common regions:
us-east: Newark, NJus-west: Fremont, CAeu-west: London, UKap-south: SingaporeGET /regions endpointSupported operating system images:
linode/debian12: Debian 12linode/ubuntu22.04: Ubuntu 22.04 LTSlinode/centos-stream9: CentOS Stream 9This skill includes comprehensive documentation in references/:
Use view references/api.md when you need:
GET /account to verify your token worksBasic Instance Management:
Account Management:
linode-api (official)The references/api.md file contains:
token = os.getenv('LINODE_API_TOKEN')GET /linode/instancesPOST /linode/instancesGET /linode/instances/{linodeId}PUT /linode/instances/{linodeId}DELETE /linode/instances/{linodeId}POST /linode/instances/{linodeId}/rebootGET /accountGET /account/invoicesGET /account/paymentsGET /account/settingsGET /nodebalancersGET /networking/firewallsGET /networking/vlansGET /volumesPOST /volumesPOST /volumes/{volumeId}/attachThis skill is based on the OpenAPI specification from the Linode API GitHub repository. To refresh with the latest API changes:
Designs and executes multi-agent teams to accomplish complex tasks through iterative collaboration, quality gates, and refinement loops. Use when a user wants to accomplish any non-trivial task that would benefit from specialised agents working in sequence or parallel - e.g. writing an article, building a software feature, conducting research, producing a marketing campaign, designing a system, creating educational content, or any task that naturally decomposes into research → planning → execution → review → refinement stages. Triggers on phrases like "build me a team to...", "use agents to...", "orchestrate agents for...", or when a task is complex enough that a single agent would benefit from decomposition into specialists.
Death & Sourdough series continuity checker. MANDATORY before writing or editing ANY prose chapter for the Death & Sourdough project. Ensures cross-referencing of established facts (character details, locations, timeline, objects, quoted text, relationship dynamics) against the Continuity Bible, and updates the bible after writing. Trigger whenever: (1) writing a new chapter, (2) revising or fleshing out an existing chapter, (3) adding new characters, locations, or named details to the prose.
Create Amazon-compliant A+ Content for KDP books with text, module layouts, and image specs. Use for A+ Content creation, book detail page design, module selection, compliance checking, rejection avoidance, or KDP marketing materials.
This skill provides comprehensive guidance for using the Replicate CLI to run AI models, create predictions, manage deployments, and fine-tune models. Use this skill when the user wants to interact with Replicate's AI model platform via command line, including running image generation models, language models, or any ML model hosted on Replicate. This skill should be used when users ask about running models on Replicate, creating predictions, managing deployments, fine-tuning models, or working with the Replicate API through the CLI.
Cron-Job.org Documentation
N8N Documentation - Workflow automation platform with AI capabilities