agentmomo 0.1.2 → 0.2.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 +18 -8
- package/dist/assets/index-BQyAbSge.js +5574 -0
- package/dist/assets/index-BjOLTppo.css +1 -0
- package/dist/claude-code-hook.cjs +66 -0
- package/dist/cli.js +42 -11
- package/dist/codex-cli-hook.cjs +415 -0
- package/dist/gemini-cli-hook.cjs +68 -0
- package/dist/index.html +3 -3
- package/dist/server.js +8064 -26
- package/package.json +29 -2
- package/dist/assets/index-BwEFhEay.js +0 -5367
- package/dist/assets/index-CS8oLlw3.css +0 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# AgentsMomo
|
|
2
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.
|
|
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
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -12,27 +12,37 @@ Run this once in any terminal (Node.js 18+ required):
|
|
|
12
12
|
npx agentmomo
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
This starts
|
|
15
|
+
This starts the local bridge at `http://localhost:9001`.
|
|
16
|
+
|
|
17
|
+
Keep it running, then open `https://agentmomo.net/app` in the browser. The deployed app is the main UI; `localhost:9001` is the local companion that handles setup, hooks, wrappers, and live event ingestion.
|
|
18
|
+
|
|
19
|
+
If you want the old local-only fallback UI for debugging, run:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx agentmomo --open-local
|
|
23
|
+
```
|
|
16
24
|
|
|
17
25
|
## What it does
|
|
18
26
|
|
|
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
|
-
- **
|
|
27
|
+
- **Claude Desktop** �� wraps your MCP servers to track every tool call in the 3D office
|
|
28
|
+
- **Claude Code CLI** �� installs hooks so every `claude` terminal session is visualized
|
|
29
|
+
- **Gemini CLI** �� installs hooks so every `gemini` terminal session is visualized
|
|
30
|
+
- **Codex CLI** �� tracks `codex exec` runs through a project helper with JSON event ingestion
|
|
31
|
+
- **Open WebUI** �� proxies your mcpo endpoints to capture activity
|
|
22
32
|
|
|
23
33
|
All processing is local. No data leaves your machine except optional account sync.
|
|
24
34
|
|
|
25
35
|
## Requirements
|
|
26
36
|
|
|
27
37
|
- Node.js 18 or later
|
|
28
|
-
- Claude Desktop
|
|
38
|
+
- Claude Desktop, Claude Code CLI, Gemini CLI, or Codex CLI (for tracking)
|
|
29
39
|
|
|
30
40
|
## Setup in the dashboard
|
|
31
41
|
|
|
32
42
|
1. Run `npx agentmomo`
|
|
33
|
-
2. Open
|
|
43
|
+
2. Open `https://agentmomo.net/app`
|
|
34
44
|
3. Go to the **Setup** panel
|
|
35
|
-
4. Follow the steps for Claude Desktop
|
|
45
|
+
4. Follow the steps for Claude Desktop, Claude Code CLI, Gemini CLI, or Codex CLI
|
|
36
46
|
|
|
37
47
|
## License
|
|
38
48
|
|