onboard

onboard is a skill for Claude Code, Codex from open-octo/octo-agent. It costs 154 tokens per session (5,609 once invoked), scanned A, original, MIT.

A guided onboarding and memory-curation tool for an AI assistant. It can set the assistant's name and personality, learn about the user, or update the assistant's profile and individual memory files.

In plain words
What is it for?
Use it for first-run setup, changing the assistant's personality, updating the user profile, or deciding whether to keep, update, or delete one specified memory file.
Why use it?
It gives first-time setup a defined conversation and lets you make focused updates later without changing unrelated information. The saved details go into the assistant and user profile files.

Skill for Claude CodeCodex

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

Good fit Use it for first-run setup, changing the assistant's personality, updating the user profile, or deciding whether to keep, update, or delete one specified memory file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/open-octo/octo-agent/onboard
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 open-octo/octo-agent --skill onboard
Clone the repo
git clone --depth 1 https://github.com/open-octo/octo-agent

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 onboard

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/open-octo/octo-agent/onboard"><img src="https://agentmods.dev/badge/skills/open-octo/octo-agent/onboard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 154 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,609 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, 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 Rogue Agent · line 58
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Excessive Agency · line 168
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
  • medium Rogue Agent · line 251
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00154 $0.05609
Opus 5 $0.00077 $0.02805
Sonnet 5 $0.00031 $0.01122
Haiku 4.5 $0.00015 $0.00561

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

Security

Grade A, and why

onboard 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 11d 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.

internal/skills/defaults/onboard/SKILL.md · 546 lines

How it starts

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

Skill: onboard

Purpose

"Onboard" here means the whole life of getting the assistant and user to know each other. That includes both the first-run ceremony AND every small course-correction later on. This single skill covers three modes, dispatched by the invocation arguments:

Args Mode What it does
(none) first-run Full intro: name the AI, pick personality, learn user, write soul.md + user.md.
scope:soul curate SOUL Short chat to tweak ~/.octo/soul.md only.
scope:user curate USER Short chat to tweak ~/.octo/user.md only.
path:<abs> curate memory Short chat to update / keep / delete one memory file at the given path.

lang:zh or lang:en may be combined with any mode to pin the language. Missing lang: → infer from the user's first reply, or from the existing file's language for curate modes, defaulting to English.

Dispatch

Parse the invocation message first, before greeting:

  1. Look for path:<something>. If present → curate memory mode, skip to section C.
  2. Otherwise look for scope:soul or scope:user. If present → curate profile mode, skip to section B.
  3. Otherwise → first-run mode, start at section A.

Look for lang:zh / lang:en anywhere in the same line and use it to set the language.

Presenting choices

Whenever you offer the user a fixed set of options (personality, permission mode, reasoning effort, the curate-action menu, soul/user/memory keep-or-rewrite, etc.), present them with the ask_user_question tool — never as a plain markdown list. The tool renders as clickable cards in the web UI and an arrow-key picker in the terminal; a markdown bullet list is just text the user cannot click. Put each option's label + a short description in the tool's options, and rely on its built-in "Other" choice for free-text answers. Genuinely open prompts (the user's name, occupation, links) stay plain prose — those have no fixed options.

Read the full file on GitHub · 546 lines

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. 11d ago First seen · 546 lines · 154 tokens per session scan A f770c1a4177d

Subscribe to this mod's changes

onboard is a skill published in the GitHub repository open-octo/octo-agent (97 stars, last pushed yesterday), licensed MIT. It adds 154 tokens to every session and 5,609 once invoked, about $0.0008 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-30.

Related

Other skills, from other repositories

ha-skill-creator

Create, edit, improve, or audit Hope Agent skills. Use when the user wants to: (1) create a new skill from scratch, (2) edit or improve an existing skill, (3) review or clean up a SKILL.md file, (4) run evaluations to test skill effectiveness, (5) optimize skill descriptions for better trigger accuracy. Trigger…

shiwenwen/hope-agent · 106 tokens

ha-mac-control

Hope Agent native macOS desktop control — the standard maccontrol status / diagnostics / apps / dock / spaces / snapshot / visual / windows / menu / clipboard / dialog loop, target-first action rules, no-blind-coordinate policy, and recovery for stale AX/window/menu/dialog state. Load whenever using maccontrol, or…

shiwenwen/hope-agent · 139 tokens

ha-browser

Hope Agent browser automation — the standard status → tabs → snapshot → act loop, stale-ref recovery rules, and what to do when login / 2FA / captcha / camera-prompt / dialog blocks progress. Load this skill whenever you reach for the browser tool. Trigger on: user asks the agent to open / control / click / scrape /…

shiwenwen/hope-agent · 140 tokens

ha-logs

A read-only troubleshooting skill for querying Hope Agent’s local SQLite databases, which store logs, conversations, and background-job status.

shiwenwen/hope-agent · 183 tokens

ha-data-analytics

A local-first data-analysis and reporting skill for CSV and spreadsheet files. It produces decision-ready analyses and shareable offline reports while separating facts, calculations, interpretations, and recommendations.

shiwenwen/hope-agent · 106 tokens

ha-pet-import

Safely import, select, switch, or enable a compatible desktop pet in Hope Agent. Resolve packages from any origin, including local folders, zip archives, pet.json plus a sprite, PNG/WebP atlases, chat attachments, repository or cloud files, direct HTTPS artifact URLs, and download pages. Use whenever a user asks to…

shiwenwen/hope-agent · 109 tokens