agentmomo 0.1.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/README.md +39 -0
- package/dist/assets/index-Cru_j148.js +5346 -0
- package/dist/assets/index-q7eACk3a.css +1 -0
- package/dist/claude-code-hook.cjs +223 -0
- package/dist/cli.js +42 -0
- package/dist/icons/abe.svg +28 -0
- package/dist/icons/andrew.svg +2 -0
- package/dist/icons/boss.svg +34 -0
- package/dist/icons/boy.svg +56 -0
- package/dist/icons/buildings/artdeco.png +0 -0
- package/dist/icons/buildings/brutalist.png +0 -0
- package/dist/icons/buildings/cyberpunk.png +0 -0
- package/dist/icons/buildings/eco.png +0 -0
- package/dist/icons/buildings/glass.png +0 -0
- package/dist/icons/buildings/industrial.png +0 -0
- package/dist/icons/default.svg +4 -0
- package/dist/icons/kaya.svg +2 -0
- package/dist/icons/lady.svg +50 -0
- package/dist/icons/zombie.svg +44 -0
- package/dist/index.html +20 -0
- package/dist/server.js +48659 -0
- package/dist/stdio-wrapper.js +3804 -0
- package/dist/vite.svg +4 -0
- package/package.json +76 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# AgentsMomo
|
|
2
|
+
|
|
3
|
+
Watch your AI agents work in a 3D office. Each MCP server becomes a character at a desk �� when a tool is called, they start typing. When done, they grab coffee.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
Run this once in any terminal (Node.js 18+ required):
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx agentmomo
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This starts a local proxy at `http://localhost:9001` and opens the dashboard automatically.
|
|
16
|
+
|
|
17
|
+
## What it does
|
|
18
|
+
|
|
19
|
+
- **Claude Desktop** �� wraps your MCP servers to track every tool call in the 3D office
|
|
20
|
+
- **Claude Code CLI** �� installs hooks so every `claude` terminal session is visualized
|
|
21
|
+
- **Open WebUI** �� proxies your mcpo endpoints to capture activity
|
|
22
|
+
|
|
23
|
+
All processing is local. No data leaves your machine except optional account sync.
|
|
24
|
+
|
|
25
|
+
## Requirements
|
|
26
|
+
|
|
27
|
+
- Node.js 18 or later
|
|
28
|
+
- Claude Desktop or Claude Code CLI (for MCP tracking)
|
|
29
|
+
|
|
30
|
+
## Setup in the dashboard
|
|
31
|
+
|
|
32
|
+
1. Run `npx agentmomo`
|
|
33
|
+
2. Open the dashboard at `http://localhost:9001`
|
|
34
|
+
3. Go to the **Setup** panel
|
|
35
|
+
4. Follow the steps for Claude Desktop or Claude Code CLI
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|