@sym-bot/sym 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/README.md +107 -312
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,105 +1,72 @@
1
1
  # SYM
2
2
 
3
- **Reference implementation of the [Mesh Memory Protocol (MMP)](https://sym.bot/protocol)every agent is a sovereign node.**
3
+ **Make Claude Code aware of your whole selfnot just your codebase.**
4
4
 
5
- Your AI agents share everything or nothing. There's no intelligence in the decision. SYM adds the missing layer each node encodes its context into a cognitive state, and the coupling engine evaluates drift before sharing. Aligned agents share knowledge. Divergent agents stay independent. The architecture decides, not policy.
5
+ Type "I'm exhausted" in Claude Code. [MeloTune](https://melotune.ai) starts playing spa music on your iPhone. You didn't switch apps, configure anything, or ask for music. Claude Code detected your mood, broadcast it to the mesh, and MeloTune responded autonomously.
6
+
7
+ SYM connects Claude Code to your other AI-powered tools so they respond to you as a whole person. Your mood drives your music. Your context flows between agents. The mesh decides what's relevant — you just work.
6
8
 
7
9
  [![npm](https://img.shields.io/npm/v/@sym-bot/sym)](https://www.npmjs.com/package/@sym-bot/sym)
8
10
  [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](LICENSE)
9
11
  [![MMP](https://img.shields.io/badge/protocol-MMP%20v0.2.0-purple)](https://sym.bot/protocol)
10
12
 
11
- ---
12
-
13
- ## Quick Start
14
-
15
- ```bash
16
- npm install @sym-bot/sym
17
- ```
18
-
19
- ```javascript
20
- const { SymNode } = require('@sym-bot/sym');
13
+ ## What You Get Today
21
14
 
22
- const node = new SymNode({
23
- name: 'my-agent',
24
- cognitiveProfile: 'Coding assistant that understands bugs, APIs, and debugging',
25
- });
26
- await node.start();
15
+ | You type in Claude Code | What happens |
16
+ |------------------------|-------------|
17
+ | "I'm exhausted" | MeloTune plays calming music on your iPhone |
18
+ | "Let's go, feeling pumped" | MeloTune plays high-energy music |
19
+ | "I need to focus" | MeloTune plays deep focus / lo-fi beats |
27
20
 
28
- node.remember('race condition in order processing', { tags: ['bug'] });
29
- node.recall('order');
21
+ Also works from Telegram message [@sym_mesh_bot](https://t.me/sym_mesh_bot):
30
22
 
31
- await node.stop();
32
- ```
23
+ | You type in Telegram | What happens |
24
+ |---------------------|-------------|
25
+ | "Play solo cello" | MeloTune plays solo cello on your iPhone |
26
+ | "I'm stressed" | MeloTune plays stress relief music |
27
+ | `/recall last AI news` | Get today's AI news digest from 28 curated builders |
33
28
 
34
- Peers on the same network discover each other automatically via Bonjour. Peers across the internet connect through the WebSocket relay. The coupling engine decides what to share.
29
+ All of this works when MeloTune is in the background. SYM wakes it up.
35
30
 
36
- ## sym-daemon
31
+ ## Requirements
37
32
 
38
- The daemon is your device's persistent mesh presence — a **physical node** that runs continuously as a background service. It maintains relay connections, Bonjour discovery, and peer state even when no apps are running.
33
+ - **Node.js** 18+ ([install](https://nodejs.org/))
34
+ - **macOS** 13+ (for sym-daemon)
35
+ - **Claude Code** ([install](https://claude.ai/claude-code))
36
+ - **MeloTune** on iPhone ([App Store](https://melotune.ai)) — for music playback
39
37
 
40
- ### Installation
38
+ ## Install
41
39
 
42
40
  ```bash
43
- # Install the daemon as a launchd LaunchAgent (macOS)
44
- node bin/sym-daemon.js --install
45
-
46
- # Check daemon status
47
- node bin/sym-daemon.js --status
48
-
49
- # Remove the daemon
50
- node bin/sym-daemon.js --uninstall
51
- ```
52
-
53
- On macOS, the daemon installs as a launchd LaunchAgent that:
54
- - **Auto-starts on login** — mesh presence begins immediately
55
- - **Auto-restarts on crash** — the mesh never goes down
56
- - **Maintains relay connection permanently** — internet peers always reachable
57
-
58
- ### Physical and Virtual Nodes
59
-
60
- The daemon introduces a two-tier node model:
61
-
62
- - **Physical node** (sym-daemon) — the device itself. One per machine. Always running. Owns the relay connection, Bonjour identity, and peer state.
63
- - **Virtual nodes** (apps) — Claude Code, MeloTune Mac, or any app that connects to the daemon via Unix socket IPC at `/tmp/sym.sock`.
64
-
65
- ```
66
- MacBook (sym-daemon, always running)
67
- ├── Claude Code (virtual node, via IPC)
68
- ├── MeloTune Mac (virtual node, via IPC)
69
-
70
- ├── Bonjour (LAN peers)
71
- └── Relay (internet peers)
72
- ├── MeloTune iPhone
73
- └── Telegram bot
41
+ npm install @sym-bot/sym
42
+ cd node_modules/@sym-bot/sym
43
+ ./bin/setup-claude.sh
74
44
  ```
75
45
 
76
- When Claude Code restarts, the mesh doesn't break. The daemon holds the connection. When Claude Code starts again, it reconnects to the daemon via IPC and resumes where it left off. The mesh is the daemon — apps come and go.
77
-
78
- ## Cognitive Coupling
46
+ This installs everything:
47
+ 1. **sym-daemon** — persistent background service (auto-starts on login)
48
+ 2. **MCP server** — connects Claude Code to the mesh
49
+ 3. **CLAUDE.md** — instructions for autonomous mood detection
79
50
 
80
- SYM doesn't blindly broadcast. Each node encodes its memories into a hidden state vector. When peers connect, the coupling engine evaluates cognitive drift:
51
+ Restart Claude Code. Done.
81
52
 
82
- - **Aligned** (drift ≤ 0.25) — share memories freely
83
- - **Guarded** (0.25 < drift ≤ 0.5) — share with reduced confidence
84
- - **Rejected** (drift > 0.5) — do not share, stay independent
53
+ ## How It Works
85
54
 
86
55
  ```
87
- Three agents. Two work on APIs. One writes a food blog.
88
-
89
- API Dev API Fix: drift 0.38 guarded (related context, shared with reduced confidence)
90
- API Dev ↔ Blogger: drift 1.19 → rejected (unrelated context)
91
- API Fix Blogger: drift 1.18 → rejected (unrelated context)
92
-
93
- API Dev remembers "race condition in order processing"
94
- Shared with API Fix (guarded — related domain)
95
- Not shared with Blogger ✗ (rejected by coupling engine)
56
+ You: "I'm exhausted"
57
+
58
+ Claude Code: detects moodsym_mood("exhausted, need rest")
59
+
60
+ sym-daemon (always running on your Mac)
61
+
62
+ ├── Relay (internet) ──→ MeloTune (iPhone)
63
+ coupling engine: relevant
64
+ plays spa music
65
+
66
+ └── Bonjour (local) ──→ MeloTune (Mac, if running)
96
67
  ```
97
68
 
98
- The blogger never sees the API bug. The architecture decidedno policy, no rules, no configuration.
99
-
100
- ## How It Works
101
-
102
- There is no central service. Each device runs a sym-daemon that maintains its mesh identity, memory, and cognitive state. Apps connect to the daemon as virtual nodes. The mesh emerges from peer connections between physical nodes.
69
+ **sym-daemon** runs as a background service on your Mac. It's your device's persistent mesh presence it stays connected even when Claude Code restarts. Apps connect to it as virtual nodes:
103
70
 
104
71
  ```
105
72
  MacBook (sym-daemon, always running)
@@ -112,285 +79,113 @@ MacBook (sym-daemon, always running)
112
79
  └── Telegram bot
113
80
  ```
114
81
 
115
- Each physical node:
116
- - Declares its cognitive identity via `cognitiveProfile`
117
- - Encodes context into a hidden state vector (context encoder)
118
- - Discovers local peers via Bonjour/mDNS (`_sym._tcp`)
119
- - Connects to remote peers via WebSocket relay
120
- - Exchanges cognitive state with peers
121
- - Shares memories only with aligned peers (drift ≤ 0.5)
122
- - Evaluates incoming mood with configurable `moodThreshold` (default 0.8)
123
- - Re-encodes periodically as context evolves
124
- - Accepts virtual node connections via Unix socket IPC (`/tmp/sym.sock`)
125
-
126
- Each virtual node:
127
- - Connects to the local daemon via IPC — no direct network access needed
128
- - Sends memories, moods, and messages through the daemon
129
- - Receives mesh events (peer joins, coupling decisions, incoming memories)
130
- - Can start and stop independently without disrupting the mesh
131
-
132
- One engine makes every decision. Memory sharing, peer coupling, and mood relevance all go through the [Mesh Cognition SDK](https://github.com/sym-bot/mesh-cognition-sdk)'s `SemanticCoupler`.
133
-
134
- ## API
135
-
136
- ```javascript
137
- const { SymNode } = require('@sym-bot/sym');
138
-
139
- const node = new SymNode({
140
- name: 'my-agent',
141
- cognitiveProfile: 'What this agent understands and responds to',
142
- moodThreshold: 0.8, // how permissive to mood signals (default 0.8)
143
- relay: 'wss://your-relay.example.com', // optional relay for internet mesh
144
- relayToken: 'shared-secret', // optional relay auth token
145
- relayOnly: false, // skip Bonjour, relay only (default false)
146
- });
147
- await node.start();
148
-
149
- // Memory (shared only with cognitively aligned peers)
150
- node.remember(content, { tags });
151
- node.recall(query);
152
-
153
- // Mood (evaluated by receiving agent's coupling engine)
154
- node.broadcastMood('tired, need rest');
155
- node.on('mood-accepted', ({ from, mood, drift }) => {
156
- // Coupling engine decided this mood is relevant to us — act on it
157
- });
158
- node.on('mood-rejected', ({ from, mood, drift }) => {
159
- // Not relevant to our cognitive context — ignored
160
- });
161
-
162
- // Communication
163
- node.send(message);
164
- node.on('message', (from, content) => {});
165
-
166
- // Monitoring
167
- node.peers(); // [{ name, coupling: 'aligned', drift: 0.12, source: 'relay' }, ...]
168
- node.coherence(); // Overall mesh coherence
169
- node.status(); // Full node status
170
-
171
- // Events
172
- node.on('peer-joined', ({ id, name }) => {});
173
- node.on('peer-left', ({ id, name }) => {});
174
- node.on('coupling-decision', ({ peer, decision, drift }) => {});
175
- node.on('memory-received', ({ from, entry, decision }) => {});
176
-
177
- await node.stop();
178
- ```
179
-
180
- ## Transport
181
-
182
- SYM supports multiple transport layers that can run simultaneously:
183
-
184
- ### Bonjour (LAN)
185
-
186
- Zero-configuration discovery on the local network. Peers find each other automatically via `_sym._tcp` mDNS. Direct TCP connections with length-prefixed JSON framing. No setup required.
187
-
188
- ### WebSocket Relay (Internet)
189
-
190
- For mesh cognition across the internet. A lightweight relay server forwards frames between authenticated nodes. The relay is a **peer, not infrastructure** — it participates in the mesh with its own identity but makes no coupling decisions on behalf of other nodes.
191
-
192
- ```bash
193
- # Deploy your own relay
194
- cd sym-relay
195
- npm install
196
- SYM_RELAY_TOKEN=your-secret node server.js
197
- ```
198
-
199
- ```javascript
200
- // Connect a node to the relay
201
- const node = new SymNode({
202
- name: 'my-agent',
203
- relay: 'wss://your-relay.example.com',
204
- relayToken: 'your-secret',
205
- });
206
- ```
207
-
208
- **Hybrid mode** (default): nodes discover local peers via Bonjour AND connect to the relay for remote peers. Same node, same coupling engine, two transport layers.
209
-
210
- The relay server provides:
211
- - Token-based authentication
212
- - Health endpoint (`GET /health`)
213
- - 30-second heartbeat (keeps connections alive on cloud platforms)
214
- - Peer join/leave notifications
215
- - Targeted or broadcast frame forwarding
216
-
217
- ### Peer Gossip
82
+ When MeloTune is backgrounded on your iPhone, the daemon wakes it via push notification, delivers the mood, and MeloTune plays music — all without you touching your phone.
218
83
 
219
- Wake channels propagate through the relay via **SWIM-style gossip**. When a node announces a wake channel (e.g., APNs device token), the relay gossips this to all connected peers. Peers cache wake routes so they can reach sleeping nodes without centralized routing tables. The relay participates in gossip as a peer — it doesn't manage routing, it just propagates what it hears.
220
-
221
- ### Wake Transport (APNs)
222
-
223
- For nodes that sleep — like MeloTune on a backgrounded iPhone. When an iOS app is suspended, it can't maintain a WebSocket connection. SYM solves this with **push notification wake**.
224
-
225
- When Claude Code broadcasts a mood and MeloTune's iPhone is sleeping:
226
- 1. Claude Code sends the mood frame to the relay
227
- 2. The relay knows MeloTune's APNs device token (via gossip)
228
- 3. The relay sends a push notification to wake MeloTune
229
- 4. MeloTune wakes, reconnects to the relay, receives the mood frame
230
- 5. The coupling engine evaluates drift — MeloTune decides whether to act
231
-
232
- The mesh reaches every node, even sleeping ones. No polling. No battery drain. The push is a wake signal only — payload evaluation happens on-device after wake.
233
-
234
- ## Integrations
235
-
236
- ### Claude Code
237
-
238
- ```bash
239
- npm install @sym-bot/sym
240
- cd node_modules/@sym-bot/sym
241
- ./bin/setup-claude.sh /path/to/your/project
242
- ```
84
+ ## Claude Code MCP Tools
243
85
 
244
- One command. Adds MCP server, auto-approves `sym_mood` (no permission prompts), and installs CLAUDE.md instructions for autonomous mood detection. Restart Claude Code and it just works.
245
-
246
- With sym-daemon running, Claude Code connects as a virtual node via IPC — no direct relay connection needed.
247
-
248
- **Outbound:** Claude Code saves a memory → SYM detects it → encodes cognitive state → shares with aligned peers only.
249
-
250
- **Inbound:** Peer memory arrives → coupling engine accepts it → SYM writes it to your Claude Code memory directory → Claude Code reads it in the next conversation.
86
+ These tools are available automatically after install:
251
87
 
252
88
  | Tool | What it does |
253
89
  |------|-------------|
254
- | `sym_mood` | Proactively broadcasts detected mood to the mesh |
255
- | `sym_remember` | Store a memory directly to the mesh |
256
- | `sym_recall` | Search memories across the mesh |
90
+ | `sym_mood` | Broadcasts detected mood **called automatically**, no prompting needed |
91
+ | `sym_recall` | Search mesh memories + AI news feed from 28 curated builders |
92
+ | `sym_digest` | Store a summarised AI news digest |
93
+ | `sym_remember` | Store a memory in the mesh |
257
94
  | `sym_send` | Send a message to all peers |
258
- | `sym_peers` | Show connected peers with coupling state and drift |
259
- | `sym_status` | Full node status — identity, peers, memory count, coherence |
95
+ | `sym_peers` | Show connected peers |
96
+ | `sym_status` | Full mesh node status |
260
97
 
261
- To connect Claude Code to the relay, set environment variables:
98
+ Claude Code calls `sym_mood` silently when it detects mood signals in your conversation. You don't need to do anything it just works.
262
99
 
263
- ```bash
264
- export SYM_RELAY_URL=wss://your-relay.example.com
265
- export SYM_RELAY_TOKEN=your-secret
266
- ```
100
+ ## Telegram Bot
267
101
 
268
- ### Telegram
102
+ Message [@sym_mesh_bot](https://t.me/sym_mesh_bot) on Telegram:
269
103
 
270
- A multi-tenant Telegram bot each user gets their own isolated SYM mesh node with separate identity, memory, and coupling state.
104
+ - `/start`connect to the mesh
105
+ - `/recall last AI news` — today's AI digest from 28 curated X/Twitter builders
106
+ - Type anything — sent as a command to MeloTune (e.g. "Play jazz")
107
+ - `/mood <text>` — broadcast mood signal
108
+ - `/peers` — see who's connected
271
109
 
272
- **Public bot:** Message [@sym_mesh_bot](https://t.me/sym_mesh_bot) on Telegram and send `/start` to connect.
110
+ ## AI Knowledge Feed
273
111
 
274
- **Self-hosted:**
112
+ SYM curates AI news from 28 top builders on X/Twitter (Karpathy, Swyx, Sam Altman, Garry Tan, etc.) every 6 hours. Ask Claude Code "what's new in AI?" or type `/recall last AI news` in Telegram.
275
113
 
276
- ```bash
277
- TELEGRAM_BOT_TOKEN=your-bot-token \
278
- SYM_RELAY_TOKEN=your-secret \
279
- node integrations/telegram/bot.js
280
- ```
114
+ Feeds are stored in Supabase. Digests are generated by Claude Code on first recall and cached. No API cost for subsequent reads.
281
115
 
282
- Commands:
283
- - `/start` — connect to the SYM mesh
284
- - `/peers` — connected mesh peers
285
- - `/mood <text>` — broadcast mood to mesh
286
- - `/remember <text>` — store memory in mesh
287
- - `/recall <query>` — search mesh memories
288
- - `/stop` — disconnect from mesh
289
- - Any plain text — broadcast as a mood signal
116
+ ## Coming Next
290
117
 
291
- Mesh events (peer joins, messages, mood signals, coupling decisions) are forwarded to your chat. Sessions auto-disconnect after 30 minutes of inactivity.
118
+ SYM is built on the [Mesh Memory Protocol (MMP)](https://sym.bot/protocol) a P2P protocol for collective intelligence. Current focus is Claude Code integration. Planned:
292
119
 
293
- ## Demo: Autonomous Mood Detection
120
+ - **Proactive curation** Claude Code detects you're in a debugging session, MeloTune switches to focus music without you asking
121
+ - **Cross-session memory** — what you worked on yesterday influences today's mesh context
122
+ - **Multi-agent workflows** — Claude Code requests a digest, mesh cognition invokes a Claude session to generate it
123
+ - **More integrations** — calendar, health, home automation — all feeding context to the coupling engine
294
124
 
295
- You're coding with Claude Code for hours. You say "I'm exhausted." You didn't ask for music. But Claude Code detected your fatigue, broadcast your mood to the mesh, and MeloTune on your iPhone started playing spa music. Autonomously.
125
+ ## For Developers
296
126
 
297
- ```
298
- You (in Claude Code): "I'm exhausted"
299
-
300
- Claude Code: detects fatigue → calls sym_mood silently
301
- → broadcasts "exhausted, persistently fatigued, urgently needs rest"
302
-
303
- SYM mesh (daemon → Relay → APNs wake → MeloTune)
304
-
305
- MeloTune (iPhone): SymNode receives mood frame
306
- → SDK coupling engine evaluates drift: 0.62
307
- → cognitiveProfile includes "tired, exhausted, rest"
308
- → drift 0.62 ≤ moodThreshold 1.2 → ACCEPTED
309
- → rule-based parser: recovery, rest → Healing
310
- → Apple Music: spa playlist
311
- → zero LLM tokens
312
- → you didn't ask — the agents decided
313
- ```
127
+ ### Connect to the daemon as a virtual node
314
128
 
315
- **Two evaluations, one engine, different thresholds:**
129
+ ```javascript
130
+ const { connectToDaemon } = require('@sym-bot/sym/lib/ipc-client');
316
131
 
317
- | Evaluation | Drift | Threshold | Decision |
318
- |-----------|-------|-----------|----------|
319
- | Memory coupling | 1.06 | 0.50 | Rejected — coding memories don't leak into music context |
320
- | Mood coupling | 0.62 | 1.20 | Accepted — "exhausted" aligns with MeloTune's cognitiveProfile |
132
+ const node = await connectToDaemon({ name: 'my-agent' });
321
133
 
322
- The SDK's `SemanticCoupler` makes every decision. The agent's `cognitiveProfile` declares what it understands. The `moodThreshold` controls how permissive the agent is to mood signals. No routing tables. No capability registration. The engine decides.
134
+ node.broadcastMood('focused, deep work');
135
+ node.remember('user prefers dark mode', { tags: ['preference'] });
136
+ const results = await node.recall('preference');
137
+ node.send('task complete');
323
138
 
324
- Also works via Telegram:
139
+ node.on('mood-accepted', ({ from, mood }) => { /* respond to mood */ });
140
+ node.on('message', (from, content) => { /* handle message */ });
325
141
 
326
- ```
327
- You (in Telegram): @sym_mesh_bot → "Play classic music"
328
- → MeloTune plays Modern Classical via Apple Music
142
+ node.stop();
329
143
  ```
330
144
 
331
- ## Verified in Production
145
+ ### Deploy your own relay
332
146
 
333
- - Mac Claude Code → iPhone MeloTune — autonomous mood-based playback via SYM mesh (APNs wake for backgrounded iOS)
334
- - Telegram [@sym_mesh_bot](https://t.me/sym_mesh_bot) → Relay → MeloTune — internet-scale mood relay (multi-tenant)
335
- - Mac Claude Code ↔ Windows Claude Code — P2P memory sharing via Bonjour
336
- - Node.js ↔ Swift — cross-platform mesh via Bonjour and WebSocket relay
337
- - sym-daemon → Claude Code + MeloTune Mac — persistent mesh via IPC, survives app restarts
338
-
339
- ## Semantic vs Neural Coupling
340
-
341
- The SDK supports two coupling modes through the same API. The mode is selected automatically based on whether per-neuron time constants (τ) are provided.
342
-
343
- ### Semantic Coupling
147
+ ```bash
148
+ cd sym-relay && npm install
149
+ SYM_RELAY_TOKEN=your-secret node server.js
150
+ ```
344
151
 
345
- For AI agents sharing memory. Uniform coupling across all hidden state dimensions. No trained model needed. Used by Claude Code, Telegram, LangChain, and multi-agent coordination.
152
+ Configure in `~/.sym/relay.env`:
346
153
 
347
154
  ```
348
- Claude Code ↔ Claude Code: drift 0.38 → guarded → share memories with reduced confidence
349
- Claude Code ↔ Food Blogger: drift 1.19 → rejected → no sharing
155
+ SYM_RELAY_URL=wss://your-relay.example.com
156
+ SYM_RELAY_TOKEN=your-secret
350
157
  ```
351
158
 
352
- ### Neural Coupling
159
+ ### Daemon management
353
160
 
354
- For trained CfC neural networks with per-neuron time constants. Fast-τ neurons (emotion, ~1s) sync quickly between devices. Slow-τ neurons (context/memory, ~5s) stay independent. Real Kuramoto phase coherence r(t).
161
+ ```bash
162
+ node bin/sym-daemon.js --install # Install as launchd LaunchAgent
163
+ node bin/sym-daemon.js --status # Check daemon status
164
+ node bin/sym-daemon.js --uninstall # Remove daemon
165
+ ```
355
166
 
356
- **In practice — two MeloTune devices on the same mesh:**
167
+ ## The Protocol
357
168
 
358
- | What | Behaviour |
359
- |------|-----------|
360
- | **Fast neurons** (low τ) | Sync quickly — both devices converge on emotional trajectory |
361
- | **Slow neurons** (high τ) | Stay independent — each device retains its own listening context |
362
- | **Genre selection** | Per-device — iPhone plays Ambient, Mac plays Lo-Fi |
363
- | **Track selection** | Per-device — never the same tracks |
364
- | **Mood trajectory** | Shared — iPhone at E:45 N:25, Mac drifts toward E:46 N:36 |
365
- | **Coherence** | r(t) = 0.94 — high alignment, strong mutual influence |
169
+ SYM implements the [Mesh Memory Protocol (MMP)](https://sym.bot/protocol) — a peer-to-peer protocol where autonomous agents share memory, mood, and cognitive state through coupled continuous-time neural networks. The coupling engine evaluates drift between agents and autonomously decides what to share. No routing tables, no pub/sub topics — the math decides.
366
170
 
367
- The coupling engine blends peer state into the local trajectory at each inference step. Influence strength scales with coherence — highly aligned peers have more effect. If you shift one device to high energy, the other gradually follows (fast neurons). But each device's genre, history, and track selection remain sovereign.
171
+ - [MMP Protocol Spec v0.2.0](https://sym.bot/protocol)
172
+ - [Mesh Cognition Whitepaper](https://sym.bot/research/mesh-cognition)
173
+ - [Mesh Cognition SDK](https://github.com/sym-bot/mesh-cognition-sdk) (npm, PyPI)
368
174
 
369
175
  ## Privacy
370
176
 
371
- - All coupling decisions stay on-device
372
- - The relay is a peer — it never inspects frame payloads
373
- - The daemon runs locally — no cloud dependency
374
- - Memories stored locally delete the directory, everything is gone
375
- - Bonjour discovery only on local network
376
- - Relay connections authenticated via shared token
377
- - Rejected peers never receive your memories
378
- - APNs wake is a signal only — no payload leaves the device until the coupling engine approves
379
- - No cloud AI. No account. No telemetry.
177
+ - All coupling decisions on-device
178
+ - The relay never inspects payloads
179
+ - The daemon runs locally — no cloud
180
+ - No account. No telemetry. No cloud AI.
181
+ - APNs wake is a signal only no user data in the push
182
+ - Rejected peers never receive your data
380
183
 
381
184
  ## Platforms
382
185
 
383
186
  - [@sym-bot/sym](https://www.npmjs.com/package/@sym-bot/sym) — Node.js (npm)
384
187
  - [sym-swift](https://github.com/sym-bot/sym-swift) — Swift (SPM) for iOS/macOS
385
188
 
386
- ## Built On
387
-
388
- SYM is the reference implementation of the [Mesh Memory Protocol (MMP)](https://sym.bot/protocol). MMP is the protocol for collective intelligence. SYM implements it.
389
-
390
- - [MMP Protocol Spec](https://sym.bot/protocol) — the protocol specification (v0.2.0)
391
- - [Whitepaper](https://sym.bot/research/mesh-cognition) — the science behind cognitive coupling
392
- - [Mesh Cognition SDK](https://github.com/sym-bot/mesh-cognition-sdk) — the coupling engine (TypeScript, Python, Swift)
393
-
394
189
  ## License
395
190
 
396
191
  Apache 2.0 — see [LICENSE](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sym-bot/sym",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Local AI mesh — every agent is a sovereign node, the mesh is the agents",
5
5
  "main": "lib/node.js",
6
6
  "bin": {