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.
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-onboardingSKILL.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`
Operate and maintain the local MCP server for this repository. Use for MCP tool updates, policy-guard changes, host configuration, and MCP runtime troubleshooting.
Run release-readiness checks for this repository. Use when validating docs, scripts, verification coverage, and operational safety before merge or release.
Review backend route and hook logic for regressions, data integrity risks, and missing tests.
Review React UI changes for behavior regressions, state consistency, and UX breakage.
Review MCP server changes for tool safety, schema quality, and host integration correctness.
Debug production-like issues in this repository with disciplined evidence gathering. Use when fixing failing workflows, regressions, flaky behavior, or data inconsistencies across hooks, API, DB, websocket, and UI.
Operate and maintain the local MCP server for this project. Use when creating MCP host config, troubleshooting tool connectivity, modifying tool domains, or adjusting safety policy flags.
Implement a feature safely end-to-end in this repository. Use when adding or changing functionality across backend, frontend, or MCP with required verification and documentation updates.