create-vps

create-vps is a skill for Claude Code, Codex from shannhk/hermes-agent-control-room. It costs 38 tokens per session (760 once invoked), scanned A, original, MIT.

A procedure for creating a new Hetzner Cloud VPS, which is a rented virtual server, and connecting to it from a local computer.

In plain words
What is it for?
Use it to provision a fresh Ubuntu server, create its SSH configuration and project folder, and optionally pass it to a later setup process.
Why use it?
It organizes server creation, SSH access, and local project setup so a new server can be reached and managed consistently.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to provision a fresh Ubuntu server, create its SSH configuration and project folder, and optionally pass it to a later setup process.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shannhk/hermes-agent-control-room/create-vps
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 shannhk/hermes-agent-control-room --skill create-vps
Clone the repo
git clone --depth 1 https://github.com/shannhk/hermes-agent-control-room

Made for: Claude Code, Codex.

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 create-vps

README.md
[![agentmods](https://agentmods.dev/badge/skills/shannhk/hermes-agent-control-room/create-vps/github.svg)](https://agentmods.dev/skills/shannhk/hermes-agent-control-room/create-vps)
Your own site
<a href="https://agentmods.dev/skills/shannhk/hermes-agent-control-room/create-vps"><img src="https://agentmods.dev/badge/skills/shannhk/hermes-agent-control-room/create-vps/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for create-vps

Your own site · 80×15
<a href="https://agentmods.dev/skills/shannhk/hermes-agent-control-room/create-vps"><img src="https://agentmods.dev/badge/skills/shannhk/hermes-agent-control-room/create-vps.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 760 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 pass 7 Sept 2026
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.00038 $0.00760
Opus 5 $0.00019 $0.00380
Sonnet 5 $0.00008 $0.00152
Haiku 4.5 $0.00004 $0.00076

Measured 12d ago against content hash f25012da2c5b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

create-vps 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (assets/destroy.sh, assets/provision.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/create-vps/SKILL.md · 134 lines

How it starts

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

Create VPS

Use this skill to provision a fresh Hetzner Cloud VPS from a local machine.

This skill creates a server, SSH key, local SSH alias, and project folder. It can optionally chain into setup-control-room after the server is reachable.

Triggers

Standalone:

  • "create a vps"
  • "new vps"
  • "provision a server"
  • "create a hetzner vps"
  • "set up a new hetzner box"
  • /create-vps

Chained into setup-control-room:

  • "create an agent vps"
  • "create a fully loaded vps"
  • "create a vps and bootstrap it"
  • "new agent box"
  • /create-agent-vps

Inputs

Required:

  • PROJECT_NAME: collected from the user.

Derived from PROJECT_NAME:

SERVER_NAME
SSH_ALIAS
SSH_KEY_FILE
SSH_KEY_NAME

Defaults:

SERVER_TYPE=cx23
SERVER_LOCATION=hel1
SERVER_IMAGE=ubuntu-24.04

Server type and location should be selected from live hcloud output after the user adds the token to .env.

Prerequisites

Check first:

  1. hcloud CLI is installed.
  2. User has a Hetzner Cloud account.

If hcloud is missing, stop and give install instructions.

Security Rule

Never accept the Hetzner token in chat.

If the user pastes it, tell them to revoke it and create a new one.

The token must be pasted directly into the local .env file by the user.

Flow

  1. Ask for project name.
  2. Create local project folder.
  3. Write .env, .gitignore, scripts/provision.sh, and scripts/destroy.sh.
  4. Tell the user how to create a Hetzner API token.
  5. Tell the user to paste it after HCLOUD_TOKEN= in .env.
  6. After confirmation, source .env and query:
hcloud server-type list
hcloud location list
  1. Ask for server type and location using live options.
  2. Write selected values into .env.
  3. Run scripts/provision.sh.
  4. Verify:
ssh <alias> 'echo connected as $(whoami) on $(hostname); uname -a'
  1. If the original trigger asked for an agent VPS, invoke setup-control-room with SSH_ALIAS.
  2. Otherwise ask whether the user wants to bootstrap the Agent Control Room.

Read the full file on GitHub · 134 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 134 lines · 38 tokens per session scan A f25012da2c5b

Subscribe to this mod's changes

create-vps is a skill published in the GitHub repository shannhk/hermes-agent-control-room (709 stars, last pushed 3mo ago), licensed MIT. It adds 38 tokens to every session and 760 once invoked, about $0.0002 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

oma-tf-infra

Infrastructure-as-code specialist for multi-cloud provisioning using Terraform across any provider (AWS, GCP, Azure, Oracle Cloud). Use for terraform plan/apply, state management, compute, databases, storage, networking, IAM, OIDC, cost optimization, policy-as-code, ISO/IEC 42001 AI controls, ISO 22301 continuity, and…

first-fluke/oh-my-agent · 87 tokens

architecture-diagram

Dark-themed SVG architecture/cloud/infra diagrams as HTML.

mateaix/mateclaw · 15 tokens

hunt-cicd

Hunt CI/CD pipeline vulnerabilities — GitHub Actions workflow injection (pullrequesttarget Pwnrequest + ${{ }}-into-shell), self-hosted runner poisoning, OIDC trust-policy abuse, Jenkins script-console RCE and CVE-2024-23897 file read, GitLab CI runner-token registration, Terraform state file leakage, artifact/log…

uphiago/recon-skills · 118 tokens

hunt-cloud-misconfig

Hunt cloud / infrastructure misconfigurations. AWS: public S3 buckets (s3:GetObject anonymous), permissive bucket policies (PutObjectAcl public-write), exposed CloudFront origin, public Lambda function URL, public RDS snapshot, IAM credentials in JS bundles, AWS metadata accessible via SSRF. GCP: public GCS buckets…

uphiago/recon-skills · 197 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

deploy-gen

Generate deployment configurations (Docker, Kubernetes) for the current project.

jmagly/aiwg · 15 tokens