onboard

onboard is a skill for Claude Code from terrene-foundation/kailash-coc-claude-py. It costs 37 tokens per session (2,013 once invoked), scanned A, original, Apache-2.0.

A read-only procedure for understanding the current state of a shared repository. It reads operator identity, team memory, claims, working rules, and whether someone holds the editing lease.

In plain words
What is it for?
Use it at the start of a session, after clearing or compressing context, or before preparing a repository-wide proposal.
Why use it?
It gives a new or returning operator the shared context needed to avoid duplicating work or editing while another person has reserved the task.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths.

Good fit Use it at the start of a session, after clearing or compressing context, or before preparing a repository-wide proposal.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/terrene-foundation/kailash-coc-claude-py/41-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 terrene-foundation/kailash-coc-claude-py --skill 41-onboard
Clone the repo
git clone --depth 1 https://github.com/terrene-foundation/kailash-coc-claude-py

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 onboard

README.md
[![agentmods](https://agentmods.dev/badge/skills/terrene-foundation/kailash-coc-claude-py/41-onboard/github.svg)](https://agentmods.dev/skills/terrene-foundation/kailash-coc-claude-py/41-onboard)
Your own site
<a href="https://agentmods.dev/skills/terrene-foundation/kailash-coc-claude-py/41-onboard"><img src="https://agentmods.dev/badge/skills/terrene-foundation/kailash-coc-claude-py/41-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/terrene-foundation/kailash-coc-claude-py/41-onboard"><img src="https://agentmods.dev/badge/skills/terrene-foundation/kailash-coc-claude-py/41-onboard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,013 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: 2 findings, up to high

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 →

  • high Agent Snooping · line 8
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
  • medium Prompt Injection · line 21
    Large whitespace padding was detected (a block of blank lines or a long run of spaces). This can push injected instructions below or to the right of the visible area so a human reviewer never sees them while the agent still reads them. Manual review of the hidden content is recommended.
    Fix: Remove the large whitespace padding (blank-line blocks or long space runs) and review any content hidden below or to the right of it. Keep skill files compact and reviewable so no instructions can be
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.00037 $0.02013
Opus 5 $0.00018 $0.01007
Sonnet 5 $0.00007 $0.00403
Haiku 4.5 $0.00004 $0.00201

Measured 8d ago against content hash cbd304019939, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 8d 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.

.claude/skills/41-onboard/SKILL.md · 158 lines

How it starts

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

/onboard — deterministic operator onboarding

This skill is the procedural detail for the /onboard command (.claude/commands/onboard.md). The command is the entry point; this skill is the runbook the orchestrator follows.

When to use

  • An operator opens a fresh session in a multi-operator COC repo for the first time.
  • An operator joins a repo someone else owns and needs the shared state surface.
  • After /clear / auto-compaction — the operator wants to re-validate the team-memory + posture + claim surface without inferring from a stale .session-notes.
  • Pre-/codify sanity check: confirm no other operator holds the codify lease before drafting a proposal.

Read-only contract

/onboard writes ZERO state. Every read goes through an existing helper:

Surface Helper Returned shape
Operator identity operator-id.js::resolveIdentity() {verified_id, person_id, display_id, posture, blocked_into}
Roster roster-schema-validate.js + reading operators.roster.json {genesis, persons: {<person_id>: {...}}}
Team-memory direct fs.readdir(.claude/team-memory) + fs.readFile per file + integrity-guard.js validation [{slug, body, signed, promoted_by}]
Active workspace workspace-utils.js::detectActiveWorkspace() {name, path} | null
Posture state-io.js::readPosture() {posture, since, transition_history, pending_verification}
Adjacency claims coordination-log.js::foldLog() active-claim slice
Codify lease codify-lease.js::readActiveLease() {lease, leasePath}
Rules-changed reuse multi-operator-sessionstart.js helper or re-derive via git log list of rule files + MUST-clause line refs

Read the full file on GitHub · 158 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. 8d ago First seen · 158 lines · 37 tokens per session scan A cbd304019939

Subscribe to this mod's changes

onboard is a skill published in the GitHub repository terrene-foundation/kailash-coc-claude-py (12 stars, last pushed 24d ago), licensed Apache-2.0. It adds 37 tokens to every session and 2,013 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

mempalace-task

Create, hand off, claim, execute, and close agent tasks through the MemPalace logstream. Use when the user wants to delegate work, prepare a ready-to-paste task for another agent, receive a MemPalace task id, or explicitly launch a supported headless agent in controlled mode.

MemPalace/mempalace · 67 tokens

neat-freak

Knowledge and governance closeout: reconcile project docs, rule files (CLAUDE.md/AGENTS.md), authorized agent memory, and workspace residue with what the code and runtime actually do, so the next session or the next person starts from one current answer. Trigger when the user names "neat-freak", "洁癖", or "/neat" — and…

KKKKhazix/khazix-skills · 202 tokens

gsd-mempalace-capture

File a phase artifact into MemPalace; mirror decision facts into its temporal KG.

open-gsd/gsd-core · 25 tokens

md-hive-sync

Munder Difflin hive sync — runs the start-of-task hive protocol steps: reads memory.md, checks inbox/ for new messages, and reminds you to record durable facts in memory.md and write coordination files before ending. Use when asked to "sync with the hive", "check my inbox", "hive status", or "hive sync". Proactively…

chaitanyagiri/munder-difflin · 109 tokens

commonly

You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…

Team-Commonly/commonly · 0 tokens

github-ops

GitHub CLI for issues, PRs, code search, CI logs, releases, and API queries. Requires gh CLI and auth.

fuyuxiang/echo-agent · 31 tokens