Spaces:
No application file
No application file
File size: 587 Bytes
dc89ddf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"name": "agent-visibility",
"version": "0.1.0",
"description": "Real-time debug dashboard for multi-agent AI systems — topology graph, LLM turn inspector, tool call traces, memory panel",
"main": "src/server.js",
"bin": {
"visibility": "bin/visibility.js"
},
"scripts": {
"start": "node bin/visibility.js",
"start:mcp": "node bin/visibility.js --mcp",
"dev": "node bin/visibility.js --no-open"
},
"keywords": ["agent", "llm", "debug", "visibility", "observability", "mcp", "multi-agent"],
"license": "MIT",
"engines": {
"node": ">=18"
}
}
|