fivocell 8.12.23 → 8.12.24

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 CHANGED
@@ -22,8 +22,8 @@
22
22
 
23
23
  <p>
24
24
  <a href="#-quick-start">Quick Start</a> &nbsp;·&nbsp;
25
- <a href="#-features">Features</a> &nbsp;·&nbsp;
26
- <a href="#-comparison">Comparison</a> &nbsp;·&nbsp;
25
+ <a href="#-what-happens-over-time">What Happens Over Time</a> &nbsp;·&nbsp;
26
+ <a href="#-features--benefits">Features</a> &nbsp;·&nbsp;
27
27
  <a href="#-architecture">Architecture</a> &nbsp;·&nbsp;
28
28
  <a href="#-supported-tools">Supported Tools</a> &nbsp;·&nbsp;
29
29
  <a href="#-contribute">Contribute</a>
@@ -36,18 +36,29 @@
36
36
 
37
37
  Every time you talk to an AI coding tool, it starts from **zero**. You re-explain your project, your stack, your style, and what you decided yesterday. Switch from Cursor to Claude Code? Start over. New chat? Start over. New day? Start over.
38
38
 
39
- **FivoCell fixes this.** It is a small program that runs quietly on your computer and acts as a **permanent brain** for all your AI tools. Once running, any AI tool instantly knows:
39
+ **FivoCell fixes this.** It runs quietly on your machine as a local daemon and acts as a **permanent brain** for all your AI tools. The moment it's installed, any AI tool knows:
40
40
 
41
41
  <div align="center">
42
42
  <table>
43
- <tr><td>🧠 <strong>Your project</strong></td><td>stack, framework, structure</td></tr>
44
- <tr><td>✍️ <strong>Your style</strong></td><td>naming, functions, error handling</td></tr>
45
- <tr><td>📜 <strong>Your decisions</strong></td><td>"we chose SQLite because..."</td></tr>
46
- <tr><td>⚠️ <strong>Your blind spots</strong></td><td>risky spots scanned automatically</td></tr>
43
+ <tr><td>🧠 <strong>Your project</strong></td><td>stack, framework, structure, architecture</td></tr>
44
+ <tr><td>✍️ <strong>Your style</strong></td><td>naming, functions, error handling patterns</td></tr>
45
+ <tr><td>📜 <strong>Your decisions</strong></td><td>"we chose SQLite because...", "we rejected X"</td></tr>
46
+ <tr><td>⚠️ <strong>Your blind spots</strong></td><td>risky spots scanned automatically across your codebase</td></tr>
47
47
  <tr><td>🔁 <strong>Your history</strong></td><td>what you did last session, what comes next</td></tr>
48
48
  </table>
49
49
  </div>
50
50
 
51
+ **Real output example — what Cell tells you on first scan:**
52
+
53
+ ```
54
+ ✅ Scanned your project
55
+ ⚠️ 98 files have try/catch missing on async functions
56
+ ⚠️ 43 files have console.log left behind
57
+ ⚠️ null safety issues detected in core modules
58
+ 🧠 Your vibe: "Bilingual communicator, strategic auditor, ships fast"
59
+ 🔮 Predicted next session: auth module needs error handling pass
60
+ ```
61
+
51
62
  > **AI tools write code. FivoCell remembers everything else.**
52
63
 
53
64
  <div align="center"><strong>100% local. Private by default. Works offline. No sign-up needed.</strong></div>
@@ -81,7 +92,7 @@ Every time you talk to an AI coding tool, it starts from **zero**. You re-explai
81
92
  <tr>
82
93
  <td><strong>Risks and blind spots</strong></td>
83
94
  <td>Hope the AI notices</td>
84
- <td>all blind spots scanned for you</td>
95
+ <td>Scanned automatically, category-wise</td>
85
96
  </tr>
86
97
  <tr>
87
98
  <td><strong>Switching tools</strong></td>
@@ -90,8 +101,8 @@ Every time you talk to an AI coding tool, it starts from **zero**. You re-explai
90
101
  </tr>
91
102
  <tr>
92
103
  <td><strong>Who you are</strong></td>
93
- <td>Generic responses</td>
94
- <td>Learns your personality (100 signals)</td>
104
+ <td>Generic responses every time</td>
105
+ <td>Learns your personality across sessions</td>
95
106
  </tr>
96
107
  <tr>
