Skip to content
⭐ Featuredonboarding

Onboard

Read key docs and code, then summarize the project's architecture for someone new to the codebase.

/onboard

Install this skill

  1. 1. Copy the SKILL.md content (button above)
  2. 2. Create a folder for the skill:
    # Mac/Linux
    mkdir -p ~/.claude/skills/onboard
    
    # Windows (PowerShell)
    mkdir $env:USERPROFILE\.claude\skills\onboard
  3. 3. Save the content as ~/.claude/skills/onboard/SKILL.md
  4. 4. Restart Claude Code (or open a new session)
  5. 5. Type /onboard to invoke it
docsarchitectureexploration

/onboard

Crea un onboarding doc para alguien nuevo al codebase.

Pasos

1. Detectar pieza clave del proyecto

  • README.md, CONTRIBUTING.md, ARCHITECTURE.md, CLAUDE.md
  • package.json / pyproject.toml / Cargo.toml para stack
  • /docs o /architecture folders

2. Mapear estructura

src/ ├── app/ ← Next.js routes ├── components/ ← UI primitives ├── lib/ ← business logic └── db/ ← schema + queries

Identificar:

  • Entry points
  • Capas (presentation/business/data)
  • Convenciones de naming
  • Patrones de testing

3. Output: Onboarding.md

Sections:

  • What this project does (1 paragraph)
  • Tech stack (table)
  • How to run locally (3-5 commands)
  • Where to look first (5 most important files con explicación)
  • Common workflows (cómo agregar una feature, cómo correr tests)
  • Gotchas (cosas no obvias que confunden)

4. Si hay un grafo de Graphify

Léelo primero — graphify-out/GRAPH_REPORT.md te da god nodes y comunidades sin grep.