scaleway

scaleway is a skill for Claude Code from Arvo-AI/aurora. It costs 29 tokens per session (1,407 once invoked), scanned A, original, Apache-2.0.

A connection to Scaleway, a cloud provider, for managing virtual machines, Kubernetes clusters, object storage, and managed databases through command-line tools and Terraform.

In plain words
What is it for?
Listing projects, zones, server types, and images; creating or controlling instances; and managing Kapsule clusters, storage, and databases.
Why use it?
It gives the coding agent a defined way to inspect and manage Scaleway resources without switching between separate tools.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Listing projects, zones, server types, and images; creating or controlling instances; and managing Kapsule clusters, storage, and databases.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/arvo-ai/aurora/scaleway
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Arvo-AI/aurora --skill scaleway
Clone the repo
git clone --depth 1 https://github.com/Arvo-AI/aurora

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for scaleway

README.md
[![agentmods](https://agentmods.dev/badge/skills/arvo-ai/aurora/scaleway.svg)](https://agentmods.dev/skills/arvo-ai/aurora/scaleway)
Your own site
<a href="https://agentmods.dev/skills/arvo-ai/aurora/scaleway"><img src="https://agentmods.dev/badge/skills/arvo-ai/aurora/scaleway.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,407 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 48
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.01407
Opus 5 $0.00015 $0.00704
Sonnet 5 $0.00006 $0.00281
Haiku 4.5 $0.00003 $0.00141

Measured 7d ago against content hash 29d45137c4e2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

scaleway scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

server/chat/backend/agent/skills/integrations/scaleway/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Scaleway Integration

Overview

Scaleway cloud provider for managing compute instances, Kapsule Kubernetes clusters, object storage, and managed databases.

Instructions

CLI COMMANDS (use cloud_exec with 'scaleway')

CRITICAL: Always use cloud_exec('scaleway', 'command') for Scaleway commands, NOT terminal_exec! The cloud_exec tool has your Scaleway credentials configured.

Discovery Commands:

  • List projects: cloud_exec('scaleway', 'account project list')
  • List zones: cloud_exec('scaleway', 'instance zone list')
  • List instance types: cloud_exec('scaleway', 'instance server-type list')
  • List images: cloud_exec('scaleway', 'instance image list')

Instance Management:

  • List instances: cloud_exec('scaleway', 'instance server list')
  • Create instance: cloud_exec('scaleway', 'instance server create type=DEV1-S image=ubuntu_jammy name=my-vm')
  • With zone: cloud_exec('scaleway', 'instance server create type=DEV1-S image=ubuntu_jammy name=my-vm zone=fr-par-1')
  • Start/Stop/Reboot: cloud_exec('scaleway', 'instance server start|stop|reboot <SERVER_ID>')
  • Delete: cloud_exec('scaleway', 'instance server delete <SERVER_ID>')
  • SSH into server: cloud_exec('scaleway', 'instance server ssh <SERVER_ID>')

Kubernetes (Kapsule):

  • List clusters: cloud_exec('scaleway', 'k8s cluster list')
  • Create cluster: cloud_exec('scaleway', 'k8s cluster create name=my-cluster version=1.28 cni=cilium')
  • Get kubeconfig: cloud_exec('scaleway', 'k8s kubeconfig get <CLUSTER_ID>')
  • List pools: cloud_exec('scaleway', 'k8s pool list cluster-id=<CLUSTER_ID>')
  • Create pool: cloud_exec('scaleway', 'k8s pool create cluster-id=<CLUSTER_ID> name=worker-pool node-type=DEV1-M size=3')

Object Storage:

  • List buckets: cloud_exec('scaleway', 'object bucket list')
  • Create bucket: cloud_exec('scaleway', 'object bucket create name=my-bucket')

Databases:

  • List instances: cloud_exec('scaleway', 'rdb instance list')
  • Create instance: cloud_exec('scaleway', 'rdb instance create name=my-db engine=PostgreSQL-15 node-type=DB-DEV-S')

Read the full file on GitHub · 133 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 133 lines · 29 tokens per session scan A 29d45137c4e2

Subscribe to this mod's changes

scaleway is a skill published in the GitHub repository Arvo-AI/aurora (405 stars, last pushed today), licensed Apache-2.0. It adds 29 tokens to every session and 1,407 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

isaac-automator

Deploy and operate a cloud Isaac Workstation with Isaac Automator: provision a GPU VM running Isaac Sim, Isaac Lab, and/or Isaac Lab Arena on AWS, GCP, Azure, or Alibaba Cloud, connect to it, move data in and out, control cost with stop/start, repair, import existing deployments, and destroy. Use when the user wants a…

isaac-sim/IsaacAutomator · 123 tokens

cloud-iam-deep

GCP/AWS/Azure cloud exploitation -- Cloud Functions, Firestore, Cloud Run, S3, MinIO, Blob Storage, SA keys.

uphiago/recon-skills · 35 tokens

Cloud Security & Container Hardening

AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment.

Masriyan/Claude-Code-CyberSecurity-Skill · 30 tokens

conducting-cloud-infrastructure-penetration-test

Perform a cloud infrastructure penetration test across AWS, Azure, and GCP to identify IAM misconfigurations, exposed storage buckets, insecure serverless functions, and cloud-native attack paths using Pacu, ScoutSuite, and Prowler.

autohandai/community-skills · 57 tokens

performing-cloud-forensics-investigation

Conduct forensic investigations in cloud environments by collecting and analyzing logs, snapshots, and metadata from AWS, Azure, and GCP services.

adriannoes/awesome-agentic-ai · 34 tokens

terraform-iac

Terraform and OpenTofu infrastructure as code best practices - generate HCL configurations, module patterns, state management, CI/CD workflows, and cloud provider templates for AWS, GCP, Azure.

chainlesschain/chainlesschain · 41 tokens