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
@@ -5,21 +5,22 @@
5
5
  > completed analysis. **Update this file before ending any phase and before any
6
6
  > likely session/context/usage limit.**
7
7
  >
8
- > Last updated: 2026-06-13 — v4.5.1 Product Reimagining RC; Remaining Gaps remain empty
8
+ > Last updated: 2026-06-14 — v4.6.1 Living Brain Release Refresh; Remaining Gaps remain empty
9
9
 
10
10
  ---
11
11
 
12
- ## 0. RELEASE STATUS (v4.5.1)
13
-
14
- **v4.5.1 reimagines the desktop product surface after the v4.5.0 capability
15
- recovery without changing Brain Core, storage, API, model runtime, backup,
16
- portability, or agent/workflow behavior.** Current implementation milestone:
17
- new Home/Ask/Add/Automate/Library/Care navigation, compact desktop chrome,
18
- first-session journey, command palette, responsive mobile drawer, and refreshed
19
- Digital Brain visual system.
20
- The v4.5.1 RC process builds locally validated artifacts only. Tagging, GitHub
21
- Release creation, PyPI, npm Registry, VS Code Marketplace, Open VSX, and
22
- production deployments remain out of scope for this RC.
12
+ ## 0. RELEASE STATUS (v4.6.1)
13
+
14
+ **v4.6.1 is the publishable Living Brain release refresh after the v4.6.0 PyPI
15
+ immutability block. It keeps the v4.6.0 Living Brain implementation without
16
+ changing Brain Core, storage, API, model runtime, backup, portability, or
17
+ agent/workflow behavior.** Current implementation milestone: Brain plus
18
+ conversation is the home screen, the living Brain is always visible during the
19
+ primary conversation experience, and graph exploration is preserved as the
20
+ deepest intentional layer behind Memories, Knowledge, and Relationships.
21
+ The v4.6.1 process builds locally validated artifacts, tag, and GitHub Release
22
+ assets. PyPI, npm Registry, VS Code Marketplace, Open VSX, and production
23
+ deployments remain out of scope unless explicitly requested.
23
24
  Remaining implementation gaps: **none**.
24
25
  Owner-only blockers: pptx history rewrite (requires force-push/owner decision)
25
26
  and consent-gated production embedder provisioning (silent default download is
@@ -27,11 +28,12 @@ not permitted).
27
28
 
28
29
  ## Remaining Gaps
29
30
 
30
- None. v4.5.1 preserves the already-empty v4.3.2/v4.3.3/v4.5.0 gap list and
31
- promotes the product-reimagining tree: Brain graph exploration remains real and
32
- API-backed, readable product state remains in place, archive import/restore
33
- flows remain exposed through existing APIs, desktop sidecar behavior remains
34
- validated, and exact v4.5.1 RC artifacts are the validation target.
31
+ None. v4.6.1 preserves the already-empty v4.3.2/v4.3.3/v4.5.0/v4.5.1/v4.6.0
32
+ gap list and promotes the Living Brain tree: Brain conversation is primary, graph
33
+ exploration remains real and API-backed, readable product state remains in
34
+ place, archive import/restore flows remain exposed through existing APIs,
35
+ desktop sidecar behavior remains validated, and exact v4.6.1 artifacts are the
36
+ validation target.
35
37
  Owner-only blockers above are intentionally not implementation gaps.
36
38
 
37
39
  ## 1. Program Charter (from the user's v4.0.0 directive)
@@ -4,7 +4,7 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
6
6
  <meta name="color-scheme" content="dark light" />
7
- <title>Lattice AI · Digital Brain</title>
7
+ <title>Lattice AI · Living Brain</title>
8
8
  <link rel="manifest" href="/manifest.json" />
9
9
  <link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32.png" />
10
10
  <script>
@@ -18,7 +18,7 @@
18
18
  </head>
19
19
  <body>
20
20
  <div id="root"></div>
21
- <noscript>Lattice AI requires JavaScript for the local Digital Brain desktop shell.</noscript>
21
+ <noscript>Lattice AI requires JavaScript for the local Living Brain desktop shell.</noscript>
22
22
  <script type="module" src="/src/main.tsx"></script>
23
23
  </body>
24
24
  </html>