understand-onboard
/understand-onboard
Generate a comprehensive onboarding guide from the project's knowledge graph.
Graph Structure Reference
The knowledge graph JSON has this structure:
project— {name, description, languages, frameworks, analyzedAt, gitCommitHash}nodes[]— each has {id, type, name, filePath, summary, tags[], complexity, languageNotes?}- Node types: file, function, class, module, concept
- IDs:
file:path,function:path:name,class:path:name
edges[]— each has {source, target, type, direction, weight}- Key types: imports, contains, calls, depends_on
layers[]— each has {id, name, description, nodeIds[]}tour[]— each has {order, title, description, nodeIds[]}
How to Read Efficiently
- Use Grep to search within the JSON for relevant entries BEFORE reading the full file
More from lum1104/understand-anything
understand
Analyze a codebase to produce an interactive knowledge graph for understanding architecture, components, and relationships
243understand-dashboard
Launch the interactive web dashboard to visualize a codebase's knowledge graph
223understand-explain
Use when you need a deep-dive explanation of a specific file, function, or module in the codebase
210understand-chat
Use when you need to ask questions about a codebase or understand code using a knowledge graph
209understand-diff
Use when you need to analyze git diffs or pull requests to understand what changed, affected components, and risks
202understand-domain
Extract business domain knowledge from a codebase and generate an interactive domain flow graph. Works standalone (lightweight scan) or derives from an existing /understand knowledge graph.
124