97
108
  <td><strong>Privacy</strong></td>
@@ -107,7 +118,7 @@ Every time you talk to an AI coding tool, it starts from **zero**. You re-explai
107
118
  Codex ───────────┤ │ FIVO CELL │
108
119
  Antigravity ─────┼────────────────>│ Memory Layer │
109
120
  Windsurf ────────┤ │ Daemon :9876 │
110
- OpenCode ────────┤ │ 67 MCP Tools
121
+ OpenCode ────────┤ │ MCP Tools
111
122
  Any MCP tool ────┘ └──────────┬──────────┘
112
123
 
113
124
  ┌──────────────────┴──────────────────┐
@@ -125,15 +136,27 @@ Every time you talk to an AI coding tool, it starts from **zero**. You re-explai
125
136
  ## ⚡ Quick Start
126
137
 
127
138
  ```bash
128
- # 1. Install (one time)
129
- npm i -g fivocell
139
+ # Step 1 Install (one time)
140
+ npm install -g fivocell
130
141
 
131
- # 2. Go to your project
142
+ # Step 2 Go to your project and run
132
143
  cd your-project
133
- cell run # setup + scan + start daemon, all at once
144
+ cell run
145
+ ```
146
+
147
+ `cell run` is a single command that does everything:
148
+
149
+ ```
150
+ [1/7] ✅ Setup complete — .cell/ folder created
151
+ [2/7] 🔍 Scanning codebase — files, stack, style, blind spots
152
+ [3/7] ⚠️ Blind spots found — null safety, error handling, console.log
153
+ [4/7] 🧠 Vibe engine started — learning your patterns
154
+ [5/7] 📄 AGENTS.md created — AI tools now know who you are
155
+ [6/7] 🚀 Daemon started on :9876 — MCP tools ready
156
+ [7/7] 👁️ Watcher started — file saves will be tracked
134
157
  ```
135
158
 
136
- Open **any** AI tool (Cursor, Claude Code, Windsurf) and type:
159
+ Then open **any** AI tool (Cursor, Claude Code, Windsurf) and type:
137
160
 
138
161
  ```
139
162
  @cell how should I add auth to this app?
@@ -142,45 +165,100 @@ Open **any** AI tool (Cursor, Claude Code, Windsurf) and type:
142
165
  The AI replies with **full context** — your stack, style, decisions, and blind spots — without you explaining anything. ✨
143
166
 
144
167
  ```bash
145
- cell status # check it's running
168
+ cell status # check daemon + project health
146
169
  cell context # see exactly what the AI sees
147
170
  cell vibe # see your developer personality
