docs: add skill and agent operating guides for repository conventions

This commit is contained in:
nirholas
2026-03-31 10:16:23 +00:00
parent 372a01d486
commit 261739a6c2
11 changed files with 1345 additions and 0 deletions

22
mcp-server/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "claude-code-explorer-mcp",
"version": "1.0.0",
"description": "MCP server for exploring the Claude Code source code",
"type": "module",
"main": "dist/index.js",
"bin": {
"claude-code-explorer-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}