Быстрый онбординг в репозиторий
★ 7.5 · documentation
repo-onboarding is a Claude Code skill that helps developers quickly understand a repository's architecture before writing any code. The workflow starts with reading `README.md` and `ARCHITECTURE.md` for system-level context, then identifies the correct target layer — `server/` for API, hooks, database, and WebSocket logic; `client/` for UI and routing; `mcp/` for local MCP tools and policy gates. From there, it narrows down to the smallest set of files needed for the task and confirms verification commands upfront: `npm run test:server` for backend, `npm run test:client` for frontend, and `npm run mcp:typecheck` plus `npm run mcp:build` for MCP. Module and command references are stored in `references/module-map.md` and `references/command-map.md`. Ideal for anyone onboarding to an unfamiliar codebase, locating ownership, or choosing the right module before implementation.
- #onboarding
- #architecture
- #repository-structure
- #setup
- #verification