ltcai 4.5.1 → 4.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.
Files changed (34) hide show
  1. package/README.md +123 -179
  2. package/docs/CHANGELOG.md +120 -0
  3. package/docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md +72 -0
  4. package/docs/V4_6_1_RELEASE_REFRESH_REPORT.md +42 -0
  5. package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +19 -17
  6. package/frontend/index.html +2 -2
  7. package/frontend/src/App.tsx +653 -208
  8. package/frontend/src/api/client.ts +1 -0
  9. package/frontend/src/components/BrainConversation.tsx +309 -0
  10. package/frontend/src/components/FirstRunGuide.tsx +4 -4
  11. package/frontend/src/components/LivingBrain.tsx +212 -0
  12. package/frontend/src/components/ProductFlow.tsx +654 -0
  13. package/frontend/src/pages/Ask.tsx +2 -229
  14. package/frontend/src/pages/Brain.tsx +68 -49
  15. package/frontend/src/routes.ts +15 -26
  16. package/frontend/src/styles.css +2375 -87
  17. package/lattice_brain/__init__.py +1 -1
  18. package/lattice_brain/runtime/multi_agent.py +1 -1
  19. package/latticeai/__init__.py +1 -1
  20. package/latticeai/core/marketplace.py +1 -1
  21. package/latticeai/core/workspace_os.py +1 -1
  22. package/package.json +2 -2
  23. package/src-tauri/Cargo.lock +1 -1
  24. package/src-tauri/Cargo.toml +1 -1
  25. package/src-tauri/tauri.conf.json +1 -1
  26. package/static/app/asset-manifest.json +5 -5
  27. package/static/app/assets/index-7U86v70r.css +2 -0
  28. package/static/app/assets/index-D1jAPQws.js +16 -0
  29. package/static/app/assets/index-D1jAPQws.js.map +1 -0
  30. package/static/app/index.html +4 -4
  31. package/static/manifest.json +1 -1
  32. package/static/app/assets/index-3G8qcrIS.js +0 -336
  33. package/static/app/assets/index-3G8qcrIS.js.map +0 -1
  34. package/static/app/assets/index-C0wYZp7k.css +0 -2
