codex/skills/onboard/SKILL.md
Developer onboarding guide that composes architecture mapping, tooling review, and agentic setup review with setup, troubleshooting, and next-steps agents to produce a comprehensive guide at .turbo/onboarding.md and .turbo/onboarding.html. Use when the user asks to "onboard me", "onboard to this project", "generate onboarding guide", "new developer guide", "how do I get started", or "help me ramp up".
npx skillsauth add tobihagemann/turbo onboardInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Developer onboarding pipeline. Composes $map-codebase, $review-tooling, and $review-agentic-setup with inline agents, then synthesizes everything into .turbo/onboarding.md and .turbo/onboarding.html. Analysis-only.
At the start, use update_plan to track each phase, restating any remaining steps of a parent workflow alongside them:
Launch the 6 agents below in parallel. Each Composed Skills agent invokes its assigned skill by reading and following the installed skill instructions; each Inline Agent follows its exploration brief directly. Every sub-agent's prompt must direct it to treat the shared working tree and its git index as read-only and to explore by reading and reasoning, except that each Composed Skills sub-agent writes the report files its own skill defines.
Launch one Codex sub-agent call per row. Each agent's prompt instructs it to invoke its assigned skill by reading and following the installed skill instructions.
| Skill | Onboarding role |
|---|---|
| $map-codebase | Architecture: structure, stack, APIs, patterns, data flow, dependencies, testing |
| $review-tooling | Development workflow: linters, formatters, pre-commit hooks, test runners, CI/CD |
| $review-agentic-setup | Agentic coding: CLAUDE.md, AGENTS.md, skills, MCP servers, hooks, cross-tool compatibility |
Launch one Codex sub-agent call each with the exploration brief below.
| Role | Exploration Brief |
|---|---|
| Prerequisites and Setup | Read README.md, CONTRIBUTING.md, and package manager configs (package.json, Gemfile, Cargo.toml, go.mod, pyproject.toml, Package.swift, etc.). Extract: required language runtimes and versions, system dependencies, environment variables, database or service requirements, first-time setup steps (install, build, run, seed), and any bootstrap or setup scripts. |
| Troubleshooting | Search for troubleshooting content in README.md, TROUBLESHOOTING.md, docs/ directory, FAQ files, and GitHub Discussions/Wiki if accessible. Extract common errors, known quirks, platform-specific gotchas, and debugging tips. If no troubleshooting docs exist, report that. |
| Next Steps | Run gh issue list --state open --json number,title,url,reactionGroups,comments,labels --limit 50. Identify: (1) issues labeled good-first-issue or good first issue, (2) top 5 issues by engagement score (sum of reactions weighted 2x for thumbs-up, plus comment count). If gh is not available or not in a GitHub repo, skip and note that. |
Each agent writes its findings as structured markdown.
After all agents complete:
.turbo/threat-model.md exists; if so, read it for the Security Considerations section.$review-tooling findings become "Development Workflow" (what tools are used and how to run them). $review-agentic-setup findings become "AI-Assisted Development" (what's set up and how to use it). Focus on what exists, not what's missing. Strip severity labels, findings numbering, and gap framing from review skill outputs. Present detected tools and configurations as project conventions the new developer should know..turbo/onboarding.md using the report template. Output the welcome summary as text before writing the file.# Onboarding Guide
**Date:** <date>
**Project:** <project name>
## Welcome
<3-5 sentences: what this project is, who it's for, fastest path to a first contribution>
## Prerequisites and Setup
<from Prerequisites and Setup agent: language runtimes, dependencies, first-time setup steps, build/run commands>
## Architecture Overview
<from $map-codebase: condensed executive summary and key structural insights — not the full report, which lives at .turbo/codebase-map.md>
## Development Workflow
<from $review-tooling: reframed as "how to develop" — what linters/formatters to run, how to test, pre-commit hooks, CI/CD pipeline>
## AI-Assisted Development
<from $review-agentic-setup: reframed as "how to use AI coding tools" — what CLAUDE.md/AGENTS.md cover, installed skills, MCP servers, cross-tool compatibility>
## Security Considerations
<from .turbo/threat-model.md if present: key trust boundaries, security-sensitive areas, and what to be careful with — or omit this section if no threat model exists>
## Troubleshooting
<from Troubleshooting agent: common errors, known quirks, debugging tips, or "no troubleshooting docs found">
## Next Steps
<from Next Steps agent: good-first-issue issues, top-engaged issues, or "no GitHub issues found">
Convert the markdown report into a styled, interactive HTML page.
$frontend-design skill to load design principles..turbo/onboarding.md for the full report content..turbo/onboarding.html (single file, no external dependencies beyond Google Fonts) that presents the onboarding guide with:
@media print$map-codebase skill produces its own full report at .turbo/codebase-map.md. The onboarding guide includes a condensed summary and links to the full report.development
Apply a UX lens to a user-facing change: whether it serves the user's real goal and whether the path through it holds together, using the Understanding, Bridging, and Flowing contexts. Use when scoping, planning, or assessing any change that affects what a user sees or does. Loaded as a lens during planning and assessment.
development
Apply a UX lens to a user-facing change: whether it serves the user's real goal and whether the path through it holds together, using the Understanding, Bridging, and Flowing contexts. Use when scoping, planning, or assessing any change that affects what a user sees or does. Loaded as a lens during planning and assessment.
development
Assess project-wide structural technical debt: complexity hotspots, deprecated API usage, duplication clusters, and architecture rot. Ranks findings by impact and refactor effort into a report at .turbo/technical-debt.md. Use when the user asks to "assess technical debt", "find technical debt", "review technical debt", "what should we refactor", "find refactoring candidates", "where is the code rot", or "what's our worst code". Analysis-only — does not modify code.
development
Run a multi-agent review of code comments and markdown documentation for unnecessary content, then fix the issues. Covers what-restating comments, name-mirroring doc comments, status-update prose, and other documentation noise. Use when the user asks to "simplify docs", "simplify documentation", "clean up comments", "clean up docs", "review documentation", "strip unnecessary comments", "reduce doc noise", or "run simplify-docs".