148
171
  ```
149
172
 
150
173
  ---
151
174
 
152
- ## 🚀 Features
175
+ ## 📅 What Happens Over Time
176
+
177
+ ### Day 1 — After `cell run`
178
+
179
+ | Step | What Happens |
180
+ |:----:|--------------|
181
+ | 1 | `npm install -g fivocell` — installed globally |
182
+ | 2 | `cell run` — setup + scan + daemon start in one command |
183
+ | 3 | Code scan runs — files analyzed, blind spots found (null safety, error handling, console.log etc.) |
184
+ | 4 | `.cell/` folder created — vibe, context, INDEX, bridge files |
185
+ | 5 | `AGENTS.md` created at project root — tells every AI tool what `@cell` is |
186
+ | 6 | Daemon starts on `:9876` — all MCP tools are ready |
187
+ | 7 | File watcher starts — every save will be tracked from now on |
188
+
189
+ **You'll see something like:**
190
+ ```
191
+ ⚠️ 98 files: try/catch missing on async functions
192
+ ⚠️ 43 files: console.log not removed
193
+ null_safety: high priority
194
+ error_handling: high priority
195
+ ```
196
+
197
+ ---
198
+
199
+ ### First 7 Days — Cell Learns You
200
+
201
+ | Event | What Happens |
202
+ |:-----:|--------------|
203
+ | 8 | Type `@cell` in any editor → instant context injected, no explaining |
204
+ | 9 | Vibe signals detected — "Bilingual communicator, strategic auditor, pragmatic shipper" |
205
+ | 10 | Watcher records events — every file save, every git commit tracked |
206
+ | 11 | Smart triggers: 5 saves in 60 sec → predictions automatically refreshed |
207
+ | 12 | Run `cell scan` → code analysis updated with new blind spots |
208
+ | 13 | Cross-editor memory — end session in Cursor → open Claude Code → bridge is already there |
209
+ | 14 | Session bridge captured — files touched, decisions made, what failed, what worked |
210
+
211
+ ---
212
+
213
+ ### First 30 Days — Cell Knows You
214
+
215
+ | Event | What Happens |
216
+ |:-----:|--------------|
217
+ | 15 | Vibe stabilizes — high-confidence personality profile solidified |
218
+ | 16 | Cross-project profile — `~/.fivo/cell/projects/` tracks data across all your repos |
219
+ | 17 | Global vibe merged — one identity across all your projects |
220
+ | 18 | Predictions get accurate — "this file will be opened", "this error will recur" |
221
+ | 19 | Model intelligence — tracks which AI tool has highest code acceptance rate for you |
222
+ | 20 | Memory compaction — events older than 90 days auto-archived |
223
+ | 21 | User-profile.md generated — your skills, blind spots, journey documented |
224
+ | 22 | Neural handoff — every session end saves bridge + continuity for seamless next start |
225
+
226
+ ---
227
+
228
+ ## 🚀 Features & Benefits
153
229
 
154
230
  ### ⚙️ Core Commands
155
231
 
156
232
  <div align="center">
157
233
  <table>
158
234
  <tr><th>Command</th><th>What it does</th><th>Category</th></tr>
159
- <tr><td><code>cell run</code></td><td>Setup + scan + start, everything in one command</td><td>Setup</td></tr>
235
+ <tr><td><code>cell run</code></td><td>Setup + scan + start everything in one command</td><td>Setup</td></tr>
160
236
  <tr><td><code>cell scan</code></td><td>Analyze codebase: stack, style, patterns, blind spots</td><td>Analysis</td></tr>
161
237
  <tr><td><code>cell status</code></td><td>Daemon + project + database health at a glance</td><td>Monitor</td></tr>
162
238
  <tr><td><code>cell start</code> / <code>cell stop</code></td><td>Turn the background memory daemon on or off</td><td>Daemon</td></tr>
163
239
  <tr><td><code>cell sync</code></td><td>Push and pull intelligence (optional, opt-in)</td><td>Cloud</td></tr>
164
240
  <tr><td><code>cell vibe</code></td><td>Your developer personality profile</td><td>Personality</td></tr>
165
- <tr><td><code>cell doctor</code></td><td>Comprehensive health check</td><td>Health</td></tr>
241
+ <tr><td><code>cell doctor</code></td><td>Full health check across all layers</td><td>Health</td></tr>
166
242
  <tr><td><code>cell -i</code></td><td>Interactive REPL, a ChatGPT-style terminal</td><td>REPL</td></tr>
167
243
  </table>
168
244
  </div>
169
245
 
170
- > CLI commands organized across multiple categories. Run `cell help --all` to see them all.
246
+ > Multiple CLI commands organized across categories. Run `cell help --all` to see them all.
247
+
248
+ ---
171
249
 
172
250
  ### 🧠 Memory & Context
173
251
 
174
252
  <div align="center">
175
253
  <table>
176
254
  <tr><th>Feature</th><th>Details</th></tr>
177
- <tr><td><strong>@cell Context</strong></td><td>Type <code>@cell</code> in any IDE. Project, blind spots, predictions and session get injected automatically</td></tr>
255
+ <tr><td><strong>@cell Context</strong></td><td>Type <code>@cell</code> in any IDE — project, blind spots, predictions, session all injected automatically</td></tr>
178
256
  <tr><td><strong>Supreme Context</strong></td><td>3 engines (Bridge + Continuity + Predictor) for true cross-session memory</td></tr>
179
- <tr><td><strong>Permanent Memory</strong></td><td>Events stored in local SQLite. Decisions, errors, fixes, patterns</td></tr>
257
+ <tr><td><strong>Permanent Memory</strong></td><td>All events stored in local SQLite — decisions, errors, fixes, patterns — never lost</td></tr>
180
258
  <tr><td><strong>Session Memory</strong></td><td>Every session recorded: files touched, decisions made, approaches tried</td></tr>
181
259
  <tr><td><strong>Cell Index</strong></td><td><code>.cell/INDEX.md</code> — fast context lookup with ~89% data reduction</td></tr>
182
260
  <tr><td><strong>Memory Search</strong></td><td>Instant FTS5 full-text search across all your history</td></tr>
183
- <tr><td><strong>Handoff</strong></td><td>AI-to-AI context transfer. Bridge capture keeps context across tools</td></tr>
261
+ <tr><td><strong>Cross-Editor Handoff</strong></td><td>End in Cursor, continue in Claude Code session bridge already waiting</td></tr>
184
262
  </table>
185
263
  </div>
186
264
 
@@ -189,68 +267,79 @@ cell vibe # see your developer personality
189
267
  <div align="center">
190
268
  <table>
191
269
  <tr><th>Engine</th><th>What it does</th></tr>
192
- <tr><td><strong>Bridge</strong></td><td>Captures session summary at end. Auto-injects at next start. 9 fields: summary, key decisions, open questions, failed approaches, working approaches, last thought, files in focus, vibe snapshot, predicted next steps. Sessions tracked over time.</td></tr>
270
+ <tr><td><strong>Bridge</strong></td><td>Captures session summary at end. Auto-injects at next start. Tracks: summary, key decisions, open questions, failed approaches, working approaches, last thought, files in focus, vibe snapshot, predicted next steps.</td></tr>
193
271
  <tr><td><strong>Continuity</strong></td><td>Cross-session thread. Auto-detects intent: bug fix, feature dev, refactor, test, docs, release. Never asks "what are we building?"</td></tr>
194
- <tr><td><strong>Predictor</strong></td><td>Predicts files AI will need, errors that may recur, decisions needing revisit. Provides beachhead action.</td></tr>
272
+ <tr><td><strong>Predictor</strong></td><td>Predicts files you'll need, errors that may recur, decisions needing revisit. Accuracy improves over 30 days.</td></tr>
195
273
  </table>
196
274
  </div>
197
275
 
276
+ ---
277
+
198
278
  ### 🎭 Vibe — Developer Personality
199
279
 
200
280
  <div align="center">
201
281
  <table>
202
282
  <tr><th>Feature</th><th>Details</th></tr>
203
- <tr><td><strong>Personality Signals</strong></td><td>Across multiple groups: language, tone, code style, workflow, decision making</td></tr>
204
- <tr><td><strong>Identity Detection</strong></td><td>Auto-detects your developer archetype</td></tr>
205
- <tr><td><strong>AI Guide</strong></td><td>Generates rules telling AI tools "how to behave" with you</td></tr>
206
- <tr><td><strong>Live Enforcement</strong></td><td>Watcher flags rule violations automatically</td></tr>
207
- <tr><td><strong>Cross-Signal Pairs</strong></td><td>Detects combined behaviors (e.g., direct and concise communication)</td></tr>
208
- <tr><td><strong>Contradiction Resolution</strong></td><td>Ships fast for features, perfects for security — context-dependent</td></tr>
283
+ <tr><td><strong>Personality Signals</strong></td><td>Learned across multiple groups: language, tone, code style, workflow, decision making</td></tr>
284
+ <tr><td><strong>Identity Detection</strong></td><td>Auto-detects your archetype: e.g. "Bilingual communicator — Strategic auditor — Pragmatic shipper"</td></tr>
285
+ <tr><td><strong>AI Guide</strong></td><td>Generates rules injected into every AI session "how to talk to this developer"</td></tr>
286
+ <tr><td><strong>Live Enforcement</strong></td><td>Watcher flags vibe rule violations automatically on file save</td></tr>
287
+ <tr><td><strong>Cross-Signal Pairs</strong></td><td>Detects combined behaviors: direct + concise = no-nonsense communicator</td></tr>
288
+ <tr><td><strong>Contradiction Resolution</strong></td><td>Ships fast for features, perfects for security — context-dependent vibe</td></tr>
209
289
  </table>
210
290
  </div>
211
291
 
212
292
  **The Signal Groups:** Language Preference · Response Structure · Communication Tone · Code Change Style · Workflow · Decision Making · Speed vs Quality · AI Trust · Project Behavior · Emotional Nuance · Prompt Thinking · Session Rhythm
213
293
 
214
- > **Example AI Guide:** Be direct — start with answer, then explain. Use Hinglish: Hindi for concepts, English for code. Keep changes under 50 lines. Start with audit before proposing. Never rewrite unless asked.
294
+ > **Example AI Guide generated by Cell:** "Be direct — start with answer, then explain. Use Hinglish where helpful. Keep changes minimal. Start with audit before proposing. Never rewrite unless asked."
295
+
296
+ ---
215
297
 
216
298
  ### 🔍 Code Intelligence
217
299
 
218
300
  <div align="center">
219
301
  <table>
220
302
  <tr><th>Feature</th><th>Details</th></tr>
221
- <tr><td><strong>Code Scanner</strong></td><td>Walks project files and analyzes all code structure and stack details</td></tr>
222
- <tr><td><strong>Blind Spots</strong></td><td>Detects common issues: null safety, code quality, error handling, performance, and validation</td></tr>
303
+ <tr><td><strong>Code Scanner</strong></td><td>Walks all project files, analyzes structure, stack, style, and risk patterns</td></tr>
304
+ <tr><td><strong>Blind Spots</strong></td><td>Detects: null safety, missing try/catch, console.log, code quality, performance, validation</td></tr>
305
+ <tr><td><strong>Deep Analysis</strong></td><td>Complexity analysis, duplicate detection, nesting depth, long functions</td></tr>
223
306
  <tr><td><strong>Stack Detection</strong></td><td>Language, framework, DB, ORM, test runner — all auto-detected</td></tr>
224
307
  <tr><td><strong>Style Pull</strong></td><td>Detects project-specific naming styles, imports, and error-handling patterns</td></tr>
225
308
  <tr><td><strong>Git Intelligence</strong></td><td>Git hooks auto-learn on every commit. Tracks patterns and repeat mistakes</td></tr>
226
- <tr><td><strong>Trust Score</strong></td><td>Code quality scored with multi-category breakdown</td></tr>
227
309
  </table>
228
310
  </div>
229
311
 
312
+ ---
313
+
230
314
  ### 📡 MCP — Multi-IDE Support
231
315
 
232
316
  <div align="center">
233
317
  <table>
234
318
  <tr><th>Feature</th><th>Details</th></tr>
235
319
  <tr><td><strong>Multiple IDEs Auto-Configured</strong></td><td>Cursor, Windsurf, Antigravity, Codex/Copilot, OpenCode</td></tr>
236
- <tr><td><strong>Rich MCP Tools</strong></td><td>Comprehensive set of tools covering sessions, context, memory, vibe, team collaboration, and cloud sync</td></tr>
237
- <tr><td><strong>Honest Detection</strong></td><td>Only IDEs you actually have installed are configured</td></tr>
320
+ <tr><td><strong>Rich MCP Tools</strong></td><td>Sessions, context, memory, vibe, team, community, watch, sync, graph, scan, CI — all covered</td></tr>
321
+ <tr><td><strong>Honest Detection</strong></td><td>Only IDEs you actually have installed are configured — no fake counts</td></tr>
238
322
  <tr><td><strong>Auto-Configure</strong></td><td><code>cell mcp-config</code> — one command registers all your IDEs</td></tr>
239
323
  </table>
240
324
  </div>
241
325
 
326
+ ---
327
+
242
328
  ### 👁️ File Watcher
243
329
 
244
330
  <div align="center">
245
331
  <table>
246
332
  <tr><th>Feature</th><th>Details</th></tr>
247
- <tr><td><strong>Live Events</strong></td><td>Captures file changes in real-time</td></tr>
248
- <tr><td><strong>Vibe Update</strong></td><td>Watcher keeps your personality profile fresh</td></tr>
333
+ <tr><td><strong>Live Events</strong></td><td>Captures file changes in real-time — every save tracked</td></tr>
334
+ <tr><td><strong>Smart Triggers</strong></td><td>5 saves in 60 seconds → predictions auto-refreshed</td></tr>
335
+ <tr><td><strong>Vibe Update</strong></td><td>Watcher keeps your personality profile fresh automatically</td></tr>
249
336
  <tr><td><strong>TCP Bridge</strong></td><td>Port 9877, dedicated socket for editor events</td></tr>
250
337
  <tr><td><strong>Auto-Learn</strong></td><td>Git hooks trigger auto-learning on every commit</td></tr>
251
338
  </table>
252
339
  </div>
253
340
 
341
+ ---
342
+
254
343
  ### ☁️ Cloud Sync — Opt-In Only
255
344
 
256
345
  <div align="center">
@@ -260,41 +349,44 @@ cell vibe # see your developer personality
260
349
  <tr><td><strong>Opt-In Scope</strong></td><td>Granular categories — you choose what syncs where</td></tr>
261
350
  <tr><td><strong>Comprehensive Redaction</strong></td><td>API keys, AWS creds, private keys, tokens, emails, JWT — all <code>[REDACTED]</code></td></tr>
262
351
  <tr><td><strong>JWT Auto-Refresh</strong></td><td>Token expiry check with 5-min grace period, auto-refresh</td></tr>
263
- <tr><td><strong>Rate Limit Backoff</strong></td><td>429 gets exponential backoff (1s, 2s, 4s up to max 5 min)</td></tr>
264
352
  <tr><td><strong>Device Registration</strong></td><td>UUID v4 device ID + JWT auth on first login</td></tr>
265
- <tr><td><strong>SSRF Protection</strong></td><td>Only whitelisted URLs (<code>cell.fivo.live</code>)</td></tr>
266
353
  <tr><td><strong>AES-256-GCM</strong></td><td>Encrypted sync, rate-limited, offline-ready</td></tr>
267
354
  </table>
268
355
  </div>
269
356
 
270
- ### 👥 Team & Community
271
-
272
- <div align="center">
273
- <table>
274
- <tr><th>Feature</th><th>Details</th></tr>
275
- <tr><td><strong>Team Supreme</strong></td><td>Team DNA (shared conventions), Knowledge Map (who knows what), Health Score (bus factor, silo risk)</td></tr>
276
- <tr><td><strong>Community Supreme</strong></td><td>Marketplace (browse/download patterns), Trends, Playbooks, Reputation (badges)</td></tr>
277
- <tr><td><strong>Knowledge Graph</strong></td><td>Detects shared patterns across projects</td></tr>
278
- </table>
279
- </div>
357
+ ---
280
358
 
281
359
  ### 🩺 Health & Security
282
360
 
283
361
  <div align="center">
284
362
  <table>
285
363
  <tr><th>Feature</th><th>Details</th></tr>
286
- <tr><td><strong>12-Point Doctor</strong></td><td>git, node, DB, daemon, watch, MCP, FTS, scan — all checked</td></tr>
364
+ <tr><td><strong>Multi-Point Doctor</strong></td><td>git, node, DB, daemon, watch, MCP, FTS, scan — all checked with <code>cell doctor</code></td></tr>
287
365
  <tr><td><strong>Localhost-Only</strong></td><td>Daemon binds to <code>127.0.0.1</code> — zero LAN exposure</td></tr>
288
- <tr><td><strong>Atomic Writes</strong></td><td>temp then rename — files never corrupt</td></tr>
289
- <tr><td><strong>chmod 0600</strong></td><td>Database is owner-only on Unix</td></tr>
290
- <tr><td><strong>No eval/spawnSync</strong></td><td>Zero code execution vectors</td></tr>
291
- <tr><td><strong>Parameterized SQL</strong></td><td>Zero injection risk</td></tr>
292
- <tr><td><strong>npm audit: 0</strong></td><td>Zero known vulnerabilities</td></tr>
366
+ <tr><td><strong>Atomic Writes</strong></td><td>temp then rename — files never corrupt on crash</td></tr>
367
+ <tr><td><strong>No eval/spawnSync</strong></td><td>Zero dynamic code execution vectors</td></tr>
368
+ <tr><td><strong>Parameterized SQL</strong></td><td>Zero injection risk across all queries</td></tr>
369
+ <tr><td><strong>npm audit: 0</strong></td><td>Zero known vulnerabilities in dependencies</td></tr>
293
370
  </table>
294
371
  </div>
295
372
 
296
373
  ---
297
374
 
375
+ ## 🚫 What FivoCell Does NOT Do
376
+
377
+ Honest list. Know this before you use it.
378
+
379
+ | # | Missing | Why |
380
+ |:-:|---------|-----|
381
+ | 1 | **Semantic code understanding** — "explain why this function is wrong logically" | Needs an LLM. Cell is fully rule-based and deterministic. |
382
+ | 2 | **Live cloud sync** (`cell.fivo.live`) | Cloud server is a separate deployment. Cell itself works 100% offline. |
383
+ | 3 | **Multi-language deep parsing** (Python, Rust, Go) | Tree-sitter is installed but not fully wired into all analyzers yet. |
384
+
385
+ **What Cell IS:** A rule-based, deterministic, offline-first memory layer.
386
+ **What Cell is NOT:** An LLM, a code explainer, or a cloud service.
387
+
388
+ ---
389
+
298
390
  ## 🆚 FivoCell vs The Alternatives
299
391
 
300
392
  <div align="center">
@@ -341,7 +433,7 @@ cell vibe # see your developer personality
341
433
  </tr>
342
434
  <tr>
343
435
  <td>Learns your <strong>personality / vibe</strong></td>
344
- <td align="center">✅ 100 signals</td>
436
+ <td align="center">✅ Multi-signal</td>
345
437
  <td align="center">❌</td>
346
438
  <td align="center">❌</td>
347
439
  <td align="center">❌</td>
@@ -349,20 +441,12 @@ cell vibe # see your developer personality
349
441
  </tr>
350
442
  <tr>
351
443
  <td><strong>Auto-detects</strong> code style</td>
352
- <td align="center">✅ 8 categories with %</td>
444
+ <td align="center">✅ Multi-category</td>
353
445
  <td align="center">❌</td>
354
446
  <td align="center">❌</td>
355
447
  <td align="center">🟡</td>
356
448
  <td align="center">❌</td>
357
449
  </tr>
358
- <tr>
359
- <td><strong>Team &amp; community</strong> intelligence</td>
360
- <td align="center">✅ Team DNA + Market</td>
361
- <td align="center">🟡</td>
362
- <td align="center">❌</td>
363
- <td align="center">❌</td>
364
- <td align="center">❌</td>
365
- </tr>
366
450
  <tr>
367
451
  <td>Privacy: <strong>opt-in</strong> cloud + redaction</td>
368
452
  <td align="center">✅ 15 redaction patterns</td>
@@ -414,8 +498,8 @@ cell vibe # see your developer personality
414
498
  │ ▼ ▼ ▼ │
415
499
  │ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
416
500
  │ │ SQLite │ │ .cell/ │ │ Vibe │ │
417
- │ │ 18 MB │ │ 270 KB │ │ Engine │ │
418
- │ │ 70 tbls │ │ INDEX.md │ │ 100 rules│ │
501
+ │ │ local │ │ INDEX │ │ Engine │ │
502
+ │ │ DB │ │ bridge │ │ signals │ │
419
503
  │ └──────────┘ └──────────┘ └──────────┘ │
420
504
  └─────────────────────────────────────────────────────────────────┘
421
505
  ```
