Help us improve
Share bugs, ideas, or general feedback.
From claude-code-toolkit
Generates a developer onboarding guide by scanning project configs, structure, and docs for prerequisites, setup, workflow, key concepts. Writes to docs/onboarding.md.
npx claudepluginhub rohitg00/awesome-claude-code-toolkitHow this command is triggered — by the user, by Claude, or both
Slash command
/claude-code-toolkit:onboarddocumentation/The summary Claude sees in its command listing — used to decide when to auto-load this command
Generate an onboarding guide for new developers joining the project. ## Steps 1. Scan the project root for configuration files to determine the tech stack: - `package.json`, `tsconfig.json`, `pyproject.toml`, `Cargo.toml`, `go.mod`. - `.env.example` for required environment variables. - `docker-compose.yml` for service dependencies. 2. Read existing documentation (`README.md`, `CONTRIBUTING.md`, `docs/`). 3. Map the project structure: key directories and their purposes. 4. Identify setup prerequisites: - Runtime versions (Node, Python, Go, Rust). - Required CLI tools (docke...
/create-guideCreates an onboarding guide for new developers covering project setup, architecture, workflow, commands, gotchas, and saves it to docs/onboarding.md.
/hatch3r-onboardGenerates a tailored onboarding guide for new developers by spawning parallel researchers to analyze codebase structure, architecture, conventions, and produces a document with setup, architecture, workflows, tribal knowledge, and cheat sheet.
/create-onboarding-guideCreates developer onboarding guide covering requirements analysis, environment setup, project overview, workflows, team communication, learning resources, first tasks, security training, and tool access.
/onboardGenerates a comprehensive developer onboarding guide including architecture diagram, tech stack, setup instructions, key files, API routes, database schema, and common gotchas.
/onboardGenerates four audience-tailored onboarding guides—Contributor, Staff Engineer, Executive, Product Manager—in an onboarding/ folder with index hub.
/onboardProvides interactive onboarding for existing projects: analyzes codebase, tailors walkthrough by role and focus area, includes knowledge checks.
Share bugs, ideas, or general feedback.
Generate an onboarding guide for new developers joining the project.
package.json, tsconfig.json, pyproject.toml, Cargo.toml, go.mod..env.example for required environment variables.docker-compose.yml for service dependencies.README.md, CONTRIBUTING.md, docs/).docs/onboarding.md or the specified location.# Developer Onboarding Guide
## Prerequisites
- [ ] Install <tool> v<version>
## Setup
1. Clone the repository
2. Install dependencies: `<command>`
3. Configure environment: `cp .env.example .env`
4. Start services: `<command>`
## Project Structure
- `src/` - Application source code
- `tests/` - Test suite
## Development Workflow
<step-by-step instructions>
## Key Concepts
<architectural overview for newcomers>