Files
Claude-Code-Monitor/mcp/package.json
T
nntrivi2001 b291091e14 feat: Claude Code Monitor — lanes, pipelines and a merged workspace
Internal SmartGift build of a Claude Code monitoring dashboard.

Lanes: a durable unit of parallel agent work, one per working directory,
tracked across session restarts. Managed lanes are git worktrees the
dashboard provisions and can reset or remove behind a three-check destroy
guard and a counted preflight; adopted lanes are directories you already
own and are never destroyable.

Pipelines: a lane moves through pipeline stages. A stage the agent declares
with evidence renders green; a stage inferred from the tool-event stream
renders dashed amber and never counts as done. Detection is forward-only
within a 30-minute window, and never writes the declared stage.

Workspace: one page at /run with a lane grid, the selected lane's pipeline,
and a full Claude console behind a disclosure.
2026-07-30 14:35:26 +07:00

39 lines
1.3 KiB
JSON

{
"name": "agent-dashboard-mcp-server",
"version": "1.0.0",
"description": "Local MCP server for the Claude Code Agent Monitor",
"private": true,
"type": "module",
"bin": {
"agent-dashboard-mcp": "./build/index.js"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('build',{recursive:true,force:true})\"",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "npm run clean && tsc -p tsconfig.json",
"start": "node build/index.js",
"start:http": "node build/index.js --transport=http",
"start:repl": "node build/index.js --transport=repl",
"test": "node --import tsx --test __tests__/*.test.ts",
"dev": "tsx src/index.ts",
"dev:http": "tsx src/index.ts --transport=http",
"dev:repl": "tsx src/index.ts --transport=repl",
"docker:build": "docker build -f Dockerfile -t agent-dashboard-mcp:local ..",
"podman:build": "podman build -f Dockerfile -t localhost/agent-dashboard-mcp:local .."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"agent-dashboard": "file:..",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.18.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.18.0"
}
}