ltcai 4.6.1 → 4.7.2
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 +74 -40
- package/docs/CHANGELOG.md +141 -0
- package/docs/PRODUCT_DIRECTION_REVIEW.md +88 -0
- package/docs/V4_7_0_ADMIN_SEPARATION_REPORT.md +42 -0
- package/docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md +49 -0
- package/docs/V4_7_2_INTUITIVE_BRAIN_UX_REPORT.md +62 -0
- package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +22 -19
- package/frontend/src/App.tsx +627 -8
- package/frontend/src/api/client.ts +11 -1
- package/frontend/src/components/ProductFlow.tsx +106 -51
- package/frontend/src/pages/System.tsx +1 -1
- package/frontend/src/styles.css +905 -81
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/archive.py +86 -13
- package/lattice_brain/portability.py +82 -14
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/admin.py +141 -6
- package/latticeai/api/chat.py +35 -13
- package/latticeai/app_factory.py +8 -4
- package/latticeai/core/audit.py +3 -2
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +1 -1
- package/package.json +2 -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-DdAB4yfa.js +16 -0
- package/static/app/assets/index-DdAB4yfa.js.map +1 -0
- package/static/app/assets/{index-7U86v70r.css → index-KlQ04wVv.css} +1 -1
- package/static/app/index.html +2 -2
- package/static/app/assets/index-D1jAPQws.js +0 -16
- package/static/app/assets/index-D1jAPQws.js.map +0 -1
|
@@ -5,22 +5,24 @@
|
|
|
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-14 — v4.
|
|
8
|
+
> Last updated: 2026-06-14 — v4.7.2 Intuitive Brain UX Release; Remaining Gaps remain empty
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
## 0. RELEASE STATUS (v4.
|
|
13
|
-
|
|
14
|
-
**v4.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
## 0. RELEASE STATUS (v4.7.2)
|
|
13
|
+
|
|
14
|
+
**v4.7.2 is the Intuitive Brain UX Release. It keeps the Living Brain
|
|
15
|
+
implementation without changing Brain Core, storage, API, model runtime, backup,
|
|
16
|
+
portability, or agent/workflow behavior.** Current implementation milestone:
|
|
17
|
+
Brain plus conversation is the home screen, the living Brain is always visible
|
|
18
|
+
during the primary conversation experience, users can open memory, topic,
|
|
19
|
+
relationship, and graph views directly, saved-profile mistakes no longer create
|
|
20
|
+
a new empty Brain, and operators use a separate Admin Console for users, logs,
|
|
21
|
+
security events, policies, and Brain operations.
|
|
22
|
+
The v4.7.2 process builds locally validated artifacts, tag, and GitHub Release
|
|
23
|
+
assets. PyPI, npm Registry, VS Code Marketplace, and Open VSX publishing remain
|
|
24
|
+
owner-run for v4.7.2 and are not automated by this release process.
|
|
25
|
+
Production deployments remain out of scope unless explicitly requested.
|
|
24
26
|
Remaining implementation gaps: **none**.
|
|
25
27
|
Owner-only blockers: pptx history rewrite (requires force-push/owner decision)
|
|
26
28
|
and consent-gated production embedder provisioning (silent default download is
|
|
@@ -28,12 +30,13 @@ not permitted).
|
|
|
28
30
|
|
|
29
31
|
## Remaining Gaps
|
|
30
32
|
|
|
31
|
-
None. v4.
|
|
32
|
-
gap list and promotes the Living Brain tree: Brain conversation is primary,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
33
|
+
None. v4.7.2 preserves the already-empty v4.3.2/v4.3.3/v4.5.0/v4.5.1/v4.6.0
|
|
34
|
+
gap list and promotes the Living Brain tree: Brain conversation is primary,
|
|
35
|
+
admin operations are separate, direct Brain views expose memory/topic/graph
|
|
36
|
+
state without making the UI developer-centric, graph exploration remains real
|
|
37
|
+
and API-backed, readable product state remains in place, archive import/restore
|
|
38
|
+
flows remain exposed through existing APIs, desktop sidecar behavior remains
|
|
39
|
+
validated, and exact v4.7.2 artifacts are the validation target.
|
|
37
40
|
Owner-only blockers above are intentionally not implementation gaps.
|
|
38
41
|
|
|
39
42
|
## 1. Program Charter (from the user's v4.0.0 directive)
|