@@ -454,16 +538,16 @@ cell vibe # see your developer personality
454
538
  ```
455
539
  @cell typed -> MCP request to :9876
456
540
  -> Prompt builder reads:
457
- +-- SQLite (70 tables, 7,421 events)
458
- +-- .cell/INDEX.md (49 files, 2K tokens)
459
- +-- .cell/vibe/ (100 signals)
460
- +-- .cell/bridge/latest.json
461
- +-- .cell/continuity/
462
- +-- .cell/predictor.json
541
+ +-- SQLite local DB (all events, decisions, errors)
542
+ +-- .cell/INDEX.md (fast context lookup)
543
+ +-- .cell/vibe/ (personality signals)
544
+ +-- .cell/bridge/latest.json (last session)
545
+ +-- .cell/continuity/ (active thread)
546
+ +-- .cell/predictor.json (next actions)
463
547
  -> Ranks by relevance
464
548
  -> Compresses to token budget
465
549
  -> Formats per-tool
466
- -> Returns ~1,289 chars
550
+ -> Returns context block to AI
467
551
  ```
468
552
 
469
553
  ---
@@ -490,21 +574,21 @@ cell vibe # see your developer personality
490
574
  FivoCell is designed with a **privacy-first, local-by-default architecture** so that your sensitive intellectual property and credentials never leave your control.
