---
name: Repo Onboarding
slug: repo-onboarding
category: Quality
description: Repo Onboarding helps you understand a codebase before making changes. Use it to find the relevant layer, map ownership, choose files, and pick verification commands.
github: "https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.agents/skills/repo-onboarding"
language: TypeScript
stars: 933
forks: 210
install: "npx degit https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.agents/skills/repo-onboarding ~/.claude/skills/repo-onboarding"
installs_to: ~/.claude/skills/repo-onboarding
source_path: .agents/skills/repo-onboarding/SKILL.md
collection_size: 20
category_size: 1354
collection_url: "https://dirskills.com/collections/hoangsonww/Claude-Code-Agent-Monitor"
added: 2026-08-22T05:20:22.110Z
last_synced: 2026-08-22T05:20:22.110Z
canonical_url: "https://dirskills.com/skills/repo-onboarding"
---

# Repo Onboarding

Repo Onboarding helps you understand a codebase before making changes. Use it to find the relevant layer, map ownership, choose files, and pick verification commands.

**Install:**

```bash
npx degit https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.agents/skills/repo-onboarding ~/.claude/skills/repo-onboarding
```

## README

# 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`
