@claudecam/cli 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -0
- package/package.json +31 -0
package/index.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
console.log("CAM - Claude Agent Monitor");
|
|
3
|
+
console.log("Mission Control for Claude Code agents");
|
|
4
|
+
console.log("");
|
|
5
|
+
console.log("This package is under active development.");
|
|
6
|
+
console.log("Visit: https://github.com/pedropauloaitech/claude-agent-monitor");
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@claudecam/cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Mission Control for Claude Code agents: real-time observability dashboard + visual PRD/Sprint tracking",
|
|
5
|
+
"bin": {
|
|
6
|
+
"cam": "./index.js"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [
|
|
9
|
+
"claude-code",
|
|
10
|
+
"claude",
|
|
11
|
+
"agent",
|
|
12
|
+
"monitor",
|
|
13
|
+
"observability",
|
|
14
|
+
"dashboard",
|
|
15
|
+
"kanban",
|
|
16
|
+
"prd",
|
|
17
|
+
"sprint",
|
|
18
|
+
"ai-agent",
|
|
19
|
+
"developer-tools",
|
|
20
|
+
"devtools",
|
|
21
|
+
"real-time",
|
|
22
|
+
"sse"
|
|
23
|
+
],
|
|
24
|
+
"author": "pedropauloaitech",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/pedropauloaitech/claude-agent-monitor"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/pedropauloaitech/claude-agent-monitor#readme"
|
|
31
|
+
}
|