@cryptiklemur/lattice 1.28.0 → 1.28.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 +35 -5
- package/package.json +1 -1
- package/server/src/mesh/discovery.ts +3 -1
package/README.md
CHANGED
|
@@ -23,20 +23,32 @@
|
|
|
23
23
|
## Quick Start
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
|
|
26
|
+
curl -fsSL https://raw.githubusercontent.com/cryptiklemur/lattice/main/install.sh | bash
|
|
27
27
|
lattice
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
Opens at `http://localhost:7654`.
|
|
30
|
+
Opens at `http://localhost:7654`. No runtime dependencies — the binary includes everything.
|
|
31
31
|
|
|
32
32
|
<details>
|
|
33
|
-
<summary>
|
|
33
|
+
<summary>Other install methods</summary>
|
|
34
|
+
|
|
35
|
+
**Custom install directory:**
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
LATTICE_INSTALL_DIR=~/.local/bin curl -fsSL https://raw.githubusercontent.com/cryptiklemur/lattice/main/install.sh | bash
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
**Via npm** (requires [Bun](https://bun.sh)):
|
|
34
42
|
|
|
35
43
|
```bash
|
|
36
44
|
bun install -g @cryptiklemur/lattice
|
|
37
45
|
lattice
|
|
38
46
|
```
|
|
39
47
|
|
|
48
|
+
**Manual download:**
|
|
49
|
+
|
|
50
|
+
Download the binary for your platform from [GitHub Releases](https://github.com/cryptiklemur/lattice/releases), `chmod +x`, and run it.
|
|
51
|
+
|
|
40
52
|
</details>
|
|
41
53
|
|
|
42
54
|
<details>
|
|
@@ -53,6 +65,17 @@ Hot-reloads both server and client automatically.
|
|
|
53
65
|
|
|
54
66
|
</details>
|
|
55
67
|
|
|
68
|
+
<details>
|
|
69
|
+
<summary>Updating</summary>
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
lattice update
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
The server also checks for updates automatically and shows a banner in the UI when a new version is available.
|
|
76
|
+
|
|
77
|
+
</details>
|
|
78
|
+
|
|
56
79
|
---
|
|
57
80
|
|
|
58
81
|
## Features
|
|
@@ -83,12 +106,17 @@ Press `?` for keyboard shortcuts, `Ctrl+K` for the command palette.
|
|
|
83
106
|
|
|
84
107
|

|
|
85
108
|
|
|
109
|
+
### Plugin Management
|
|
110
|
+
|
|
111
|
+
Install, update, and remove Claude Code plugins from the UI. Browse all plugins across registered marketplaces sorted by popularity, view details (skills, hooks, rules, author info), and enable/disable plugins per project.
|
|
112
|
+
|
|
86
113
|
### Infrastructure
|
|
87
114
|
|
|
88
115
|
- **Mesh networking** — Connect multiple machines with automatic discovery and session proxying
|
|
89
116
|
- **MCP servers** — Add, edit, and remove at global or project level
|
|
90
|
-
- **
|
|
117
|
+
- **Plugins & skills** — Browse marketplaces, install plugins, manage per-project
|
|
91
118
|
- **Memory management** — View and edit Claude's project memories
|
|
119
|
+
- **Self-updating** — Automatic update checks with in-app banner and `lattice update` CLI
|
|
92
120
|
|
|
93
121
|
### Mobile
|
|
94
122
|
|
|
@@ -100,7 +128,7 @@ Responsive design with touch targets, swipe-to-open sidebar, and optimized layou
|
|
|
100
128
|
|
|
101
129
|
## Architecture
|
|
102
130
|
|
|
103
|
-
Bun monorepo with three packages
|
|
131
|
+
Bun monorepo with three packages, compiled into a standalone binary via `bun build --compile`:
|
|
104
132
|
|
|
105
133
|
| Package | Stack |
|
|
106
134
|
|---------|-------|
|
|
@@ -108,6 +136,8 @@ Bun monorepo with three packages:
|
|
|
108
136
|
| `server/` | Bun WebSocket server, analytics engine, mesh networking |
|
|
109
137
|
| `client/` | React 19, Vite, Tailwind, daisyUI, 23 themes |
|
|
110
138
|
|
|
139
|
+
The client is built by Vite, then embedded into the server binary as base64-encoded assets. The result is a single executable with zero runtime dependencies.
|
|
140
|
+
|
|
111
141
|
Communication via typed WebSocket messages. Sessions managed through the [Claude Agent SDK](https://github.com/anthropics/claude-agent-sdk). Client state via Tanstack Store + Router.
|
|
112
142
|
|
|
113
143
|
### Security
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptiklemur/lattice",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.1",
|
|
4
4
|
"description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Aaron Scherer <me@aaronscherer.me>",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import BonjourImport from "bonjour-service";
|
|
2
2
|
import type { Service, Browser } from "bonjour-service";
|
|
3
3
|
|
|
4
|
+
var Bonjour = (typeof BonjourImport === "function" ? BonjourImport : (BonjourImport as any).default) as typeof BonjourImport;
|
|
5
|
+
|
|
4
6
|
export interface DiscoveredNode {
|
|
5
7
|
nodeId: string;
|
|
6
8
|
name: string;
|