package/README.md CHANGED
@@ -7,174 +7,141 @@
7
7
  [![CI Status](https://github.com/TaeSooPark-PTS/LatticeAI/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/TaeSooPark-PTS/LatticeAI/actions/workflows/ci.yml)
8
8
  [![License](https://img.shields.io/badge/license-MIT-green)](LICENSE)
9
9
 
10
- **Lattice AI v4.5.1 is a local-first Digital Brain desktop workspace.** It runs
11
- as a Tauri desktop app with a localhost FastAPI sidecar, stores the user's brain
12
- locally by default, and presents the Knowledge Graph as the durable asset.
10
+ **Lattice AI v4.6.1 is the local-first Living Brain release refresh.** It keeps
11
+ the v4 Brain Core, StorageEngine, FastAPI localhost API, Tauri shell, backup,
12
+ restore, model runtime, graph, and portability architecture intact while making
13
+ the release/publishable version `4.6.1` after the v4.6.0 PyPI immutability
14
+ block.
13
15
 
14
- This README describes the v4.5.1 release-candidate tree, which preserves the
15
- v4.4.0 physical `lattice_brain` extraction and v4.5.0 capability recovery while
16
- reimagining the product surface from first principles: Home, Ask, Add,
17
- Automate, Library, and Care replace the prior dashboard-style presentation.
18
- External package registries are owner-published; the badges above link to
19
- package pages and may show the most recently published owner-controlled registry
20
- version, which can lag behind the GitHub Release.
16
+ The product opens with a private local profile, studies the computer, recommends
17
+ models, asks before install/download/load work, then lands in Brain Chat. The
18
+ graph is still real and searchable, but it now grows out of the Brain as the
19
+ deepest exploration layer instead of acting like a separate dashboard.
21
20
 
22
- ## What Was Verified
21
+ External package registries are owner-published and can lag behind this GitHub
22
+ Release. Release uploads must use the exact v4.6.1 artifact filenames below.
23
23
 
24
- - Desktop app starts and serves the React/Vite product shell from the FastAPI
25
- sidecar.
26
- - Brain graph renders persisted local graph data with search, groups, focus,
27
- filtering, and hybrid-search results.
28
- - Ask displays durable conversations, graph context, and honest unavailable
29
- state when no model is loaded.
30
- - Capture uploads a document through `/upload/document` and shows indexed
31
- documents from the backend.
32
- - Act exposes workflow create/run surfaces and agent runtime status without
33
- presenting simulation as real success. When no LLM-backed model is loaded,
34
- deterministic model-free agent simulation is reported honestly and does not call a model.
35
- - Library shows model/runtime availability honestly.
36
- - First-run setup guides Make it yours -> Choose a space -> Meet your Mac ->
37
- Pick a brain -> Install locally -> Try a question -> Set the pace -> Explore
38
- memory.
39
- - Gemma 4 MLX models are checked against their local `config.json` before load:
40
- Gemma 4 12B `gemma4_unified` now shows **Runtime update needed** when the
41
- installed MLX-VLM lacks `mlx_vlm.models.gemma4_unified`, while Gemma 4 26B
42
- A4B stays on the working `gemma4` MLX-VLM path.
43
- - System exposes storage, backup health, archive, Brain Network, device
44
- identity, and admin status through real APIs.
45
- - Backup, restore dry-run, archive verify, archive import dry-run, and
46
- `.latticebrain` portability flows were exercised.
24
+ ## Living Brain Flow
47
25
 
48
- ## Product Tour
26
+ ### 1. Login
49
27
 
50
- ### Desktop Startup
28
+ First launch opens to Login only. The local profile is the beginning of the
29
+ Brain, not a dashboard, graph, or setup grid.
51
30
 
52
- The v4.5.1 DMG build launches a visible Tauri app, starts the FastAPI sidecar on
53
- localhost, and shuts that sidecar down on normal macOS quit.
31
+ ![Login](output/release/v4.6.1/screenshots/01-login.png)
54
32
 
55
- ![Desktop startup and local sidecar](output/audits/v4.3.2-rc/screenshots/13-desktop-sidecar-startup.png)
33
+ ### 2. Environment Analysis
56
34
 
57
- Evidence:
35
+ Lattice reads the machine locally and summarizes what kind of Brain this
36
+ computer can support.
58
37
 
59
- - Health log: `output/audits/v4.3.2-rc/logs/desktop-sidecar-health-after-shutdown-fix.json`
60
- - Shutdown log: `output/audits/v4.3.2-rc/logs/desktop-shutdown-after-fix.txt`
38
+ ![Environment Analysis](output/release/v4.6.1/screenshots/02-environment-analysis.png)
61
39
 
62
- ### Brain Graph
40
+ ### 3. Recommended Models
63
41
 
64
- Brain opens on the graph-first workspace. The graph uses real persisted nodes
65
- and edges, then layers product controls for search, semantic grouping, focus
66
- neighborhoods, label modes, group collapse/expand, and importance filtering.
42
+ The model step is a short recommendation list. It avoids catalog noise and keeps
43
+ runtime/install details behind clear user consent.
67
44
 
68
- ![Brain graph explorer](output/audits/v4.3.2-rc/screenshots/02-graph-explorer-before.png)
45
+ ![Recommended Models](output/release/v4.6.1/screenshots/03-recommended-models.png)
69
46
 
70
- ![Graph product walkthrough](output/audits/v4.3.2-rc/gifs/graph-product-walkthrough.gif)
47
+ ### 4. Install And Load
71
48
 
72
- ### Ask
49
+ The install screen keeps consent visible and shows install, download, validate,
50
+ and load progress. No model download or runtime install starts silently.
73
51
 
74
- Ask uses backend conversation, model, and graph context APIs. In the audited
75
- state no model was loaded, so the UI showed a ready/unavailable state instead of
76
- fabricating an answer while still surfacing graph context from local data.
52
+ ![Install and Load](output/release/v4.6.1/screenshots/04-install-load-progress.png)
77
53
 
78
- ![Ask with graph context and no-model honesty](output/audits/v4.3.2-rc/screenshots/14-ask-context.png)
54
+ ### 5. Brain Chat
79
55
 
80
- ### Capture
56
+ After setup, the home experience is the living Brain plus conversation. The Brain
57
+ stays present while the user types, recalls context, and receives responses.
81
58
 
82
- Capture sends files through the backend upload/ingestion path and shows indexed
83
- documents returned by the backend. The screenshot below includes a note uploaded
84
- during release-prep evidence capture.
59
+ ![Brain Chat Home](output/release/v4.6.1/screenshots/05-brain-chat-home.png)
85
60
 
86
- ![Capture document ingestion](output/audits/v4.3.2-rc/screenshots/15-capture-ingestion.png)
61
+ ## Brain Depths
87
62
 
88
- Upload evidence: `output/audits/v4.3.2-rc/logs/readme-upload-note.json`
63
+ The user travels inward through the Brain. Each depth keeps conversation nearby
64
+ while revealing more structure.
89
65
 
90
- ### Act
66
+ | Depth | Experience | Evidence |
67
+ | --- | --- | --- |
68
+ | Level 1 | Living Brain presence | ![Living Brain Level 1](output/release/v4.6.1/screenshots/06-living-brain-level-1.png) |
69
+ | Level 2 | Memory Layer | ![Memory Layer](output/release/v4.6.1/screenshots/07-memory-layer.png) |
70
+ | Level 3 | Knowledge Layer | ![Knowledge Layer](output/release/v4.6.1/screenshots/08-knowledge-layer.png) |
71
+ | Level 4 | Relationship Layer | ![Relationship Layer](output/release/v4.6.1/screenshots/09-relationship-layer.png) |
72
+ | Level 5 | Knowledge Graph with nodes, edges, search, and focus detail | ![Knowledge Graph Layer](output/release/v4.6.1/screenshots/10-knowledge-graph-layer.png) |
91
73
 
92
- Act exposes agents, workflows, approvals, hooks, and runtime status through
93
- existing backend APIs. The audited workflow path created a real workflow record;
94
- agent runtime simulation remains honestly unavailable as product success when no
95
- LLM-backed model is loaded.
74
+ Walkthrough:
96
75
 
97
- ![Workflow create and run surfaces](output/audits/v4.3.2-rc/screenshots/09-workflow-create-run.png)
76
+ ![v4.6.1 Living Brain walkthrough](output/release/v4.6.1/gifs/v4.6.1-living-brain-walkthrough.gif)
98
77
 
99
- ![Agent runtime status](output/audits/v4.3.2-rc/screenshots/10-agent-runtime-status.png)
78
+ Model setup status evidence:
100
79
 
101
- ### Library
80
+ ![Model setup status](output/release/v4.6.1/screenshots/11-model-setup-status.png)
102
81
 
103
- Library shows models, skills, MCP, and marketplace/configuration state with
104
- availability reported from runtime APIs. Optional model runtimes are not treated
105
- as loaded unless the runtime is actually available. Model setup now follows the
106
- explicit Environment Analysis -> Recommended Models -> Install -> Download
107
- Progress -> Validate -> Load -> Ready path, with download/install consent kept
108
- visible.
82
+ Screenshot index and capture notes:
83
+ [output/release/v4.6.1/SCREENSHOT_INDEX.md](output/release/v4.6.1/SCREENSHOT_INDEX.md)
109
84
 
110
- ![Library model status](output/audits/v4.3.2-rc/screenshots/12-library-model-status.png)
111
-
112
- ### System
113
-
114
- System exposes account/workspace status, storage mode, backup health, archive
115
- operations, device identity, Brain Network, and admin hardening state. External
116
- integrations remain opt-in.
117
-
118
- ![System storage status](output/audits/v4.3.2-rc/screenshots/08-system-storage-status.png)
119
-
120
- ![Brain Network and device identity](output/audits/v4.3.2-rc/screenshots/11-brain-network-device-identity.png)
85
+ ## Architecture At A Glance
121
86
 
122
- ### Backup / Restore
87
+ - **Desktop shell**: Tauri 2 is the release desktop shell and starts the
88
+ localhost sidecar.
89
+ - **Frontend**: React, TypeScript, Vite, TanStack Query, Zustand, Cytoscape.js,
90
+ React Flow, Tailwind/shadcn-style primitives, and generated OpenAPI types.
91
+ - **Backend**: FastAPI on localhost is the UI source of truth.
92
+ - **Brain Core**: independent `lattice_brain` package for graph, memory,
93
+ context, conversations, ingestion, runtime, workflow, storage, and
94
+ portability. Isolation tests prevent `lattice_brain` from importing
95
+ `latticeai`.
96
+ - **Storage**: `StorageEngine` abstraction with SQLite default and optional
97
+ PostgreSQL/pgvector scale mode.
98
+ - **Portability**: encrypted `.latticebrain` archives plus backup, restore,
99
+ inspect, verify, import dry-run, and confirmed restore/import flows.
100
+ - **Privacy**: local-first and private-first by default. Cloud models, Telegram,
101
+ Brain Network, Docker/Postgres setup, model downloads, and update checks are
102
+ opt-in paths.
123
103
 
124
- Backup and restore flows are backed by the knowledge-graph portability APIs.
125
- The retained v4.3.2 product audit exercised backup health, backup creation, restore dry-run, and
126
- archive restore surfaces.
104
+ See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v4.6.1 architecture.
127
105
 
128
- ![Brain backup and portability controls](output/audits/v4.3.2-rc/screenshots/06-brain-portability-backup.png)
106
+ ## Installation
129
107
 
130
- ### `.latticebrain` Portability
108
+ Run from Python:
131
109
 
132
- The portable brain format is an encrypted `.latticebrain` archive. The audited
133
- System flow exercised archive export, inspect, verify, import dry-run, and
134
- restore dry-run/restore controls through FastAPI.
110
+ ```bash
111
+ pip install ltcai
112
+ LTCAI
113
+ ```
135
114
 
136
- ![System archive flows](output/audits/v4.3.2-rc/screenshots/07-system-archive-flows.png)
115
+ Run from npm:
137
116
 
138
- Archive evidence:
117
+ ```bash
118
+ npm install -g ltcai
119
+ ltcai
120
+ ```
139
121
 
140
- - Create: `output/audits/v4.3.2-rc/logs/archive-create.json`
141
- - Verify: `output/audits/v4.3.2-rc/logs/archive-verify.json`
142
- - Import dry-run: `output/audits/v4.3.2-rc/logs/archive-import-dry-run.json`
122
+ Open the local app:
143
123
 
144
- ## Architecture At A Glance
124
+ ```text
125
+ http://127.0.0.1:4825/app
126
+ ```
145
127
 
146
- - **Desktop shell**: Tauri 2 primary shell; Electron remains fallback-only.
147
- - **Frontend**: React, TypeScript, Vite, TanStack Query, Zustand, Cytoscape.js,
148
- React Flow, Tailwind/shadcn-style primitives, generated OpenAPI client.
149
- - **Backend**: FastAPI on localhost is the source of truth for the UI.
150
- - **Brain Core**: independent Python package `lattice_brain` (graph, memory,
151
- context, conversations, ingestion, agent/hook runtime, workflow,
152
- portability, storage) physically hosted in the package, imported by FastAPI,
153
- CLI, tests, and future tools, and guaranteed by tests to never import
154
- `latticeai`.
155
- - **Storage**: `StorageEngine` abstraction with SQLite default and optional
156
- PostgreSQL/pgvector scale mode.
157
- - **Portability**: encrypted `.latticebrain` archive plus backup/restore and
158
- migration tooling.
159
- - **Privacy**: local-first by default; cloud models, Telegram, Brain Network,
160
- Docker, model downloads, and update checks require explicit opt-in paths.
128
+ Apple Silicon local model extras:
161
129
 
162
- See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v4 architecture. v4.5.1
163
- does not redesign the v4.4.0 Brain Core extraction, StorageEngine, FastAPI,
164
- Tauri, backup/restore, or portability architecture.
130
+ ```bash
131
+ pip install "ltcai[local]"
132
+ ```
165
133
 
166
- ## Installation And Release Artifacts
134
+ ## Release Artifacts
167
135
 
168
- Validated v4.5.1 RC artifacts are produced from the product-reimagining tree:
136
+ Validated v4.6.1 artifacts:
169
137
 
170
- - `dist/ltcai-4.5.1-py3-none-any.whl`
171
- - `dist/ltcai-4.5.1.tar.gz`
172
- - `ltcai-4.5.1.tgz`
173
- - `dist/ltcai-4.5.1.vsix`
174
- - `src-tauri/target/release/bundle/dmg/Lattice AI_4.5.1_aarch64.dmg`
138
+ - `dist/ltcai-4.6.1-py3-none-any.whl`
139
+ - `dist/ltcai-4.6.1.tar.gz`
140
+ - `ltcai-4.6.1.tgz`
141
+ - `dist/ltcai-4.6.1.vsix`
142
+ - `src-tauri/target/release/bundle/dmg/Lattice AI_4.6.1_aarch64.dmg`
175
143
 
176
- For a public release, attach only those exact artifacts to the GitHub Release.
177
- Package-registry publishing is reserved for the owner.
144
+ Attach only those exact files to the GitHub Release. Do not upload `dist/*`.
178
145
 
179
146
  ## Local Development
180
147
 
@@ -183,20 +150,14 @@ npm install
183
150
  npm run dev
184
151
  ```
185
152
 
186
- Open the local app:
187
-
188
- ```text
189
- http://127.0.0.1:4825/app
190
- ```
191
-
192
- Build the release artifacts:
153
+ Build and validate release artifacts:
193
154
 
194
155
  ```bash
195
156
  npm run release:artifacts
196
157
  npm run release:validate
197
158
  ```
198
159
 
199
- Run the main validation set:
160
+ Main validation set:
200
161
 
201
162
  ```bash
202
163
  npm run check:python
@@ -204,77 +165,60 @@ node scripts/run_python.mjs -m ruff check .
204
165
  npm run lint
205
166
  npm run typecheck
206
167
  npm run test:unit
207
- LTCAI_TEST_BASE_URL=http://127.0.0.1:4932 npm run test:integration
168
+ npm run test:integration
208
169
  npm run test:visual
209
170
  npm run desktop:tauri:check
210
- node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-X.Y.Z-py3-none-any.whl
171
+ node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-4.6.1-py3-none-any.whl
211
172
  npm pack --dry-run
173
+ npm run docs:check-links
212
174
  ```
213
175
 
214
176
  ## Known Limitations
215
177
 
216
178
  - External package registries are owner-published and can lag behind the GitHub
217
179
  Release.
218
- - PostgreSQL/pgvector is optional scale mode and is not required for default
219
- local use.
220
- - Docker is never auto-started by default.
221
- - Model downloads and cloud model calls require explicit user action/consent.
222
- - Ask does not fabricate answers when no model is loaded.
223
- - Historical artifacts may remain in `dist/`; release uploads must use exact
224
- v4.5.1 filenames for this RC.
180
+ - PostgreSQL/pgvector is optional scale mode. SQLite is the default local brain.
181
+ - Docker, model downloads, cloud model calls, Telegram, Brain Network, and
182
+ update checks require explicit user action.
183
+ - Conversation does not fabricate answers when no model is loaded.
184
+ - Agent/workflow simulation without a loaded LLM is deterministic and does not call a model.
185
+ It is labeled as LLM-free/model-free rather than presented as autonomous model
186
+ success.
187
+ - Historical artifacts can remain in `dist/`; uploads must use exact v4.6.1
188
+ filenames.
225
189
 
226
190
  ## Release History
227
191
 
228
192
  | Version | Theme |
229
193
  | --- | --- |
194
+ | 4.6.1 | Living Brain Release Refresh: publishable version bump after v4.6.0 PyPI immutability, refreshed README/screenshots/GIFs, synchronized release docs, and exact v4.6.1 artifacts |
195
+ | 4.6.0 | Living Brain Experience: made Brain plus conversation the home product, added an animated living Brain presence, and moved graph exploration to the deepest intentional layer |
230
196
  | 4.5.1 | Product Reimagining RC: replaced the desktop shell, navigation model, onboarding journey, first-viewport hierarchy, and visual system while preserving capabilities and local-first architecture |
231
197
  | 4.5.0 | Product Experience Recovery RC: restored first-run setup, workspace/model onboarding, explicit model install/download/validate/load flow, Gemma 4 runtime compatibility gating, Basic-mode polish, and graph discoverability |
232
- | 4.4.0 | Brain Engine Extraction: Brain Core physically moved into `lattice_brain` (graph/memory/context/conversation/ingestion/runtime/workflow/portability), latticeai paths reduced to compatibility shims, isolation tests guaranteeing no `latticeai` imports |
233
- | 4.3.3 | Dead-Code Cleanup Release: post-audit cleanup, architecture documentation correction, Vercel/static-docs readiness, README badge restoration, exact-current artifacts |
234
- | 4.3.2 | Product Polish & Graph UX Overhaul RC: evidence-based README, graph UX, structured product state, archive UX, desktop sidecar cleanup, publishing readiness |
235
- | 4.3.1 | End-User Audit Repair RC: desktop sidecar startup, npm clean install, default-off downloads, honest agent/workflow states |
236
- | 4.3.0 | Portability & Product Hardening RC: encrypted `.latticebrain` archives, backup/restore hardening, local-only startup guards |
237
- | 4.2.0 | Brain Core & Storage Rebuild: independent `lattice_brain`, StorageEngine abstraction, SQLite default, opt-in Postgres/pgvector |
238
- | 4.1.0 | Frontend & Desktop Rebuild: React/Vite SPA, Tauri shell, generated OpenAPI client |
239
- | 4.0.1 | Digital Brain maintenance: durable async runs, identity/workspace state, `/app` parity |
198
+ | 4.4.0 | Brain Engine Extraction: Brain Core physically moved into `lattice_brain` with isolation tests |
199
+ | 4.3.3 | Dead-Code Cleanup Release |
200
+ | 4.3.2 | Product Polish & Graph UX Overhaul RC |
201
+ | 4.3.1 | End-User Audit Repair RC |
202
+ | 4.3.0 | Portability & Product Hardening RC |
203
+ | 4.2.0 | Brain Core & Storage Rebuild |
204
+ | 4.1.0 | Frontend & Desktop Rebuild |
205
+ | 4.0.1 | Digital Brain maintenance |
240
206
  | 4.0.0 | Digital Brain Platform foundation |
241
207
  | 3.0.0 | v3 local-first AI workspace platform |
242
208
 
243
209
  ## Current Documentation
244
210
 
245
- - [ARCHITECTURE.md](ARCHITECTURE.md) - v4 architecture.
211
+ - [ARCHITECTURE.md](ARCHITECTURE.md) - v4.6.1 architecture.
246
212
  - [FEATURE_STATUS.md](FEATURE_STATUS.md) - current feature status and historical
247
213
  status ledger.
248
- - [RELEASE_NOTES.md](RELEASE_NOTES.md) - current release notes index.
249
- - [RELEASE_NOTES_v4.5.1.md](RELEASE_NOTES_v4.5.1.md) - v4.5.1 RC release notes.
250
- - [RELEASE_NOTES_v4.5.0.md](RELEASE_NOTES_v4.5.0.md) - v4.5.0 RC release notes.
251
- - [RELEASE_NOTES_v4.4.0.md](RELEASE_NOTES_v4.4.0.md) - v4.4.0 release notes.
252
- - [RELEASE_NOTES_v4.3.3.md](RELEASE_NOTES_v4.3.3.md) - v4.3.3 release notes.
214
+ - [RELEASE_NOTES.md](RELEASE_NOTES.md) - release notes index.
215
+ - [RELEASE_NOTES_v4.6.1.md](RELEASE_NOTES_v4.6.1.md) - v4.6.1 release refresh notes.
216
+ - [RELEASE_NOTES_v4.6.0.md](RELEASE_NOTES_v4.6.0.md) - v4.6.0 Living Brain history.
253
217
  - [RELEASE.md](RELEASE.md) - release checklist and exact artifact guidance.
254
218
  - [SECURITY.md](SECURITY.md) - security posture.
255
219
  - [docs/CHANGELOG.md](docs/CHANGELOG.md) - changelog.
256
- - [docs/V4_3_2_DEADCODE_AUDIT_REPORT.md](docs/V4_3_2_DEADCODE_AUDIT_REPORT.md) - v4.3.3 cleanup basis.
257
- - [docs/V4_3_3_VALIDATION_REPORT.md](docs/V4_3_3_VALIDATION_REPORT.md) - v4.3.3 validation report.
258
- - [docs/V4_5_0_PRODUCT_EXPERIENCE_RECOVERY_REPORT.md](docs/V4_5_0_PRODUCT_EXPERIENCE_RECOVERY_REPORT.md) - v4.5.0 product recovery report.
259
- - [docs/V4_5_0_VALIDATION_REPORT.md](docs/V4_5_0_VALIDATION_REPORT.md) - v4.5.0 validation report.
260
- - [docs/V4_5_1_PRODUCT_REIMAGINING_REPORT.md](docs/V4_5_1_PRODUCT_REIMAGINING_REPORT.md) - v4.5.1 product reimagining report.
261
- - [docs/V4_5_1_UX_REPORT.md](docs/V4_5_1_UX_REPORT.md) - v4.5.1 UX report.
262
- - [docs/V4_5_1_VISUAL_DESIGN_REPORT.md](docs/V4_5_1_VISUAL_DESIGN_REPORT.md) - v4.5.1 visual design report.
263
- - [docs/V4_5_1_NAVIGATION_REPORT.md](docs/V4_5_1_NAVIGATION_REPORT.md) - v4.5.1 navigation report.
264
- - [docs/V4_5_1_ONBOARDING_REPORT.md](docs/V4_5_1_ONBOARDING_REPORT.md) - v4.5.1 onboarding report.
265
- - [docs/V4_5_1_MODEL_EXPERIENCE_REPORT.md](docs/V4_5_1_MODEL_EXPERIENCE_REPORT.md) - v4.5.1 model experience report.
266
- - [docs/V4_5_1_GRAPH_EXPERIENCE_REPORT.md](docs/V4_5_1_GRAPH_EXPERIENCE_REPORT.md) - v4.5.1 graph experience report.
267
- - [docs/V4_5_1_VALIDATION_REPORT.md](docs/V4_5_1_VALIDATION_REPORT.md) - v4.5.1 validation report.
268
- - [docs/V4_5_1_RC_ARTIFACTS.md](docs/V4_5_1_RC_ARTIFACTS.md) - v4.5.1 screenshot, GIF, and RC artifact manifest.
269
- - [docs/V4_3_2_GRAPH_UX_REPORT.md](docs/V4_3_2_GRAPH_UX_REPORT.md) - graph UX report.
270
- - [docs/V4_3_2_PRODUCT_POLISH_REPORT.md](docs/V4_3_2_PRODUCT_POLISH_REPORT.md) - product polish report.
271
- - [docs/V4_3_2_SELF_AUDIT_REPORT.md](docs/V4_3_2_SELF_AUDIT_REPORT.md) - self-audit evidence.
272
- - [docs/V4_3_2_VALIDATION_REPORT.md](docs/V4_3_2_VALIDATION_REPORT.md) - RC validation report.
273
- - [docs/V4_3_2_DOCUMENTATION_CLEANUP_REPORT.md](docs/V4_3_2_DOCUMENTATION_CLEANUP_REPORT.md) - release-prep documentation cleanup report.
274
- - [docs/V4_3_2_GITHUB_VERCEL_CHECK_REPORT.md](docs/V4_3_2_GITHUB_VERCEL_CHECK_REPORT.md) - GitHub/Vercel readiness report.
275
- - [docs/V4_3_2_INDEPENDENT_AUDIT_PACKAGE.md](docs/V4_3_2_INDEPENDENT_AUDIT_PACKAGE.md) - package for an independent reviewer.
276
- - [docs/V4_3_2_DEADCODE_AUDIT_REPORT.md](docs/V4_3_2_DEADCODE_AUDIT_REPORT.md) - independent dead-code, architecture, and runtime audit.
277
- - [docs/V4_DIGITAL_BRAIN_RECOVERY.md](docs/V4_DIGITAL_BRAIN_RECOVERY.md) - transformation recovery file.
220
+ - [docs/V4_6_1_RELEASE_REFRESH_REPORT.md](docs/V4_6_1_RELEASE_REFRESH_REPORT.md) - v4.6.1 release refresh report.
221
+ - [docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md](docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md) - v4.6.0 Living Brain design notes.
278
222
 
279
223
  ## License
280
224
 
package/docs/CHANGELOG.md CHANGED
@@ -3,6 +3,126 @@
3
3
  The top entry is the current release-preparation target. Older entries are
4
4
  historical and may describe behavior as it existed at that release.
5
5
 
6
+ ## [4.6.1] - 2026-06-14
7
+
8
+ > Living Brain release refresh and publishable version bump after the v4.6.0
9
+ > PyPI immutability block. v4.6.1 keeps the Living Brain implementation and
10
+ > synchronizes release metadata, README evidence, architecture docs, artifacts,
11
+ > and owner publishing commands to exact `4.6.1` filenames.
12
+
13
+ ### Changed
14
+
15
+ - Bumped synchronized package/runtime/static versions to `4.6.1`, including
16
+ Python metadata, npm package metadata, VSIX metadata, Tauri metadata,
17
+ `latticeai`, `lattice_brain`, runtime constants, and static asset metadata.
18
+ - Refreshed README around the current Living Brain flow: Login -> Environment
19
+ Analysis -> Recommended Models -> Install & Load -> Brain Chat.
20
+ - Replaced stale README screenshot/GIF references with fresh v4.6.1 release
21
+ evidence for Login, setup, Brain Chat, Living Brain, Memory Layer, Knowledge
22
+ Layer, Relationship Layer, and Knowledge Graph.
23
+ - Updated `ARCHITECTURE.md` for the current Tauri shell, React/Vite frontend,
24
+ FastAPI localhost API, independent `lattice_brain` Brain Core, StorageEngine,
25
+ SQLite default, PostgreSQL/pgvector opt-in, backup/restore, and
26
+ `.latticebrain` portability architecture.
27
+ - Added `RELEASE_NOTES_v4.6.1.md` and the v4.6.1 release refresh report.
28
+
29
+ ### Preserved
30
+
31
+ - v4.6.0 and older sections remain historical. They were not rewritten as
32
+ v4.6.1 claims.
33
+ - No backend architecture redesign, package publishing, service deployment, or
34
+ registry upload is part of this refresh.
35
+
36
+ ### Artifacts
37
+
38
+ - `dist/ltcai-4.6.1-py3-none-any.whl`
39
+ - `dist/ltcai-4.6.1.tar.gz`
40
+ - `dist/ltcai-4.6.1.vsix`
41
+ - `ltcai-4.6.1.tgz`
42
+ - `src-tauri/target/release/bundle/dmg/Lattice AI_4.6.1_aarch64.dmg`
43
+
44
+ ## [4.6.x Brain Exploration Update] - 2026-06-14
45
+
46
+ > The Brain is now the true interactive entry point to the user's knowledge.
47
+ > Clicking the living Brain progressively reveals deeper layers of the mind:
48
+ > Level 1 living presence -> memories -> concepts -> relationships -> the
49
+ > emergent full Knowledge Graph. The graph never appears abruptly; it grows out
50
+ > of the Brain as the user travels inward.
51
+
52
+ ### Changed
53
+ - Rebuilt `LivingBrain` as a recognizable anatomical Brain with animated
54
+ hemispheres, folds, memory ripples, thought particles, and state-specific
55
+ responses for listening, recalling, thinking, planning, and acting.
56
+ - BrainHome now manages five progressive depths. Level 1 shows only the living
57
+ Brain; Level 2 reveals memory fragments; Level 3 reveals concepts; Level 4
58
+ reveals relationship threads; Level 5 reveals the searchable Knowledge Graph.
59
+ - Layered emergence uses the existing memory and graph APIs but presents them
60
+ as unfolding layers inside one central Brain experience rather than separate
61
+ pages, tabs, or a bottom depth bar.
62
+ - Level 5 now includes graph nodes, edges, search filtering, and focus details
63
+ in an emergent graph panel.
64
+ - Conversation remains available at every depth; the Brain presence changes
65
+ intensity as the user travels inward or streams a response.
66
+ - Updated visual validation to assert the new depth contract, graph emergence,
67
+ graph search, chat streaming, mobile overflow, and legacy entry compatibility.
68
+
69
+ The user should feel they are moving inward through their own mind, with the graph as the deepest, most structured layer that grew from the living presence.
70
+
71
+ ### Changed (Frontend — full replacement of the previous prototype)
72
+ - The entire post-onboarding surface is now a single immersive "Brain Space". The Brain presence is large, always visible, and the primary emotional and visual object.
73
+ - Conversation is the central, intimate way you live with the Brain. No traditional app chrome, dock, or page shell in the primary experience.
74
+ - LivingBrain component completely rewritten as a reactive, layered, breathing organism with memory ripples, thought particles, state-driven animation, and click-to-respond behavior.
75
+ - Progressive discovery enforced in the UI: from the Brain you gently descend into Memory, Knowledge, Connections, and The Map (the graph). The graph is never the landing experience.
76
+ - Onboarding (ProductFlow) reframed as a quiet, ceremonial awakening ritual with the Brain presence participating at every step.
77
+ - New warm, private, organic visual language (deep ember-gold presence, soft teal memory pulses, generous space, contemplative typography). Old dashboard aesthetics and navigation chrome suppressed on the primary path.
78
+ - Depth chambers are full-bleed, slow, human rooms — not feature pages. A small living trace of the Brain stays visible for continuity.
79
+ - All backend functionality (chat streaming, memory, hybrid search, graph, model prepare/load, portability, agents, etc.) is preserved and reachable. The old navigation remains for deep-link compatibility but is not the product surface.
80
+
81
+ The technology was already a Digital Brain. This release makes the *experience* one.
82
+
83
+ ## [4.6.0] - 2026-06-13
84
+
85
+ > Living Brain Experience release after the v4.5.1 product shell reset. (Previous iteration — this RC supersedes the visual and structural approach while keeping the capability foundation.)
86
+
87
+ ### Changed
88
+
89
+ - Added the required first-launch product flow: Login -> Environment Analysis
90
+ -> Recommended Models -> Install & Load -> Brain.
91
+ - Made Brain plus conversation the post-model-load `/app` and `/app#/brain`
92
+ experience.
93
+ - Added an animated living Brain presence that reacts to listening, memory
94
+ recall, streaming/thinking, and agent/workflow activity.
95
+ - Centralized chat streaming, model status, image attachment, conversation
96
+ history, and memory previews in a reusable Brain conversation component.
97
+ - Reduced visible primary navigation to Brain, Memory, Files, Automations,
98
+ Models, and Settings;
99
+ `/ask` and `/chat` remain route-compatible aliases into Brain.
100
+ - Reordered Brain layers as Brain -> Memories -> Knowledge -> Relationships ->
101
+ Graph, moving graph exploration to the deepest intentional layer.
102
+ - Updated visual palette and copy so the product reads as a living digital
103
+ Brain rather than a graph tool or dashboard.
104
+ - Removed the first-run dashboard/setup-card panel from the app shell; setup is
105
+ now a full-screen product sequence before the Brain opens.
106
+
107
+ ### Preserved
108
+
109
+ - Brain Core, FastAPI APIs, Tauri shell, StorageEngine, backup/restore,
110
+ portability, model runtimes, graph/search/chat/capture/automation/system
111
+ workflows, and route aliases remain capability-compatible.
112
+
113
+ ### Validation
114
+
115
+ - v4.6.0 validation scope is tracked in
116
+ `docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md`.
117
+
118
+ ### Artifacts
119
+
120
+ - `dist/ltcai-4.6.0-py3-none-any.whl`
121
+ - `dist/ltcai-4.6.0.tar.gz`
122
+ - `dist/ltcai-4.6.0.vsix`
123
+ - `ltcai-4.6.0.tgz`
124
+ - `src-tauri/target/release/bundle/dmg/Lattice AI_4.6.0_aarch64.dmg`
125
+
6
126
  ## [4.5.1] - 2026-06-13
7
127
 
8
128
  > Product Reimagining release candidate after the v4.5.0 capability recovery.
@@ -0,0 +1,72 @@
1
+ # v4.6.0 Living Brain Experience Report
2
+
3
+ ## Goal
4
+
5
+ v4.6.0 stops presenting Lattice AI as a graph product or dashboard. The
6
+ first-run product flow is Login -> Environment Analysis -> Recommended Models
7
+ -> Install & Load -> Brain. After setup, the Brain is the center of the desktop
8
+ experience, and the graph is repositioned as the deepest layer inside Brain
9
+ exploration rather than a separate destination.
10
+
11
+ ## Product Changes
12
+
13
+ - First launch opens to a premium minimal Login screen only.
14
+ - Setup runs as a full-screen guided sequence: friendly environment analysis,
15
+ short ranked model recommendations, and install/download/validate/load.
16
+ - After model load, `/app` and compatible legacy entry URLs open into Brain plus
17
+ conversation.
18
+ - The living Brain is an anatomical, recognizable Brain that remains visible
19
+ during primary conversation and reacts to listening, recall, thinking,
20
+ planning, and active agent/workflow signals.
21
+ - Brain exploration now has five depths:
22
+ Living Brain, Memory Layer, Knowledge Layer, Relationship Layer, and
23
+ Knowledge Graph.
24
+ - The Knowledge Graph appears only at Level 5 and includes nodes, edges, search,
25
+ and focus details.
26
+ - `/chat`, `/ask`, `/graph`, and other legacy entry URLs remain compatible app
27
+ entry points, but the primary user path inward is through the Brain itself.
28
+ - First-run setup no longer appears as dashboard cards above any app page; it
29
+ gates the app before the Brain opens.
30
+
31
+ ## Architecture
32
+
33
+ - Added `frontend/src/components/LivingBrain.tsx` as the animated Brain
34
+ presence component.
35
+ - Updated `frontend/src/App.tsx` to own the five-depth Brain journey and the
36
+ emergent graph surface.
37
+ - `frontend/src/components/BrainConversation.tsx` remains available for legacy
38
+ page compatibility and now shares the expanded Brain activity states.
39
+ - Added `frontend/src/components/ProductFlow.tsx` to own Login, environment
40
+ analysis, recommendation, install/download/validate/load, and Brain entry.
41
+ - Kept graph APIs, memory APIs, search, provenance, portability, and archive
42
+ APIs intact.
43
+ - Kept FastAPI, Tauri, StorageEngine, Brain Core, backup/restore, and
44
+ portability unchanged.
45
+
46
+ ## Compatibility
47
+
48
+ - Existing backend routes are unchanged.
49
+ - Legacy hash routes and redirects continue to arrive inside the SPA.
50
+ - The advanced graph capability remains available as Level 5 of Brain
51
+ exploration.
52
+ - The older route components remain in source for compatibility while the
53
+ primary app surface is the Brain Space.
54
+
55
+ ## Validation Scope
56
+
57
+ The v4.6.0 work should be validated with:
58
+
59
+ - frontend lint/typecheck/build
60
+ - Python syntax validation
61
+ - affected visual tests
62
+ - unit tests covering version consistency and route compatibility
63
+ - Tauri cargo check when the desktop toolchain is available
64
+
65
+ Validated in this update:
66
+
67
+ - `npm run lint`
68
+ - `npm run test:visual`
69
+ - `npm run check:python`
70
+ - `npm run test:unit`
71
+ - `npm run test:integration` with the local server on port 8899
72
+ - `npm run build`
@@ -0,0 +1,42 @@
1
+ # v4.6.1 Living Brain Release Refresh Report
2
+
3
+ ## Scope
4
+
5
+ v4.6.1 is the publishable Living Brain release refresh after the v4.6.0 PyPI
6
+ immutability block. The work intentionally does not redesign backend
7
+ architecture or add unrelated product features.
8
+
9
+ ## Completed Refresh Areas
10
+
11
+ - Synchronized current-release version metadata to `4.6.1`.
12
+ - Reframed README around the current Living Brain flow:
13
+ Login -> Environment Analysis -> Recommended Models -> Install & Load ->
14
+ Brain Chat.
15
+ - Documented the five Brain depths: Living Brain, Memory Layer, Knowledge Layer,
16
+ Relationship Layer, and Knowledge Graph.
17
+ - Kept the Knowledge Graph positioned as the deepest Brain exploration layer,
18
+ not a standalone dashboard or home screen.
19
+ - Updated ARCHITECTURE.md for the current Tauri, React/Vite, FastAPI,
20
+ independent `lattice_brain`, StorageEngine, SQLite default, optional
21
+ PostgreSQL/pgvector, backup/restore, and `.latticebrain` portability reality.
22
+ - Added v4.6.1 release notes and synchronized the changelog, feature status,
23
+ security policy, VS Code extension README, and release guide.
24
+
25
+ ## Evidence
26
+
27
+ Fresh v4.6.1 screenshots and walkthrough media are indexed in
28
+ [output/release/v4.6.1/SCREENSHOT_INDEX.md](../output/release/v4.6.1/SCREENSHOT_INDEX.md).
29
+
30
+ ## Expected Artifacts
31
+
32
+ - `dist/ltcai-4.6.1-py3-none-any.whl`
33
+ - `dist/ltcai-4.6.1.tar.gz`
34
+ - `dist/ltcai-4.6.1.vsix`
35
+ - `ltcai-4.6.1.tgz`
36
+ - `src-tauri/target/release/bundle/dmg/Lattice AI_4.6.1_aarch64.dmg`
37
+
38
+ ## Validation Checklist
39
+
40
+ The final release report records command results, artifact SHA256 hashes, commit,
41
+ tag, push, and GitHub Release URL. External package registries are not published
42
+ by this refresh.