ltcai 4.6.0 → 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.
- package/README.md +121 -193
- package/docs/CHANGELOG.md +78 -1
- package/docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md +33 -19
- package/docs/V4_6_1_RELEASE_REFRESH_REPORT.md +42 -0
- package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +12 -11
- package/frontend/src/App.tsx +657 -173
- package/frontend/src/components/BrainConversation.tsx +10 -2
- package/frontend/src/components/LivingBrain.tsx +197 -106
- package/frontend/src/components/ProductFlow.tsx +188 -130
- package/frontend/src/styles.css +1327 -36
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +1 -1
- package/package.json +1 -1
- package/src-tauri/Cargo.lock +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/tauri.conf.json +1 -1
- package/static/app/asset-manifest.json +5 -5
- package/static/app/assets/index-7U86v70r.css +2 -0
- package/static/app/assets/index-D1jAPQws.js +16 -0
- package/static/app/assets/index-D1jAPQws.js.map +1 -0
- package/static/app/index.html +2 -2
- package/static/app/assets/index-By-G-Kay.css +0 -2
- package/static/app/assets/index-CJx6WuQH.js +0 -336
- package/static/app/assets/index-CJx6WuQH.js.map +0 -1
package/README.md
CHANGED
|
@@ -7,187 +7,141 @@
|
|
|
7
7
|
[](https://github.com/TaeSooPark-PTS/LatticeAI/actions/workflows/ci.yml)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
-
**Lattice AI v4.6.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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.
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
analysis, recommended models, guided install/download/validate/load, then the
|
|
20
|
-
living Brain conversation. Memories, knowledge, relationships, and the advanced
|
|
21
|
-
graph are progressively disclosed beneath the Brain.
|
|
22
|
-
External package registries are owner-published; the badges above link to
|
|
23
|
-
package pages and may show the most recently published owner-controlled registry
|
|
24
|
-
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.
|
|
25
20
|
|
|
26
|
-
|
|
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.
|
|
27
23
|
|
|
28
|
-
|
|
29
|
-
sidecar.
|
|
30
|
-
- First launch opens to Login only, then guides environment analysis,
|
|
31
|
-
recommendations, install/download/validate/load, and finally the Brain.
|
|
32
|
-
- After model loading, the home route opens to a living Brain presence plus
|
|
33
|
-
durable conversation, with the Brain always visible during the primary chat
|
|
34
|
-
flow.
|
|
35
|
-
- The Brain presence reacts to conversation, recall, model readiness, and
|
|
36
|
-
agent/workflow activity with neural movement, memory pulses, and status
|
|
37
|
-
changes.
|
|
38
|
-
- Memories, Knowledge, Relationships, and Graph are ordered as progressive
|
|
39
|
-
disclosure layers; the graph is no longer the product's first impression.
|
|
40
|
-
- Capture uploads a document through `/upload/document` and shows indexed
|
|
41
|
-
documents from the backend.
|
|
42
|
-
- Act exposes workflow create/run surfaces and agent runtime status without
|
|
43
|
-
presenting simulation as real success. When no LLM-backed model is loaded,
|
|
44
|
-
deterministic model-free agent simulation is reported honestly and does not call a model.
|
|
45
|
-
- Model setup recommends a short ranked list for the current computer instead
|
|
46
|
-
of exposing a catalog or runtime internals.
|
|
47
|
-
- Gemma 4 MLX models are checked against their local `config.json` before load:
|
|
48
|
-
Gemma 4 12B `gemma4_unified` now shows **Runtime update needed** when the
|
|
49
|
-
installed MLX-VLM lacks `mlx_vlm.models.gemma4_unified`, while Gemma 4 26B
|
|
50
|
-
A4B stays on the working `gemma4` MLX-VLM path.
|
|
51
|
-
- System exposes storage, backup health, archive, Brain Network, device
|
|
52
|
-
identity, and admin status through real APIs.
|
|
53
|
-
- Backup, restore dry-run, archive verify, archive import dry-run, and
|
|
54
|
-
`.latticebrain` portability flows were exercised.
|
|
24
|
+
## Living Brain Flow
|
|
55
25
|
|
|
56
|
-
|
|
26
|
+
### 1. Login
|
|
57
27
|
|
|
58
|
-
|
|
28
|
+
First launch opens to Login only. The local profile is the beginning of the
|
|
29
|
+
Brain, not a dashboard, graph, or setup grid.
|
|
59
30
|
|
|
60
|
-
|
|
61
|
-
localhost, and shuts that sidecar down on normal macOS quit.
|
|
31
|
+

|
|
62
32
|
|
|
63
|
-
|
|
33
|
+
### 2. Environment Analysis
|
|
64
34
|
|
|
65
|
-
|
|
35
|
+
Lattice reads the machine locally and summarizes what kind of Brain this
|
|
36
|
+
computer can support.
|
|
66
37
|
|
|
67
|
-
|
|
68
|
-
- Shutdown log: `output/audits/v4.3.2-rc/logs/desktop-shutdown-after-fix.txt`
|
|
38
|
+

|
|
69
39
|
|
|
70
|
-
###
|
|
40
|
+
### 3. Recommended Models
|
|
71
41
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
are recalled, while a response streams, and when agent/workflow activity is
|
|
75
|
-
reported.
|
|
42
|
+
The model step is a short recommendation list. It avoids catalog noise and keeps
|
|
43
|
+
runtime/install details behind clear user consent.
|
|
76
44
|
|
|
77
|
-
|
|
78
|
-
layer after the user moves through Brain, Memories, Knowledge, and
|
|
79
|
-
Relationships.
|
|
45
|
+

|
|
80
46
|
|
|
81
|
-
|
|
47
|
+
### 4. Install And Load
|
|
82
48
|
|
|
83
|
-
|
|
49
|
+
The install screen keeps consent visible and shows install, download, validate,
|
|
50
|
+
and load progress. No model download or runtime install starts silently.
|
|
84
51
|
|
|
85
|
-
|
|
52
|
+

|
|
86
53
|
|
|
87
|
-
|
|
88
|
-
loaded, the UI shows a ready/unavailable state instead of fabricating an answer
|
|
89
|
-
while still keeping nearby memory and source signals visible.
|
|
54
|
+
### 5. Brain Chat
|
|
90
55
|
|
|
91
|
-
|
|
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.
|
|
92
58
|
|
|
93
|
-
|
|
59
|
+

|
|
94
60
|
|
|
95
|
-
|
|
96
|
-
documents returned by the backend. The screenshot below includes a note uploaded
|
|
97
|
-
during release-prep evidence capture.
|
|
61
|
+
## Brain Depths
|
|
98
62
|
|
|
99
|
-
|
|
63
|
+
The user travels inward through the Brain. Each depth keeps conversation nearby
|
|
64
|
+
while revealing more structure.
|
|
100
65
|
|
|
101
|
-
|
|
66
|
+
| Depth | Experience | Evidence |
|
|
67
|
+
| --- | --- | --- |
|
|
68
|
+
| Level 1 | Living Brain presence |  |
|
|
69
|
+
| Level 2 | Memory Layer |  |
|
|
70
|
+
| Level 3 | Knowledge Layer |  |
|
|
71
|
+
| Level 4 | Relationship Layer |  |
|
|
72
|
+
| Level 5 | Knowledge Graph with nodes, edges, search, and focus detail |  |
|
|
102
73
|
|
|
103
|
-
|
|
74
|
+
Walkthrough:
|
|
104
75
|
|
|
105
|
-
|
|
106
|
-
existing backend APIs. The audited workflow path created a real workflow record;
|
|
107
|
-
agent runtime simulation remains honestly unavailable as product success when no
|
|
108
|
-
LLM-backed model is loaded.
|
|
76
|
+

|
|
109
77
|
|
|
110
|
-
|
|
78
|
+
Model setup status evidence:
|
|
111
79
|
|
|
112
|
-

|
|
113
81
|
|
|
114
|
-
|
|
82
|
+
Screenshot index and capture notes:
|
|
83
|
+
[output/release/v4.6.1/SCREENSHOT_INDEX.md](output/release/v4.6.1/SCREENSHOT_INDEX.md)
|
|
115
84
|
|
|
116
|
-
|
|
117
|
-
availability reported from runtime APIs. Optional model runtimes are not treated
|
|
118
|
-
as loaded unless the runtime is actually available. Model setup now follows the
|
|
119
|
-
explicit Environment Analysis -> Recommended Models -> Install -> Download
|
|
120
|
-
Progress -> Validate -> Load -> Ready path, with download/install consent kept
|
|
121
|
-
visible.
|
|
122
|
-
|
|
123
|
-

|
|
124
|
-
|
|
125
|
-
### System
|
|
126
|
-
|
|
127
|
-
System exposes account/workspace status, storage mode, backup health, archive
|
|
128
|
-
operations, device identity, Brain Network, and admin hardening state. External
|
|
129
|
-
integrations remain opt-in.
|
|
130
|
-
|
|
131
|
-

|
|
132
|
-
|
|
133
|
-

|
|
85
|
+
## Architecture At A Glance
|
|
134
86
|
|
|
135
|
-
|
|
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.
|
|
136
103
|
|
|
137
|
-
|
|
138
|
-
The retained v4.3.2 product audit exercised backup health, backup creation, restore dry-run, and
|
|
139
|
-
archive restore surfaces.
|
|
104
|
+
See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v4.6.1 architecture.
|
|
140
105
|
|
|
141
|
-
|
|
106
|
+
## Installation
|
|
142
107
|
|
|
143
|
-
|
|
108
|
+
Run from Python:
|
|
144
109
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
110
|
+
```bash
|
|
111
|
+
pip install ltcai
|
|
112
|
+
LTCAI
|
|
113
|
+
```
|
|
148
114
|
|
|
149
|
-
|
|
115
|
+
Run from npm:
|
|
150
116
|
|
|
151
|
-
|
|
117
|
+
```bash
|
|
118
|
+
npm install -g ltcai
|
|
119
|
+
ltcai
|
|
120
|
+
```
|
|
152
121
|
|
|
153
|
-
|
|
154
|
-
- Verify: `output/audits/v4.3.2-rc/logs/archive-verify.json`
|
|
155
|
-
- Import dry-run: `output/audits/v4.3.2-rc/logs/archive-import-dry-run.json`
|
|
122
|
+
Open the local app:
|
|
156
123
|
|
|
157
|
-
|
|
124
|
+
```text
|
|
125
|
+
http://127.0.0.1:4825/app
|
|
126
|
+
```
|
|
158
127
|
|
|
159
|
-
|
|
160
|
-
- **Frontend**: React, TypeScript, Vite, TanStack Query, Zustand, Cytoscape.js,
|
|
161
|
-
React Flow, Tailwind/shadcn-style primitives, generated OpenAPI client.
|
|
162
|
-
- **Backend**: FastAPI on localhost is the source of truth for the UI.
|
|
163
|
-
- **Brain Core**: independent Python package `lattice_brain` (graph, memory,
|
|
164
|
-
context, conversations, ingestion, agent/hook runtime, workflow,
|
|
165
|
-
portability, storage) physically hosted in the package, imported by FastAPI,
|
|
166
|
-
CLI, tests, and future tools, and guaranteed by tests to never import
|
|
167
|
-
`latticeai`.
|
|
168
|
-
- **Storage**: `StorageEngine` abstraction with SQLite default and optional
|
|
169
|
-
PostgreSQL/pgvector scale mode.
|
|
170
|
-
- **Portability**: encrypted `.latticebrain` archive plus backup/restore and
|
|
171
|
-
migration tooling.
|
|
172
|
-
- **Privacy**: local-first by default; cloud models, Telegram, Brain Network,
|
|
173
|
-
Docker, model downloads, and update checks require explicit opt-in paths.
|
|
128
|
+
Apple Silicon local model extras:
|
|
174
129
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
130
|
+
```bash
|
|
131
|
+
pip install "ltcai[local]"
|
|
132
|
+
```
|
|
178
133
|
|
|
179
|
-
##
|
|
134
|
+
## Release Artifacts
|
|
180
135
|
|
|
181
|
-
Validated v4.6.
|
|
136
|
+
Validated v4.6.1 artifacts:
|
|
182
137
|
|
|
183
|
-
- `dist/ltcai-4.6.
|
|
184
|
-
- `dist/ltcai-4.6.
|
|
185
|
-
- `ltcai-4.6.
|
|
186
|
-
- `dist/ltcai-4.6.
|
|
187
|
-
- `src-tauri/target/release/bundle/dmg/Lattice AI_4.6.
|
|
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`
|
|
188
143
|
|
|
189
|
-
|
|
190
|
-
Package-registry publishing is reserved for the owner.
|
|
144
|
+
Attach only those exact files to the GitHub Release. Do not upload `dist/*`.
|
|
191
145
|
|
|
192
146
|
## Local Development
|
|
193
147
|
|
|
@@ -196,20 +150,14 @@ npm install
|
|
|
196
150
|
npm run dev
|
|
197
151
|
```
|
|
198
152
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
```text
|
|
202
|
-
http://127.0.0.1:4825/app
|
|
203
|
-
```
|
|
204
|
-
|
|
205
|
-
Build the release artifacts:
|
|
153
|
+
Build and validate release artifacts:
|
|
206
154
|
|
|
207
155
|
```bash
|
|
208
156
|
npm run release:artifacts
|
|
209
157
|
npm run release:validate
|
|
210
158
|
```
|
|
211
159
|
|
|
212
|
-
|
|
160
|
+
Main validation set:
|
|
213
161
|
|
|
214
162
|
```bash
|
|
215
163
|
npm run check:python
|
|
@@ -217,80 +165,60 @@ node scripts/run_python.mjs -m ruff check .
|
|
|
217
165
|
npm run lint
|
|
218
166
|
npm run typecheck
|
|
219
167
|
npm run test:unit
|
|
220
|
-
|
|
168
|
+
npm run test:integration
|
|
221
169
|
npm run test:visual
|
|
222
170
|
npm run desktop:tauri:check
|
|
223
|
-
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-
|
|
171
|
+
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-4.6.1-py3-none-any.whl
|
|
224
172
|
npm pack --dry-run
|
|
173
|
+
npm run docs:check-links
|
|
225
174
|
```
|
|
226
175
|
|
|
227
176
|
## Known Limitations
|
|
228
177
|
|
|
229
178
|
- External package registries are owner-published and can lag behind the GitHub
|
|
230
179
|
Release.
|
|
231
|
-
- PostgreSQL/pgvector is optional scale mode
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
- Model downloads and cloud model calls require explicit user action/consent.
|
|
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.
|
|
235
183
|
- Conversation does not fabricate answers when no model is loaded.
|
|
236
|
-
-
|
|
237
|
-
|
|
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.
|
|
238
189
|
|
|
239
190
|
## Release History
|
|
240
191
|
|
|
241
192
|
| Version | Theme |
|
|
242
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 |
|
|
243
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 |
|
|
244
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 |
|
|
245
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 |
|
|
246
|
-
| 4.4.0 | Brain Engine Extraction: Brain Core physically moved into `lattice_brain`
|
|
247
|
-
| 4.3.3 | Dead-Code Cleanup Release
|
|
248
|
-
| 4.3.2 | Product Polish & Graph UX Overhaul RC
|
|
249
|
-
| 4.3.1 | End-User Audit Repair RC
|
|
250
|
-
| 4.3.0 | Portability & Product Hardening RC
|
|
251
|
-
| 4.2.0 | Brain Core & Storage Rebuild
|
|
252
|
-
| 4.1.0 | Frontend & Desktop Rebuild
|
|
253
|
-
| 4.0.1 | Digital Brain maintenance
|
|
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 |
|
|
254
206
|
| 4.0.0 | Digital Brain Platform foundation |
|
|
255
207
|
| 3.0.0 | v3 local-first AI workspace platform |
|
|
256
208
|
|
|
257
209
|
## Current Documentation
|
|
258
210
|
|
|
259
|
-
- [ARCHITECTURE.md](ARCHITECTURE.md) - v4 architecture.
|
|
211
|
+
- [ARCHITECTURE.md](ARCHITECTURE.md) - v4.6.1 architecture.
|
|
260
212
|
- [FEATURE_STATUS.md](FEATURE_STATUS.md) - current feature status and historical
|
|
261
213
|
status ledger.
|
|
262
|
-
- [RELEASE_NOTES.md](RELEASE_NOTES.md) -
|
|
263
|
-
- [RELEASE_NOTES_v4.6.
|
|
264
|
-
- [RELEASE_NOTES_v4.
|
|
265
|
-
- [RELEASE_NOTES_v4.5.0.md](RELEASE_NOTES_v4.5.0.md) - v4.5.0 RC release notes.
|
|
266
|
-
- [RELEASE_NOTES_v4.4.0.md](RELEASE_NOTES_v4.4.0.md) - v4.4.0 release notes.
|
|
267
|
-
- [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.
|
|
268
217
|
- [RELEASE.md](RELEASE.md) - release checklist and exact artifact guidance.
|
|
269
218
|
- [SECURITY.md](SECURITY.md) - security posture.
|
|
270
219
|
- [docs/CHANGELOG.md](docs/CHANGELOG.md) - changelog.
|
|
271
|
-
- [docs/
|
|
272
|
-
- [docs/
|
|
273
|
-
- [docs/V4_5_0_PRODUCT_EXPERIENCE_RECOVERY_REPORT.md](docs/V4_5_0_PRODUCT_EXPERIENCE_RECOVERY_REPORT.md) - v4.5.0 product recovery report.
|
|
274
|
-
- [docs/V4_5_0_VALIDATION_REPORT.md](docs/V4_5_0_VALIDATION_REPORT.md) - v4.5.0 validation report.
|
|
275
|
-
- [docs/V4_5_1_PRODUCT_REIMAGINING_REPORT.md](docs/V4_5_1_PRODUCT_REIMAGINING_REPORT.md) - v4.5.1 product reimagining report.
|
|
276
|
-
- [docs/V4_5_1_UX_REPORT.md](docs/V4_5_1_UX_REPORT.md) - v4.5.1 UX report.
|
|
277
|
-
- [docs/V4_5_1_VISUAL_DESIGN_REPORT.md](docs/V4_5_1_VISUAL_DESIGN_REPORT.md) - v4.5.1 visual design report.
|
|
278
|
-
- [docs/V4_5_1_NAVIGATION_REPORT.md](docs/V4_5_1_NAVIGATION_REPORT.md) - v4.5.1 navigation report.
|
|
279
|
-
- [docs/V4_5_1_ONBOARDING_REPORT.md](docs/V4_5_1_ONBOARDING_REPORT.md) - v4.5.1 onboarding report.
|
|
280
|
-
- [docs/V4_5_1_MODEL_EXPERIENCE_REPORT.md](docs/V4_5_1_MODEL_EXPERIENCE_REPORT.md) - v4.5.1 model experience report.
|
|
281
|
-
- [docs/V4_5_1_GRAPH_EXPERIENCE_REPORT.md](docs/V4_5_1_GRAPH_EXPERIENCE_REPORT.md) - v4.5.1 graph experience report.
|
|
282
|
-
- [docs/V4_5_1_VALIDATION_REPORT.md](docs/V4_5_1_VALIDATION_REPORT.md) - v4.5.1 validation report.
|
|
283
|
-
- [docs/V4_5_1_RC_ARTIFACTS.md](docs/V4_5_1_RC_ARTIFACTS.md) - v4.5.1 screenshot, GIF, and RC artifact manifest.
|
|
284
|
-
- [docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md](docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md) - v4.6.0 Living Brain design and validation notes.
|
|
285
|
-
- [docs/V4_3_2_GRAPH_UX_REPORT.md](docs/V4_3_2_GRAPH_UX_REPORT.md) - graph UX report.
|
|
286
|
-
- [docs/V4_3_2_PRODUCT_POLISH_REPORT.md](docs/V4_3_2_PRODUCT_POLISH_REPORT.md) - product polish report.
|
|
287
|
-
- [docs/V4_3_2_SELF_AUDIT_REPORT.md](docs/V4_3_2_SELF_AUDIT_REPORT.md) - self-audit evidence.
|
|
288
|
-
- [docs/V4_3_2_VALIDATION_REPORT.md](docs/V4_3_2_VALIDATION_REPORT.md) - RC validation report.
|
|
289
|
-
- [docs/V4_3_2_DOCUMENTATION_CLEANUP_REPORT.md](docs/V4_3_2_DOCUMENTATION_CLEANUP_REPORT.md) - release-prep documentation cleanup report.
|
|
290
|
-
- [docs/V4_3_2_GITHUB_VERCEL_CHECK_REPORT.md](docs/V4_3_2_GITHUB_VERCEL_CHECK_REPORT.md) - GitHub/Vercel readiness report.
|
|
291
|
-
- [docs/V4_3_2_INDEPENDENT_AUDIT_PACKAGE.md](docs/V4_3_2_INDEPENDENT_AUDIT_PACKAGE.md) - package for an independent reviewer.
|
|
292
|
-
- [docs/V4_3_2_DEADCODE_AUDIT_REPORT.md](docs/V4_3_2_DEADCODE_AUDIT_REPORT.md) - independent dead-code, architecture, and runtime audit.
|
|
293
|
-
- [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.
|
|
294
222
|
|
|
295
223
|
## License
|
|
296
224
|
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,86 @@
|
|
|
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
|
+
|
|
6
83
|
## [4.6.0] - 2026-06-13
|
|
7
84
|
|
|
8
|
-
> Living Brain Experience release after the v4.5.1 product shell reset.
|
|
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.)
|
|
9
86
|
|
|
10
87
|
### Changed
|
|
11
88
|
|
|
@@ -5,23 +5,26 @@
|
|
|
5
5
|
v4.6.0 stops presenting Lattice AI as a graph product or dashboard. The
|
|
6
6
|
first-run product flow is Login -> Environment Analysis -> Recommended Models
|
|
7
7
|
-> Install & Load -> Brain. After setup, the Brain is the center of the desktop
|
|
8
|
-
experience, and the graph is repositioned as
|
|
9
|
-
|
|
8
|
+
experience, and the graph is repositioned as the deepest layer inside Brain
|
|
9
|
+
exploration rather than a separate destination.
|
|
10
10
|
|
|
11
11
|
## Product Changes
|
|
12
12
|
|
|
13
13
|
- First launch opens to a premium minimal Login screen only.
|
|
14
14
|
- Setup runs as a full-screen guided sequence: friendly environment analysis,
|
|
15
15
|
short ranked model recommendations, and install/download/validate/load.
|
|
16
|
-
- After model load, `/app` and
|
|
17
|
-
- The living Brain remains visible during primary conversation and reacts to
|
|
18
|
-
listening, recall, thinking, and active agent/workflow signals.
|
|
19
|
-
- `/app#/ask` and `/app#/chat` remain compatible but route to the Brain
|
|
16
|
+
- After model load, `/app` and compatible legacy entry URLs open into Brain plus
|
|
20
17
|
conversation.
|
|
21
|
-
-
|
|
22
|
-
and
|
|
23
|
-
|
|
24
|
-
|
|
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.
|
|
25
28
|
- First-run setup no longer appears as dashboard cards above any app page; it
|
|
26
29
|
gates the app before the Brain opens.
|
|
27
30
|
|
|
@@ -29,23 +32,25 @@ relationship exploration.
|
|
|
29
32
|
|
|
30
33
|
- Added `frontend/src/components/LivingBrain.tsx` as the animated Brain
|
|
31
34
|
presence component.
|
|
32
|
-
-
|
|
33
|
-
|
|
34
|
-
|
|
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.
|
|
35
39
|
- Added `frontend/src/components/ProductFlow.tsx` to own Login, environment
|
|
36
40
|
analysis, recommendation, install/download/validate/load, and Brain entry.
|
|
37
|
-
- Kept graph
|
|
38
|
-
|
|
41
|
+
- Kept graph APIs, memory APIs, search, provenance, portability, and archive
|
|
42
|
+
APIs intact.
|
|
39
43
|
- Kept FastAPI, Tauri, StorageEngine, Brain Core, backup/restore, and
|
|
40
44
|
portability unchanged.
|
|
41
45
|
|
|
42
46
|
## Compatibility
|
|
43
47
|
|
|
44
48
|
- Existing backend routes are unchanged.
|
|
45
|
-
- Legacy hash routes continue to
|
|
46
|
-
- The advanced graph remains available
|
|
47
|
-
|
|
48
|
-
|
|
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.
|
|
49
54
|
|
|
50
55
|
## Validation Scope
|
|
51
56
|
|
|
@@ -56,3 +61,12 @@ The v4.6.0 work should be validated with:
|
|
|
56
61
|
- affected visual tests
|
|
57
62
|
- unit tests covering version consistency and route compatibility
|
|
58
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.
|