onboard
Installation
SKILL.md
Codebase Onboarding Generator
Turn weeks of confusion into minutes of clarity.
Workflow
- Analyze project structure (files, directories, patterns)
- Identify architecture (frameworks, data flow, entry points)
- Find key files and patterns
- Generate onboarding guide
Step 1: Analyze Project Structure
# Directory structure (excluding noise)
find . -type f \( -name "*.py" -o -name "*.js" -o -name "*.ts" -o -name "*.go" -o -name "*.rs" \) | grep -v node_modules | grep -v __pycache__ | grep -v .git | head -100
# Package/dependency info
cat package.json pyproject.toml Cargo.toml go.mod 2>/dev/null