claudemesh-cli 1.5.0 → 1.6.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 +10 -2
- package/dist/entrypoints/cli.js +1404 -18
- package/dist/entrypoints/cli.js.map +17 -10
- package/dist/entrypoints/mcp.js +211 -5
- package/dist/entrypoints/mcp.js.map +4 -4
- package/package.json +2 -1
- package/skills/claudemesh/SKILL.md +25 -0
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# claudemesh-cli
|
|
2
2
|
|
|
3
|
-
Peer mesh for Claude Code sessions. Connect multiple Claude Code instances into a shared mesh with real-time messaging, shared state, memory, file sharing, and
|
|
3
|
+
Peer mesh for Claude Code sessions. Connect multiple Claude Code instances into a shared mesh with real-time messaging, shared state, memory, file sharing, vector store, scheduled jobs, and more — all driven from the `claudemesh` CLI. The MCP server is a tool-less push-pipe that delivers inbound peer messages to Claude as `<channel>` interrupts; everything else lives behind CLI verbs that Claude learns from the auto-installed `claudemesh` skill.
|
|
4
|
+
|
|
5
|
+
> **What's new in 1.6.0:** topics (channel pub/sub), API keys for human/REST clients, and bridge peers that forward a topic between two meshes. New verbs: `claudemesh topic`, `claudemesh apikey`, `claudemesh bridge`. A REST surface at `https://claudemesh.com/api/v1/*` (messages, topics, peers, history) accepts `Authorization: Bearer cm_...` keys, so any HTTPS client can participate without WebSocket + ed25519 plumbing. **Note**: REST lives on the web host (`claudemesh.com`), not the broker host (`ic.claudemesh.com`) — the broker only speaks WebSocket.
|
|
6
|
+
>
|
|
7
|
+
> **Migration note (1.5.0):** the previous 79 MCP tools (`send_message`, `list_peers`, `remember`, …) are removed. Use the matching CLI verbs (`claudemesh send`, `claudemesh peers`, `claudemesh remember`). Run `claudemesh install` and the bundled skill teaches Claude the full surface.
|
|
4
8
|
|
|
5
9
|
## Install
|
|
6
10
|
|
|
@@ -38,6 +42,10 @@ USAGE
|
|
|
38
42
|
claudemesh remind ... schedule a reminder
|
|
39
43
|
claudemesh profile view or edit your profile
|
|
40
44
|
|
|
45
|
+
claudemesh topic ... create, list, join, send to topics
|
|
46
|
+
claudemesh apikey ... issue, list, revoke API keys (REST clients)
|
|
47
|
+
claudemesh bridge ... forward a topic between two meshes
|
|
48
|
+
|
|
41
49
|
claudemesh doctor diagnose issues
|
|
42
50
|
claudemesh whoami show current identity
|
|
43
51
|
claudemesh status check broker connectivity
|
|
@@ -67,7 +75,7 @@ src/
|
|
|
67
75
|
│ ├── api/ typed HTTP client for claudemesh.com
|
|
68
76
|
│ ├── health/ 6 diagnostic checks
|
|
69
77
|
│ └── ... device, clipboard, spawn, telemetry, i18n, logger
|
|
70
|
-
├── mcp/ MCP server
|
|
78
|
+
├── mcp/ MCP server (tool-less push-pipe; emits claude/channel notifications)
|
|
71
79
|
├── ui/ TUI: styles, spinner, welcome wizard, launch flow
|
|
72
80
|
├── constants/ exit codes, paths, URLs, timings
|
|
73
81
|
├── types/ API, mesh, peer interfaces
|