setup-control-room

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

A setup guide for turning an SSH-accessible Ubuntu or Debian VPS into an Agent Control Room server for coding agents.

In plain words
What is it for?
Use it to bootstrap a VPS, install core agent tooling, clone the Agent Control Room template, and link its bundled skills.
Why use it?
It removes the need to install the required tools, template, and linked skills by hand. It also checks that SSH works and that the server uses a supported Linux distribution.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for hermes-agent. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

Good fit Use it to bootstrap a VPS, install core agent tooling, clone the Agent Control Room template, and link its bundled skills.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shannhk/hermes-agent-control-room/setup-control-room
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 setup-control-room
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 setup-control-room

README.md
[![agentmods](https://agentmods.dev/badge/skills/shannhk/hermes-agent-control-room/setup-control-room/github.svg)](https://agentmods.dev/skills/shannhk/hermes-agent-control-room/setup-control-room)
Your own site
<a href="https://agentmods.dev/skills/shannhk/hermes-agent-control-room/setup-control-room"><img src="https://agentmods.dev/badge/skills/shannhk/hermes-agent-control-room/setup-control-room/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 setup-control-room

Your own site · 80×15
<a href="https://agentmods.dev/skills/shannhk/hermes-agent-control-room/setup-control-room"><img src="https://agentmods.dev/badge/skills/shannhk/hermes-agent-control-room/setup-control-room.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 544 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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 medium

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 →

  • medium Agent Snooping · line 64
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00035 $0.00544
Opus 5 $0.00017 $0.00272
Sonnet 5 $0.00007 $0.00109
Haiku 4.5 $0.00003 $0.00054

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

Security

Grade A, and why

setup-control-room scanned grade A with 1 finding 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 13d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (assets/bootstrap.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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- base packages: `curl`, `ca-certificates`, `git`, `tmux`, `htop`
skills/setup-control-room/SKILL.md · 90 lines

What it actually says

Setup Control Room

Use this skill to turn an SSH-accessible VPS into a tooled Agent Control Room box.

It installs core tools, clones the Agent Control Room template, and links bundled skills.

Triggers

  • "set up control room"
  • "bootstrap the vps"
  • "install hermes"
  • "install agents on the vps"
  • "set up the agent box"
  • "configure vps for agents"
  • /setup-control-room

Inputs

  • SSH_ALIAS: required unless discoverable from local SSH config.
  • CONTROL_ROOM_PATH: default /root/agent-control-room.
  • CONTROL_ROOM_REPO: default https://github.com/shannhk/hermes-agent-control-room.git.

Prerequisites

Before running:

  1. Confirm ssh <alias> works.
  2. Confirm target is Ubuntu or Debian.

If SSH does not work, stop and tell the user to create/fix the VPS first.

Flow

  1. Smoke test SSH:
ssh -o ConnectTimeout=10 <alias> 'echo connected as $(whoami) on $(hostname); lsb_release -a'
  1. Copy assets/bootstrap.sh to the VPS.

  2. Run the bootstrap script:

ssh <alias> '/tmp/bootstrap-control-room.sh' 2>&1 | tee /tmp/control-room-bootstrap.log
  1. Report installed versions and next steps.

What The Bootstrap Installs

  • base packages: curl, ca-certificates, git, tmux, htop
  • Node.js 22
  • Claude Code
  • Codex CLI
  • Docker
  • Hermes Agent best-effort install
  • Agent Control Room repo at /root/agent-control-room
  • symlinks from bundled skills into ~/.claude/skills

What This Skill Does Not Do

  • It does not handle Claude Code OAuth.
  • It does not handle Codex auth.
  • It does not complete the Hermes interactive wizard.
  • It does not write secrets.
  • It does not create specialist containers.

Those are intentionally left for the user or a later agent setup flow.

Final User Instructions

After bootstrap, tell the user:

ssh <alias>
claude /login
codex
hermes
cd /root/agent-control-room
cat README.md

Also remind them that interactive auth should happen in a real SSH terminal.

Files

What ships with it

3 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. 13d ago First seen · 90 lines · 35 tokens per session scan A 6bb3fc6bc075

Subscribe to this mod's changes

setup-control-room is a skill published in the GitHub repository shannhk/hermes-agent-control-room (709 stars, last pushed 3mo ago), licensed MIT. It adds 35 tokens to every session and 544 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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