491
575
 
492
576
  ### What FivoCell Takes (Stored 100% Locally)
493
- * 💾 **Local SQLite Database**: Stores memory events, CLI history, session summaries, and custom-defined decisions on your local machine (`.cell/` folder).
494
- * ⚙️ **Developer Vibe Signals**: Learns your local programming conventions and styles to build custom instructions.
577
+ * 💾 **Local SQLite Database**: Stores memory events, CLI history, session summaries, and decisions on your local machine (`.cell/` folder).
578
+ * ⚙️ **Developer Vibe Signals**: Learns your local programming conventions and styles to build custom AI instructions.
495
579
  * 🔍 **Code Diagnostics**: Local scanner checks for code vulnerabilities, structural risks, and coding patterns.
496
580
 
497
581
  ### What FivoCell NEVER Accesses or Transmits
498
- * ❌ **Raw Source Code**: FivoCell processes all code diagnostics locally. It never sends your source files, logic, or proprietary code to any external server.
499
- * ❌ **API Keys & Credentials**: The `PrivacyRedactor` automatically intercepts and redacts API tokens, AWS keys, private credentials, database URLs, and password patterns (15 default filters) before any network call.
582
+ * ❌ **Raw Source Code**: All code diagnostics run locally. Your source files never leave your machine.
583
+ * ❌ **API Keys & Credentials**: The `PrivacyRedactor` intercepts and redacts API tokens, AWS keys, database URLs, and password patterns (15 default filters) before any network call.
500
584
  * ❌ **Personal / System Identifiers**: Absolute paths, emails, private IPs, and internal hostnames are fully scrubbed.
