/understand-onboard command produces a standalone, human-readable onboarding guide from the knowledge graph. It is designed to help a new developer (or a non-technical stakeholder) get up to speed with the codebase in the shortest time possible, without reading code blind.
The output is a complete markdown document suitable for pasting into a README, a wiki page, a Notion doc, or any team documentation system.
Usage
Requires an existing
.understand-anything/knowledge-graph.json. Run /understand first to generate it.Who it’s for
- New engineers joining a team who need a map before they read any code
- Junior developers who benefit from guided tours ordered by dependency
- Product managers and designers who need a plain-English picture of how the system is structured
- Tech leads who want a generated first draft of architecture documentation
What the guide contains
Project overview
A summary table with project name, description, languages, frameworks, total component count, and the date the graph was last analyzed.
Architecture
One section per architectural layer identified during analysis. Each layer includes a description of its responsibilities and a list of its key components.
Key concepts
Explanations of abstract concepts and domain patterns found in the graph (e.g., “Event Bus”, “Repository Pattern”). Only included when concept-type nodes exist.
Getting started tour
A numbered walkthrough derived from the tour generated by the
tour-builder agent. Each step points to specific files to read, explains what to look for, and may include language tips for unfamiliar patterns.File map
A table of every source file with its purpose (plain-English summary) and complexity rating — so a new developer can instantly identify the most important and most complex parts.
Output
A markdown document printed directly in the chat. Example structure:Examples
Related commands
/understand
Build or update the knowledge graph that the onboarding guide is generated from.
/understand-dashboard
Complement the written guide with an interactive visual exploration of the codebase.
/understand-chat
Ask follow-up questions after reading the guide.
/understand-explain
Deep-dive into any component mentioned in the guide.