Skip to main content
ClaudeWave
Skill456 repo starsupdated 2d ago

repo-onboarding

The repo-onboarding skill systematically accelerates repository familiarization by reading core documentation files, determining which architectural layer requires modification, identifying necessary files, and selecting appropriate verification commands. Use this skill when beginning work on unfamiliar codebases to establish project structure understanding before implementing changes, ensuring changes align with the repository's architecture and pass relevant tests.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/hoangsonww/Claude-Code-Agent-Monitor /tmp/repo-onboarding && cp -r /tmp/repo-onboarding/.codex/skills/repo-onboarding ~/.claude/skills/repo-onboarding
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Repo Onboarding Skill

## Workflow
- Read `AGENTS.md`, `README.md`, and `ARCHITECTURE.md`.
- Determine target layer: `server/`, `client/`, `mcp/`, or docs.
- Identify the minimal file set needed for the task.
- Select verification commands before editing.

## Verification defaults
- Backend: `npm run test:server`
- Frontend: `npm run test:client`
- MCP: `npm run mcp:typecheck` and `npm run mcp:build`

## References
- `references/module-map.md`
- `references/verification-map.md`