---
name: Repo Onboarding
slug: repo-onboarding-2
category: Automation
description: Repo Onboarding helps you understand the repository structure, find the right module, and choose verification commands before coding. Use it when starting discovery, ownership, or implementation work.
github: "https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.claude/skills/repo-onboarding"
language: TypeScript
stars: 933
forks: 210
install: "npx degit https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.claude/skills/repo-onboarding ~/.claude/skills/repo-onboarding"
installs_to: ~/.claude/skills/repo-onboarding
source_path: .claude/skills/repo-onboarding/SKILL.md
collection_size: 20
category_size: 1523
collection_url: "https://dirskills.com/collections/hoangsonww/Claude-Code-Agent-Monitor"
added: 2026-08-22T05:20:23.155Z
last_synced: 2026-08-22T05:20:23.155Z
canonical_url: "https://dirskills.com/skills/repo-onboarding-2"
---

# Repo Onboarding

Repo Onboarding helps you understand the repository structure, find the right module, and choose verification commands before coding. Use it when starting discovery, ownership, or implementation work.

**Install:**

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

## README

# Repo Onboarding

Use this workflow when a task begins with discovery.

## Steps
- Read `README.md` and `ARCHITECTURE.md` for system-level context.
- Identify target layer:
  - `server/` for API, hooks, DB, websocket
  - `client/` for UI and routing
  - `mcp/` for local MCP tools and policy gates
- Select the smallest set of files required to answer the task.
- Confirm verification commands before implementation.

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

## References
- Module map: `references/module-map.md`
- Command map: `references/command-map.md`
