with one click
onboard
Onboard a new contributor to the project with a guided walkthrough.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Onboard a new contributor to the project with a guided walkthrough.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | onboard |
| description | Onboard a new contributor to the project with a guided walkthrough. |
Onboard a new contributor to the project with a guided walkthrough.
/onboard [--verify]
--verify: Also run setup verification (tests, lint, typecheck)When this skill is invoked:
Read these files in parallel:
CLAUDE.md (project overview, commands, architecture)prd/00_technology.md (technology choices)prd/00_index.md (current features and status)CONTRIBUTING.md (contribution workflow)Provide a concise overview:
Verify the development environment:
# Check required tools
{package_manager} --version
git --version
docker --version
# Check project setup
test -f .env
{package_manager} install --check # or equivalent
Report any missing tools or configuration.
# What branch are we on?
git branch --show-current
# Any work in progress?
git status --short
# Recent activity
git log --oneline -5
Check for in-progress features:
prd/00_index.md for "In Progress" itemsprd/tasks/Based on the project state, suggest:
make quality
Report results and any issues to fix.
Welcome to {project_name}!
## Project Overview
This is a {description} built with {stack}.
## Your Environment
✅ Node.js 22.x installed
✅ Bun installed
✅ Docker running
✅ .env configured
✅ Dependencies installed
## Current State
Branch: main
No uncommitted changes
Last commit: feat: add user authentication (2 days ago)
## Active Work
🔄 User Dashboard (In Progress) - see prd/tasks/user-dashboard_tasks.md
📋 API Rate Limiting (Planned) - not yet started
## Suggested First Steps
1. Read the dashboard task file for context
2. Pick up from "Next Session Priorities"
3. Use `/feature` to scaffold new features
4. Use `/test` after implementing to ensure coverage
## Key Commands
make dev - Start development server
make test - Run tests
make quality - Full quality check
make help - Show all commands
Happy coding! Use /help for AI skill reference.
Write a structured handoff at session end. Preserves context so the next agent can resume without human briefing. Invoke before ending any feature session longer than 30 minutes.
Multi-perspective code review against project standards with P1/P2/P3 severity classification. Works in Claude Code (Agent + optional GitHub MCP) and Cursor (Task subagents + gh/git). Use when the user invokes /review, asks for a PR or diff review, or wants a standards-aligned review with severity tags.
Multi-perspective code review (P1/P2/P3) for Cursor: inline checklists plus three parallel Task subagents (perf-auditor, security-reviewer, simplicity-reviewer with combined data-integrity prompt). Use when the user invokes /review, asks for a PR review, or wants repo-standard findings with severity.
Create well-formatted git commits following conventional commit standards.
Red→green→refactor discipline for new behavior — forces a failing test before implementation and a passing test before any claim of done.
Create or manage a git worktree for isolated parallel development — lets multiple agents work in the repo simultaneously without branch collisions.