understand-onboard — New Team Member Onboarding Guide Generator
Turns your project's knowledge graph into a complete onboarding document covering architecture, file map, and complexity hotspots.
Dev & CodingIntermediate★ 83,748⑂ 7,058AI score 8/10Last updated: Sep 12, 2026
What it does
- Reads the project knowledge graph stored in
.ua/knowledge-graph.json(or the legacy.understand-anything/directory) and writes an onboarding guide for new hires. - Performs a freshness check first: compares the graph's commit hash against
HEAD, staged, and working-tree changes, and warns if the guide may miss recent work. - Produces clean Markdown structured as Project Overview → Architecture Layers → Key Concepts → Guided Tour → File Map → Complexity Hotspots.
- Offers to save the result to
docs/UA_ONBOARDING.mdand commit it for the team.
Who it's for
- Tech leads who onboard people often and hate rewriting the same docs.
- Developers inheriting a legacy codebase with no handover documentation.
- Monorepo teams needing per-project structure explanations.
Examples
- "Write an onboarding guide for the backend engineer starting Monday" → layered file map plus a recommended reading path.
- "Is the graph still current?" → Git diff detects changed files and suggests re-running
/understand. - "List the riskiest files to touch first" → outputs just the Complexity Hotspots section ranked by complexity.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Egonex-AI/Understand-Anything/HEAD/understand-anything-plugin/skills/understand-onboard/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the understand-anything-plugin/skills/understand-onboard folder from the GitHub repo Egonex-AI/Understand-Anything into my ~/.claude/skills/understand-onboard/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Egonex-AI/Understand-Anything.git && mkdir -p ~/.claude/skills && cp -r Understand-Anything/understand-anything-plugin/skills/understand-onboard ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and go to your working directory.
- Clone the repo:
git clone https://github.com/Egonex-AI/Understand-Anything.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r Understand-Anything/understand-anything-plugin/skills/understand-onboard ~/.claude/skills/ - Open Claude Code inside the project you want to document and run
/understandfirst to build the knowledge graph (.ua/knowledge-graph.json). - Then ask for an onboarding guide (or run
/understand-onboard) to trigger the skill.
View source on GitHub ↗License: MIT