501
585
 
502
586
  ### Opt-In Cloud Synchronization (Granular Controls)
503
587
  Any cloud feature is completely **off by default** and requires explicit opt-in:
504
- * **Community Patterns**: Anonymized vibe and high-level style patterns can be shared to benchmark against community trends (no raw code, names, or paths).
505
- * **Team Sync**: Optional end-to-end encrypted sharing of project decisions and session handoffs to keep team members aligned.
588
+ * **Community Patterns**: Anonymized vibe and high-level style patterns only no raw code, names, or paths.
589
+ * **Team Sync**: Optional encrypted sharing of project decisions and session handoffs.
506
590
 
507
- To verify your security state at any time, run:
591
+ To verify your security state at any time:
508
592
  ```bash
509
593
  cell doctor
510
594
  ```
@@ -516,8 +600,6 @@ cell doctor
516
600
  <div align="center">
517
601
  <table>
518
602
  <tr><th>Doc</th><th>Link</th></tr>
519
- <tr><td>Full A-to-Z Feature Reference</td><td><a href="docs/FIVO-CELL-A-TO-Z-DOC.md">docs/FIVO-CELL-A-TO-Z-DOC.md</a></td></tr>
520
- <tr><td>Architecture Deep Dive</td><td><a href="docs/LOCAL_BRAIN_ARCHITECTURE.md">docs/LOCAL_BRAIN_ARCHITECTURE.md</a></td></tr>
521
603
  <tr><td>Security Policy</td><td><a href="docs/SECURITY.md">docs/SECURITY.md</a></td></tr>
