Onboarding Tour

Onboarding Tour is a skill for Claude Code, Codex from binary16labs/prime-silo. It costs 25 tokens per session (969 once invoked), scanned A, original, MIT.

A guided introduction to a product’s interface, work areas, command-line tool, and environment settings. It is designed for someone using the product for the first time.

In plain words
What is it for?
Use it to learn what the product can do and how to manage its work areas, command-line tool, workspace settings, and environment variables.
Why use it?
It replaces a vague explanation with practical steps and a next action at each stage. It also separates browser demonstrations from shell commands that the user must run themselves.

Skill for Claude CodeCodex

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

Good fit Use it to learn what the product can do and how to manage its work areas, command-line tool, workspace settings, and environment variables.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/binary16labs/prime-silo/onboarding-tour
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 binary16labs/prime-silo --skill onboarding-tour
Clone the repo
git clone --depth 1 https://github.com/binary16labs/prime-silo

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 Onboarding Tour

README.md
[![agentmods](https://agentmods.dev/badge/skills/binary16labs/prime-silo/onboarding-tour/github.svg)](https://agentmods.dev/skills/binary16labs/prime-silo/onboarding-tour)
Your own site
<a href="https://agentmods.dev/skills/binary16labs/prime-silo/onboarding-tour"><img src="https://agentmods.dev/badge/skills/binary16labs/prime-silo/onboarding-tour/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 Onboarding Tour

Your own site · 80×15
<a href="https://agentmods.dev/skills/binary16labs/prime-silo/onboarding-tour"><img src="https://agentmods.dev/badge/skills/binary16labs/prime-silo/onboarding-tour.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 969 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.
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.00025 $0.00969
Opus 5 $0.00013 $0.00485
Sonnet 5 $0.00005 $0.00194
Haiku 4.5 $0.00003 $0.00097

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

Security

Grade A, and why

Onboarding Tour 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 9d 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.

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.

app/L0/_all/mod/_core/spaces/ext/skills/onboarding-tour/SKILL.md · 58 lines

What it actually says

Use this skill to give a brand-new user a guided tour. Auto-loads in the Big Bang onboarding space; can also be loaded on demand when a user asks "what can I do / how do I manage X". Be a proactive guide: keep momentum, show don't tell, and end every step with a concrete next action.

what you can demonstrate vs. explain

  • UI work runs as browser JavaScript through your normal _____javascript execution. Demonstrate it live.
  • The CLI (node space ...), workspace config, and environment variables are terminal actions the user runs in their shell. You cannot run them from the browser — explain them and give copy-paste commands, do not try to _____javascript a shell command.
  • Never invent widget ids or read space.yaml by hand. Use the helpers below; widget detail lives in the auto-loaded space-widgets skill, space CRUD in the spaces skill.
  • Keep widget renderers tiny — ideally one line. The renderer may be a short inline function async (parent) => { ... } (a string also works). A long multi-line renderer can be cut off mid-output on a small or local model, leaving the execution block as invalid JavaScript that fails to run — so prefer the smallest renderer that shows progress, use parent.textContent over multi-line HTML, and avoid nested backticks. If a render errors, retry once with an even smaller one (async (parent) => { parent.textContent = "Welcome" }), then move on. A failed widget must never stop the tour.

awareness you already have each turn (read it, don't re-ask)

  • current date and time transient → today's date/time; use it instead of asking.
  • Available Spaces transient → id|title of every space; match titles to ids from here.
  • Current Space Widgets transient (when a space is open) → live widget layout.

the tour (offer it, then walk one step at a time)

  1. Orient. Greet by name if known (space.api.userSelfInfo()), state today's date from the transient, and say where you are (the current space). Offer the tour.
  2. Show the UI. Render a tiny one-line welcome widget with space.current.renderWidget({...}) so the user sees instant visible progress (see example; keep the renderer one line). Mention the Bridge cockpit (#/_prime_silo/bridge) — one pane over memory, documents, code, flows, runs — and the Memory view (#/_prime_silo/memory).
  3. Workspaces. Explain spaces are workspaces; list them with space.spaces.listSpaces(), and offer to create one with space.spaces.createSpace({ title }). Deeper space CRUD is the spaces skill.
  4. CLI literacy. Explain the CLI is node space <command> and have them try, in their terminal: node space help, node space version, node space memory status, node space registry status.
  5. Environment variables. Explain server config lives in environment variables (defined in commands/params.yaml) and is managed with the CLI:
    • read all: node space get
    • read one: node space get PORT
    • change one: node space set PORT=3030 (KEY=VALUE form; set accepts several KEY=VALUE pairs) Useful keys: PORT, HOST, WORKERS, SINGLE_USER_APP, CUSTOMWARE_PATH, LOGIN_ALLOWED, GIT_URL. set validates against allowed values; HOST/PORT/WORKERS take effect on the next node space serve.

examples

Greeting and orienting now _javascript return await space.api.userSelfInfo()

Rendering a tiny welcome widget now (one line, so a small model cannot truncate it) _javascript return await space.current.renderWidget({ name: "Welcome", cols: 3, rows: 1, renderer: async (parent) => { parent.textContent = "Welcome aboard — ask me for the tour: UI, spaces, CLI, settings." } })

Listing the available workspaces now _javascript return await space.spaces.listSpaces()

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. 9d ago First seen · 58 lines · 25 tokens per session scan A 11e025e645f6

Subscribe to this mod's changes

Onboarding Tour is a skill published in the GitHub repository binary16labs/prime-silo (5 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 969 once invoked, about $0.0001 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-31.