Claude
Skill
repo-onboarding
Onboard quickly to this repository. Use when asked to understand architecture, locate ownership, choose the right module, or identify the correct commands and verification strategy before coding.
Virus-scanned
Reviewed automatically before listing.
Download
hoangsonww-claude-code-agent-monitor-.claude_skills_repo-onboarding-83d4df5.zip · 1 KB
Install
skills CLI
npx skills add https://github.com/hoangsonww/Claude-Code-Agent-Monitor/tree/master/.claude/skills/repo-onboarding
Claude Code
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install hoangsonww-claude-code-agent-monitor@llmmart
Git
git clone https://github.com/hoangsonww/Claude-Code-Agent-Monitor.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole hoangsonww/claude-code-agent-monitor collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
Repo Onboarding
Use this workflow when a task begins with discovery.
Steps
- Read
README.mdandARCHITECTURE.mdfor system-level context. - Identify target layer:
server/for API, hooks, DB, websocketclient/for UI and routingmcp/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:typecheckandnpm run mcp:build
References
- Module map:
references/module-map.md - Command map:
references/command-map.md
Files (claude-code-agent-monitor)
-
references
-
command-map.md 525 B
# Command Map ## Root commands - `npm run setup` - `npm run dev` - `npm run build` - `npm start` - `npm run test:server` - `npm run test:client` - `npm run install-hooks` - `npm run import-history` - `npm run clear-data` ## MCP helper commands (root) - `npm run mcp:install` - `npm run mcp:build` - `npm run mcp:start` - `npm run mcp:dev` - `npm run mcp:typecheck` ## Direct MCP package commands - `npm --prefix mcp install` - `npm --prefix mcp run build` - `npm --prefix mcp run start` - `npm --prefix mcp run typecheck` -
module-map.md 778 B
# Module Map ## Backend - `server/index.js`: app composition, startup behavior, periodic maintenance. - `server/db.js`: schema and prepared statement ownership. - `server/routes/*.js`: endpoint contracts by domain. - `server/websocket.js`: WS lifecycle and broadcast behavior. ## Frontend - `client/src/pages/`: route-level screens. - `client/src/components/`: reusable UI building blocks. - `client/src/lib/api.ts`: client API access patterns. - `client/src/hooks/useWebSocket.ts`: live update pipeline. ## MCP - `mcp/src/index.ts`: runtime entrypoint. - `mcp/src/server.ts`: MCP assembly. - `mcp/src/tools/domains/`: domain tool registration. - `mcp/src/clients/dashboard-api-client.ts`: resilient API bridge. - `mcp/src/policy/tool-guards.ts`: mutation/destructive gates.
-
-
SKILL.md 905 B
--- name: repo-onboarding description: Onboard quickly to this repository. Use when asked to understand architecture, locate ownership, choose the right module, or identify the correct commands and verification strategy before coding. --- # 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`
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.