522
604
  <tr><td>Privacy</td><td><a href="docs/PRIVACY.md">docs/PRIVACY.md</a></td></tr>
523
605
  <tr><td>Telemetry</td><td><a href="docs/TELEMETRY.md">docs/TELEMETRY.md</a></td></tr>
@@ -525,9 +607,9 @@ cell doctor
525
607
  <tr><td>Changelog</td><td><a href="docs/CHANGELOG.md">docs/CHANGELOG.md</a></td></tr>
526
608
  <tr><td>Contributing</td><td><a href="docs/CONTRIBUTING.md">docs/CONTRIBUTING.md</a></td></tr>
527
609
  <tr><td>Deploy Guide</td><td><a href="docs/DEPLOY.md">docs/DEPLOY.md</a></td></tr>
528
- <tr><td>Phased Roadmap</td><td><a href="docs/PHASED_ROADMAP.md">docs/PHASED_ROADMAP.md</a></td></tr>
529
- <tr><td>Features Deep Dive</td><td><a href="docs/FEATURES_DEEP_DIVE.md">docs/FEATURES_DEEP_DIVE.md</a></td></tr>
530
610
  <tr><td>Command Reference</td><td><a href="docs/COMMANDS.md">docs/COMMANDS.md</a></td></tr>
611
+ <tr><td>Bug Reports</td><td><a href="docs/BUG_REPORT.md">docs/BUG_REPORT.md</a></td></tr>
612
+ <tr><td>Cloud Sync Guide</td><td><a href="docs/CLOUD-SYNC-GUIDE.md">docs/CLOUD-SYNC-GUIDE.md</a></td></tr>
531
613
  </table>
532
614
  </div>
533
615