skills$openclaw/context-onboarding
crimsondevil3333333.1k

by crimsondevil333333

context-onboarding – OpenClaw Skill

context-onboarding is an OpenClaw Skills integration for writing workflows. Provide new contributors and agents with a concise tour of the workspace identity files (SOUL.md, USER.md, AGENTS.md, TOOLS.md) plus onboarding tips. Use when a newcomer needs context or when you want to double-check how this workspace is configured.

3.1k stars9.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namecontext-onboarding
descriptionProvide new contributors and agents with a concise tour of the workspace identity files (SOUL.md, USER.md, AGENTS.md, TOOLS.md) plus onboarding tips. Use when a newcomer needs context or when you want to double-check how this workspace is configured. OpenClaw Skills integration.
ownercrimsondevil333333
repositorycrimsondevil333333/context-onboarding
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @crimsondevil333333/context-onboarding
last updatedFeb 7, 2026

Maintainer

crimsondevil333333

crimsondevil333333

Maintains context-onboarding in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
references
context-guidelines.md
834 B
scripts
context_onboarding.py
2.0 KB
tests
test_context_onboarding.py
1.7 KB
_meta.json
478 B
README.md
1.5 KB
SKILL.md
2.8 KB
SKILL.md

name: context-onboarding description: Provide new contributors and agents with a concise tour of the workspace identity files (SOUL.md, USER.md, AGENTS.md, TOOLS.md) plus onboarding tips. Use when a newcomer needs context or when you want to double-check how this workspace is configured.

Context Onboarding

When to use this skill

  • You're guiding someone new through Clawdy/Clawd and want a quick summary of the personality, operating rules, and per-skill notes.
  • You need to remind yourself of the tone preferences or tooling constraints without reading every document top to bottom.

What it does

  • scripts/context_onboarding.py reads the key documents (SOUL.md, USER.md, AGENTS.md, TOOLS.md by default) and prints the first few lines of each so you can skim character, rules, and tooling notes.
  • The CLI supports --files to include additional documents, --lines to control how many lines are shown per file, and --brief to emit only the opening sentence of each section.
  • Use references/context-guidelines.md when you need more guidance about what newcomers should read next or how to keep the vibe consistent.

CLI usage

  • python3 skills/context-onboarding/scripts/context_onboarding.py summarizes the default identity docs and prints the first five lines per file.
  • Add --files docs/PLAYBOOK.md docs/ROLE.md to weave in extra reference material that onboards the newcomer to cadence notes or release rituals.
  • Pair --lines 2 with --brief to emit single-line headlines when you just need the gist.
  • --workspace /path/to/other-workspace lets you compare multiple workspaces or prepare summaries for a sister repo before pairing.

Example command

python3 skills/context-onboarding/scripts/context_onboarding.py --files references/context-guidelines.md HEARTBEAT.md --lines 2

This prints the opening two lines for the personality files plus the heartbeat and onboarding guide so you can review vibe, reminders, and cadence expectations without opening every file.

Options

  • --files <path>: Accepts extra markdown files (comma/space separated) that the script should include in the output order you provide.
  • --lines <n>: Controls how many lines from each file are shown (default 5) so you can tighten or loosen the briefing.
  • --brief: Shrinks each preview to the first sentence (splitting on ., ?, or !). Use this for lightning summaries during sync calls.
  • --workspace <dir>: Point the CLI at another workspace root; useful for onboarding clones, reviewing experimental docs, or prepping a new repo.

References

  • references/context-guidelines.md documents onboarding topics, role expectations, cadence notes, and reminders for how this group runs.

Resources

README.md

Context Onboarding

Context Onboarding gives you a curated summary of the identity docs that define this workspace: the personality (SOUL.md), the user guidance (USER.md), agent rules (AGENTS.md), and tooling notes (TOOLS.md). It is the perfect skill to run when someone joins the community, when you inherit a new workspace, or when you just want a refresher on how to stay in sync.

Features

  • CLI script at skills/context-onboarding/scripts/context_onboarding.py that reads the most relevant markdown files and prints the first few lines from each so you can skim key points instantly.
  • Optional --files flag to include extra docs (e.g., playbooks or onboarding guides) plus --lines/--brief knobs for longer or shorter outputs.
  • Built-in reference guide (references/context-guidelines.md) that explains what to highlight during onboarding calls or documentation drops.

Usage

python3 skills/context-onboarding/scripts/context_onboarding.py --lines 4

Add --files docs/PLAYBOOK.md if you want to weave in other material, or --brief to limit the output to one sentence per doc.

Testing

python3 -m unittest discover skills/context-onboarding/tests

Packaging & release

python3 $(npm root -g)/openclaw/skills/skill-creator/scripts/package_skill.py skills/context-onboarding

Links

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install context-onboarding?

Run openclaw add @crimsondevil333333/context-onboarding in your terminal. This installs context-onboarding into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/crimsondevil333333/context-onboarding. Review commits and README documentation before installing.