nido-vm-testing

nido-vm-testing is a skill for Codex from Josepavese/nido. It costs 69 tokens per session (1,428 once invoked), scanned A, original, MIT.

A workflow for creating and running tests inside disposable virtual machines (VMs), which are isolated computers created for temporary use.

In plain words
What is it for?
Use it to create, prepare, connect to, test, and delete Nido VMs, including setting their CPU, memory, ports, and reusable templates.
Why use it?
It helps test software that depends on a specific operating system, system services, network setup, or kernel isolation—things containers may not reproduce accurately. It also provides cleanup steps so temporary test machines do not remain behind.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to create, prepare, connect to, test, and delete Nido VMs, including setting their CPU, memory, ports, and reusable templates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/josepavese/nido/nido-vm-testing
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 Josepavese/nido --skill nido-vm-testing
Clone the repo
git clone --depth 1 https://github.com/Josepavese/nido

Made for: 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 nido-vm-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/josepavese/nido/nido-vm-testing.svg)](https://agentmods.dev/skills/josepavese/nido/nido-vm-testing)
Your own site
<a href="https://agentmods.dev/skills/josepavese/nido/nido-vm-testing"><img src="https://agentmods.dev/badge/skills/josepavese/nido/nido-vm-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,428 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.
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.00069 $0.01428
Opus 5 $0.00034 $0.00714
Sonnet 5 $0.00014 $0.00286
Haiku 4.5 $0.00007 $0.00143

Measured 8d ago against content hash 517303d884bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

nido-vm-testing 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 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/nido-ephemeral-test.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.

apt-get install -y ca-certificates curl git make
extras/skills/nido-vm-testing/SKILL.md · 142 lines

How it starts

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

Nido VM Testing

Use Nido as a disposable VM lab for tests and agent workloads. Prefer real VMs when the result depends on system packages, init behavior, kernel isolation, networking, filesystem layout, OS services, or production-like assumptions that containers do not faithfully model.

Quick Start

Run the host preflight first:

nido doctor
nido images list

Minimal lifecycle:

cat > provision.sh <<'EOF'
#!/bin/sh
set -eux
apt-get update
apt-get install -y ca-certificates curl git make
EOF

nido spawn app-test --image ubuntu:24.04 --user-data provision.sh --port app:8080/tcp --memory 4096 --cpus 2 --json
nido info app-test --json
nido ssh app-test "echo ready"
nido delete app-test --json

For a ready automation example, run or adapt scripts/nido-ephemeral-test.sh.

Standard Workflow

  1. Choose an image or template. Use cloud images for clean OS tests. Use templates when prerequisites are expensive and stable.
  2. Write provisioning as a --user-data script. Install OS packages, users, services, certificates, language runtimes, and test dependencies here.
  3. Spawn with explicit resources and port rules. Use --memory, --cpus, and --port label:guest/tcp; let Nido allocate host ports unless a fixed port is required.
  4. Wait for SSH using nido info --json. Parse ssh_port and ssh_user; do not assume fixed ports.
  5. Upload or fetch the software under test. Use direct ssh/scp with the port from nido info, or clone from an internal repository.
  6. Run tests inside the VM. Keep commands non-interactive and capture logs/artifacts before cleanup.
  7. Delete the VM. Use shell traps or CI cleanup steps. Avoid leaving stopped VMs unless debugging.

Best Practices

  • Use unique names such as nido-ci-$RUN_ID and delete by exact name.
  • Always parse nido info --json; ports are runtime allocations.
  • Prefer auto host ports: --port api:8000/tcp. Fixed host ports are for human workflows, not parallel CI.
  • Keep provisioning idempotent. A script should be safe if cloud-init retries it.
  • Put slow, stable prerequisites into a template. Put changing app code into the ephemeral VM at test time.
  • Pin OS images, package versions, and test commands for reproducibility.
  • Keep secrets out of templates. Inject short-lived secrets at runtime and scrub logs.
  • Use nido delete <name> for test cleanup. Avoid broad nido prune on shared developer machines.
  • For Windows blueprints, use --gui on the first boot when diagnosing OOBE/post-install state.

Read the full file on GitHub · 142 lines

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. 8d ago First seen · 142 lines · 69 tokens per session scan A 517303d884bb

Subscribe to this mod's changes

nido-vm-testing is a skill published in the GitHub repository Josepavese/nido (2 stars, last pushed today), licensed MIT. It adds 69 tokens to every session and 1,428 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

robotgo

Use when automating desktop GUI operations in Go — mouse/keyboard control, screen capture, image recognition via OpenCV, global hotkeys via gohook. RobotGo: cross-platform Go desktop automation (RPA) library for macOS, Windows, and Linux.

znlgis/opengis-skills · 56 tokens

config-evals

Builds and maintains configuration-based evaluations on a workflow with the eval-config tool. Use when the user asks to set up, add, view, change, or remove an evaluation, score, grade, or judge a workflow's output, or measure answer quality against a test dataset. This is the only eval form Instance AI handles — it…

n8n-io/n8n · 80 tokens

mix-compression

Reduce mix output noise (5-15% token savings) by installing rtk filters that compress mix test/credo/dialyzer/compile output before it reaches Claude. Use when long mix output floods context.

oliver-kriska/claude-elixir-phoenix · 48 tokens

lark-cli

Use when the user wants to operate Lark or Feishu via the local lark-cli (@larksuite/cli), including install, app credentials, OAuth, readiness checks, and safe read/write boundaries.

Peiiii/nextclaw · 46 tokens

superpowers

Use when the user wants a disciplined software development workflow with design-first planning, implementation plans, TDD, systematic debugging, code review, or verification-before-completion, adapted from obra/superpowers.

Peiiii/nextclaw · 43 tokens

opencli

Use when the user wants to use websites, browser login sessions, Electron apps, or external CLIs through a local OpenCLI setup, especially when setup guidance, readiness checks, and safe task execution are needed.

Peiiii/nextclaw · 45 tokens