@sleep2agi/agent-network 2.2.10 → 2.2.11-preview.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 +11 -6
- package/dist/bin/cli.js +1 -1
- package/dist/src/client.js +1 -1
- package/dist/src/node-server.js +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Agent Network (`anet`)
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@sleep2agi/agent-network)
|
|
4
|
+
[](https://www.npmjs.com/package/@sleep2agi/agent-network)
|
|
5
|
+
[](https://github.com/sleep2agi/agent-network/blob/main/LICENSE)
|
|
6
|
+
[](https://anet.sh)
|
|
7
|
+
|
|
3
8
|
Run a local network of AI agents from one CLI.
|
|
4
9
|
|
|
5
10
|
`anet` starts a CommHub, launches the web dashboard, creates agent nodes, and lets those nodes talk to each other through MCP tools such as `send_task`, `get_task`, and `get_all_status`.
|
|
@@ -44,14 +49,14 @@ npm install -g @sleep2agi/agent-network@preview
|
|
|
44
49
|
anet -v
|
|
45
50
|
```
|
|
46
51
|
|
|
47
|
-
Current npm dist-tags verified on 2026-05-28:
|
|
52
|
+
Current npm dist-tags verified on 2026-05-28 (v0.10.11 stable):
|
|
48
53
|
|
|
49
54
|
| Package | latest | preview |
|
|
50
55
|
|---|---:|---:|
|
|
51
|
-
| `@sleep2agi/agent-network` | `2.2.
|
|
52
|
-
| `@sleep2agi/commhub-server` | `0.8.
|
|
56
|
+
| `@sleep2agi/agent-network` | `2.2.10` | `2.2.10-preview.3` |
|
|
57
|
+
| `@sleep2agi/commhub-server` | `0.8.4` | `0.8.4-preview.1` |
|
|
53
58
|
| `@sleep2agi/agent-network-dashboard` | `0.5.6` | `0.5.7-preview.2` |
|
|
54
|
-
| `@sleep2agi/agent-node` | `2.4.
|
|
59
|
+
| `@sleep2agi/agent-node` | `2.4.7` | `2.4.8-preview.0` |
|
|
55
60
|
|
|
56
61
|
## 5-Minute Quick Start
|
|
57
62
|
|
|
@@ -94,7 +99,7 @@ anet node start my-bot
|
|
|
94
99
|
`anet node create` walks you through:
|
|
95
100
|
|
|
96
101
|
1. Runtime: `claude-code-cli`, `claude-agent-sdk`, `codex-sdk`, or `grok-build-acp`.
|
|
97
|
-
2. Provider preset: Anthropic, MiniMax,
|
|
102
|
+
2. Provider preset: Anthropic, MiniMax, InternLM, Xiaomi MiMo, or `custom` (any Anthropic-compatible endpoint — used for DeepSeek / GLM / Kimi / OpenRouter etc.; codex-sdk for OpenAI Codex; grok-build-acp for xAI Grok).
|
|
98
103
|
3. API key and model settings.
|
|
99
104
|
|
|
100
105
|
When the node starts successfully, look for:
|
|
@@ -311,7 +316,7 @@ Do not commit `.anet/` or provider API keys.
|
|
|
311
316
|
|
|
312
317
|
Stable day-to-day path:
|
|
313
318
|
|
|
314
|
-
- `anet hub start`
|
|
319
|
+
- `anet hub start` / `anet hub stop` / `anet hub status` (v0.10.11+: SIGTERM → 3s grace → SIGKILL stop; status shows PID + port + `/health` version — no more manual `lsof+kill`)
|
|
315
320
|
- `anet hub dashboard`
|
|
316
321
|
- `anet login`
|
|
317
322
|
- `anet node create/start/stop/delete/rename`
|