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.
npx agentmods add skills/boringcomputers/nehemiah/testing-previewnpx skills add boringcomputers/nehemiah --skill testing-previewgit clone --depth 1 https://github.com/boringcomputers/nehemiahWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00032 | $0.00913 |
| Opus 5 | $0.00016 | $0.00456 |
| Sonnet 5 | $0.00006 | $0.00183 |
| Haiku 4.5 | $0.00003 | $0.00091 |
Grade B, and why
testing-preview scanned grade B with 2 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 2d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
sudo NEHEMIAH_NET=1 NEHEMIAH_JAILER=0 NEHEMIAH_TOKEN=test-token /tmp/nehemiahd & Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://localhost:8080/v1/machines -X POST \ How it starts
The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing the Preview Feature
What It Does
The preview proxy exposes a port running inside a guest Firecracker VM at a public URL. Two implementations exist:
- Path-based (
/v1/machines/{id}/web/{port}/{path...}) — works over SSH tunnel and without wildcard DNS - Subdomain-based (
<id>--<port>.<PreviewBase>) — requires Caddy on-demand TLS + wildcard DNS
Prerequisites
- nehemiahd must be running with
NEHEMIAH_NET=1(enables guest networking via tap/bridge/DHCP) - A test VM must be created with
net: true(ensures DHCP lease is assigned) - An HTTP server must be running inside the guest on a known port
How to Set Up a Test VM
# Build and run nehemiahd (with auth to test the auth bypass)
cd nehemiahd && go build -o /tmp/nehemiahd .
sudo NEHEMIAH_NET=1 NEHEMIAH_JAILER=0 NEHEMIAH_TOKEN=test-token /tmp/nehemiahd &
# Create a VM with networking
curl -s http://localhost:8080/v1/machines -X POST \
-H "Authorization: Bearer test-token" \
-d '{"template":"python","ttl_seconds":900,"net":true}'
# Start an HTTP server inside the guest (via WebSocket TTY)
python3 -c "
import websocket, time
ws = websocket.create_connection('ws://localhost:8080/v1/machines/MACHINE_ID/tty',
header=['Authorization: Bearer test-token'])
time.sleep(0.5)
ws.send(b'cd / && python3 -m http.server 8000 --bind 0.0.0.0 &\n')
time.sleep(2)
ws.close()
"
Key Test Cases
The server above is started from / (cd /), so http.server serves the guest's
root filesystem — that makes the sub-path test below resolve.
- Preview without auth:
curl http://localhost:8080/v1/machines/{id}/web/8000/should return content (the/directory listing; no auth header needed) - Other routes still require auth:
curl http://localhost:8080/v1/machines/{id}should return 401 - Sub-path routing:
curl http://localhost:8080/v1/machines/{id}/web/8000/etc/should show the guest's/etcdirectory listing (proves sub-paths are proxied through) - Via Vite proxy:
curl http://localhost:5173/boring/v1/machines/{id}/web/8000/should work
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.
- 2d ago First seen · 72 lines · 32 tokens per session scan B 5c6dcac1a722
testing-preview is a skill published in the GitHub repository boringcomputers/nehemiah (311 stars, last pushed 21d ago), licensed Apache-2.0. It adds 32 tokens to every session and 913 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
ocm-browser
Drive a browser from an OpenClaw machine. Companion to the browser-harness skill — explains the OCM-specific bridge proxy, the readiness check you must run first, and how pairing works. Start here before writing any browser code.
ocm-integrations
Use OCM workspace integrations exposed by the native mcp.servers.ocm MCP server. Trigger when a user asks to use connected workspace apps or external SaaS tools such as Google Workspace, GitHub, Jira, Linear, Slack, Notion, custom REST APIs, OpenAPI tools, or remote MCP servers through OCM.
ocm-debugging
Debug OpenClaw Machines profile, auth, Worker routing, host enrollment, agent API, Firecracker, rootfs, and VM runtime behavior by choosing the right boundary and proof before changing code.
ocm-review
Review OpenClaw Machines changes by tracing behavior beyond the diff, checking ownership boundaries, and requiring focused proof for bug fixes.
ocm-self-hosted
Plan, implement, or review local/operator/self-hosted OpenClaw Machines work without leaking secrets or smuggling hosted-only assumptions into public core.
ocm-testing
Choose and run the smallest safe OpenClaw Machines verification path for backend, frontend, Worker, host enrollment, Firecracker, rootfs, and self-hosted changes.