workshop-build-an-agent: Skill for Claude Code

.agents/skills/setup-workshop-nemoclaw-operator/SKILL.md

setup-workshop-nemoclaw-operator is a skill for Claude Code from brevdev/workshop-build-an-agent. It costs 280 tokens per session (6,438 once invoked), scanned A, original, Apache-2.0.

An operator guide for preparing the host side of a Build an Agent workshop inside an OpenShell/NemoClaw sandbox. The workshop teaches people to build AI agents, while the host side connects the sandbox to the learner’s computer.

In plain words
What is it for?
It helps configure network access and secrets, start or unblock the sandbox agent, forward a port, and open the workshop’s JupyterLab interface.
Why use it?
It handles the outside setup needed when the workshop runs in that specific sandbox environment rather than directly on the machine.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: mentions Claude Code; installed under .agents/ (shared by several agents).

This is brevdev/workshop-build-an-agent's own configuration. It tells Claude Code how to work on workshop-build-an-agent itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything workshop-build-an-agent configures →

Reuse

Borrowing it

Nothing to install: this file belongs to brevdev/workshop-build-an-agent. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/brevdev/workshop-build-an-agent/main/.agents/skills/setup-workshop-nemoclaw-operator/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/brevdev/workshop-build-an-agent

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 setup-workshop-nemoclaw-operator

README.md
[![agentmods](https://agentmods.dev/badge/skills/brevdev/workshop-build-an-agent/setup-workshop-nemoclaw-operator.svg)](https://agentmods.dev/skills/brevdev/workshop-build-an-agent/setup-workshop-nemoclaw-operator)
Your own site
<a href="https://agentmods.dev/skills/brevdev/workshop-build-an-agent/setup-workshop-nemoclaw-operator"><img src="https://agentmods.dev/badge/skills/brevdev/workshop-build-an-agent/setup-workshop-nemoclaw-operator.svg" alt="Measured on agentmods" height="20"></a>
Per session 280 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,438 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00280 $0.06438
Opus 5 $0.00140 $0.03219
Sonnet 5 $0.00056 $0.01288
Haiku 4.5 $0.00028 $0.00644

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

Security

Grade A, and why

setup-workshop-nemoclaw-operator 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 6d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/build-workshop-policy.py, scripts/lib.sh, scripts/stage-nvidia-key.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.

openshell sandbox exec -n "$SANDBOX" --no-tty -- sh -lc 'curl -s -o /dev/null -w "%{http_code}\n" https://pypi.org/simple/' # expect 200
.agents/skills/setup-workshop-nemoclaw-operator/SKILL.md · 442 lines

How it starts

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

setup-workshop-nemoclaw-operator (host side)

Prepares an OpenShell/NemoClaw sandbox so the in-sandbox agent can stand up the Build-an-Agent workshop, then opens the access path from the user's laptop to the resulting JupyterLab. This is one half of a two-skill pair:

Skill Runs Does
this skill on the sandbox host (outside) egress policy, secrets staging, kick + unblock the sandbox agent, port-forward, lifecycle
setup-workshop-nemoclaw inside the sandbox venv + deps, netlink shim, launcher/bridge fixes, Jupyter launch, URL hand-off

Should this skill run at all?

The workshop's DEFAULT setup path is the setup-workshop skill — the standard installer for the ordinary pathways (bare metal on Brev, local install via AI Workbench, GPU hosts). A generic request like "set up the build-an-agent workshop" goes there, not here.

Invoke this skill ONLY when at least one of these is true:

  1. The user names it explicitly (setup-workshop-nemoclaw-operator, or asks for the "nemoclaw operator" setup skill), or
  2. The user explicitly says the workshop should run with "NemoClaw" or inside an "OpenShell" sandbox.

If neither holds, stop and use setup-workshop instead — do not infer the sandbox path from circumstantial evidence (e.g. a sandbox merely existing on the host).

Which side am I on?

On the host (use this skill): docker ps shows an openshell-<sandbox>-… container, the openshell CLI is on PATH, and you are NOT user sandbox. Inside the sandbox (use the other skill): whoamisandbox, /sandbox/ exists, no docker/sudo.

Conventions

SANDBOX=hermes-direct                                    # the sandbox name (adjust)
# Its container — exact, fail-closed selection by OpenShell runtime labels
# (substring grep can match a similarly named sandbox, e.g. hermes-direct-2):
C=$(docker ps --filter 'label=openshell.ai/managed-by=openshell' \
              --filter "label=openshell.ai/sandbox-name=$SANDBOX" --format '{{.Names}}')
[ "$(printf '%s\n' "$C" | grep -c .)" -eq 1 ] || echo "FATAL: not exactly one container for '$SANDBOX': ${C:-none}"
# NemoClaw community example: the deployment (scripts + policy.yaml + .env)
# and the workshop skills ship together in
cd <nemoclaw-community>/examples/recipes/nvidia/agentic-ai-learning-path

Read the full file on GitHub · 442 lines

Files

What ships with it

6 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. 6d ago First seen · 442 lines · 280 tokens per session scan A 04ef4abaccd9

Subscribe to this mod's changes

setup-workshop-nemoclaw-operator is a skill published in the GitHub repository brevdev/workshop-build-an-agent (133 stars, last pushed 18d ago), licensed Apache-2.0. It adds 280 tokens to every session and 6,438 once invoked, about $0.0014 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

hr-onboarding

A new-hire onboarding plan as a single page — first week schedule, buddy + manager intro, learning track, equipment checklist, and "you're set when…" outcomes. Use when the brief mentions "onboarding", "new hire", "first week plan", or "入职".

nexu-io/open-design · 62 tokens

book-mirror

Take any book (EPUB/PDF), produce a personalized chapter-by-chapter analysis. Each chapter is preserved in detail (The Chapter) and mirrored back to the reader's actual life (The Mirror) using brain context. The mirror observes and resonates — a friend pointing out parallels, NOT a consultant rearranging the reader's…

garrytan/gbrain · 138 tokens

miniapp

Build a tiny interactive HTML playground only when someone asks to see, play with, or step through a mechanism.

yc-software/qm · 25 tokens

eli5

Explain research, papers, or technical ideas in plain English with minimal jargon, concrete analogies, and clear takeaways. Use when the user says "ELI5 this", asks for a simple explanation of a paper or research result, wants jargon removed, or asks what something technically dense actually means.

companion-inc/feynman · 63 tokens

deck-course-module

暖纸背景 + Playfair, 左侧学习目标常驻, 含 MCQ 自测页.

nexu-io/html-anything · 25 tokens

master-yinguang

Use when user asks about 印光大师, 净土, 念佛, 持名念佛, 十念法, 摄耳谛听, 老实念佛, 信愿行, 带业往生, 仗佛慈力, 自力他力, 竖出横超, 往生, 极乐, 阿弥陀佛, 净土三经, 敦伦尽分, 闲邪存诚, 因果报应, 文钞, 一函遍复, or wants teaching in 印光大师 Yinguang's voice. Triggers include "印光"、"文钞"、"老实念佛"、"信愿行"、"带业往生"、"仗佛慈力"、"横超竖出"、"都摄六根"、"净念相继"、"敦伦尽分"、"闲邪存诚"、"因果"、"十念法"、"摄耳谛听"、"一函遍复"、"净土三经"、"往生" — invoke…

xr843/Master-skill · 274 tokens