ltcai 4.6.1 → 4.7.0
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 +60 -37
- package/docs/CHANGELOG.md +61 -0
- package/docs/PRODUCT_DIRECTION_REVIEW.md +88 -0
- package/docs/V4_7_0_ADMIN_SEPARATION_REPORT.md +42 -0
- package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +20 -19
- package/frontend/src/App.tsx +449 -6
- package/frontend/src/api/client.ts +2 -0
- package/frontend/src/components/ProductFlow.tsx +28 -5
- package/frontend/src/styles.css +620 -1
- 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 +30 -4
- package/latticeai/api/chat.py +25 -11
- package/latticeai/app_factory.py +8 -2
- 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 +1 -1
- package/scripts/launch-pts-grok.sh +56 -0
- 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 → index-DFmuiJ6t.css} +1 -1
- package/static/app/assets/index-DwX3rNfA.js +16 -0
- package/static/app/assets/index-DwX3rNfA.js.map +1 -0
- 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
package/README.md
CHANGED
|
@@ -7,56 +7,61 @@
|
|
|
7
7
|
[](https://github.com/TaeSooPark-PTS/LatticeAI/actions/workflows/ci.yml)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
-
**Lattice AI v4.
|
|
11
|
-
the v4 Brain Core, StorageEngine, FastAPI localhost API, Tauri shell,
|
|
12
|
-
restore, model runtime, graph, and portability architecture intact while
|
|
13
|
-
the
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
The product opens
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
10
|
+
**Lattice AI v4.7.0 is the local-first Living Brain admin separation release.**
|
|
11
|
+
It keeps the v4 Brain Core, StorageEngine, FastAPI localhost API, Tauri shell,
|
|
12
|
+
backup, restore, model runtime, graph, and portability architecture intact while
|
|
13
|
+
making the normal user surface simpler and moving logs, users, security events,
|
|
14
|
+
and Brain operations into a separate Admin Console.
|
|
15
|
+
|
|
16
|
+
The product opens by stating the core reason to exist: models will change, but
|
|
17
|
+
the user's knowledge should not. It creates a private local profile, studies the
|
|
18
|
+
computer, recommends a replaceable model voice, asks before install/download/load
|
|
19
|
+
work, then lands in Brain Chat with starter prompts for durable decisions,
|
|
20
|
+
projects, documents, and context. The graph is still real and searchable, but it
|
|
21
|
+
now grows out of the Brain as the deepest exploration layer instead of acting
|
|
22
|
+
like a separate dashboard.
|
|
20
23
|
|
|
21
24
|
External package registries are owner-published and can lag behind this GitHub
|
|
22
|
-
Release. Release uploads must use the exact v4.
|
|
25
|
+
Release. Release uploads must use the exact v4.7.0 artifact filenames below.
|
|
23
26
|
|
|
24
27
|
## Living Brain Flow
|
|
25
28
|
|
|
26
29
|
### 1. Login
|
|
27
30
|
|
|
28
31
|
First launch opens to Login only. The local profile is the beginning of the
|
|
29
|
-
Brain, not a dashboard, graph, or setup grid.
|
|
32
|
+
Brain, not a dashboard, graph, or setup grid. The first screen frames Lattice as
|
|
33
|
+
a durable knowledge home where models are replaceable and ownership stays with
|
|
34
|
+
the user.
|
|
30
35
|
|
|
31
|
-

|
|
32
37
|
|
|
33
38
|
### 2. Environment Analysis
|
|
34
39
|
|
|
35
40
|
Lattice reads the machine locally and summarizes what kind of Brain this
|
|
36
41
|
computer can support.
|
|
37
42
|
|
|
38
|
-

|
|
39
44
|
|
|
40
45
|
### 3. Recommended Models
|
|
41
46
|
|
|
42
47
|
The model step is a short recommendation list. It avoids catalog noise and keeps
|
|
43
48
|
runtime/install details behind clear user consent.
|
|
44
49
|
|
|
45
|
-

|
|
46
51
|
|
|
47
52
|
### 4. Install And Load
|
|
48
53
|
|
|
49
54
|
The install screen keeps consent visible and shows install, download, validate,
|
|
50
55
|
and load progress. No model download or runtime install starts silently.
|
|
51
56
|
|
|
52
|
-

|
|
53
58
|
|
|
54
59
|
### 5. Brain Chat
|
|
55
60
|
|
|
56
61
|
After setup, the home experience is the living Brain plus conversation. The Brain
|
|
57
62
|
stays present while the user types, recalls context, and receives responses.
|
|
58
63
|
|
|
59
|
-

|
|
60
65
|
|
|
61
66
|
## Brain Depths
|
|
62
67
|
|
|
@@ -65,22 +70,26 @@ while revealing more structure.
|
|
|
65
70
|
|
|
66
71
|
| Depth | Experience | Evidence |
|
|
67
72
|
| --- | --- | --- |
|
|
68
|
-
| Level 1 | Living Brain presence |  |
|
|
74
|
+
| Level 2 | Memory Layer |  |
|
|
75
|
+
| Level 3 | Knowledge Layer |  |
|
|
76
|
+
| Level 4 | Relationship Layer |  |
|
|
77
|
+
| Level 5 | Knowledge Graph with nodes, edges, search, and focus detail |  |
|
|
73
78
|
|
|
74
79
|
Walkthrough:
|
|
75
80
|
|
|
76
|
-

|
|
77
82
|
|
|
78
83
|
Model setup status evidence:
|
|
79
84
|
|
|
80
|
-

|
|
86
|
+
|
|
87
|
+
Separate admin console evidence:
|
|
88
|
+
|
|
89
|
+

|
|
81
90
|
|
|
82
91
|
Screenshot index and capture notes:
|
|
83
|
-
[output/release/v4.
|
|
92
|
+
[output/release/v4.7.0/SCREENSHOT_INDEX.md](output/release/v4.7.0/SCREENSHOT_INDEX.md)
|
|
84
93
|
|
|
85
94
|
## Architecture At A Glance
|
|
86
95
|
|
|
@@ -96,12 +105,21 @@ Screenshot index and capture notes:
|
|
|
96
105
|
- **Storage**: `StorageEngine` abstraction with SQLite default and optional
|
|
97
106
|
PostgreSQL/pgvector scale mode.
|
|
98
107
|
- **Portability**: encrypted `.latticebrain` archives plus backup, restore,
|
|
99
|
-
inspect, verify, import dry-run, and confirmed restore/import flows.
|
|
108
|
+
inspect, verify, import dry-run, and confirmed restore/import flows. The
|
|
109
|
+
Brain home keeps conversation first and surfaces the everyday "Care for my
|
|
110
|
+
Brain" ownership path as a collapsed control with export, backup, archive,
|
|
111
|
+
inspect, and restore preview actions while keeping destructive confirmed
|
|
112
|
+
restore in Settings. Restore operations create pre-restore backups and roll
|
|
113
|
+
back failed DB/blob swaps so the current Brain is not left half-restored.
|
|
100
114
|
- **Privacy**: local-first and private-first by default. Cloud models, Telegram,
|
|
101
115
|
Brain Network, Docker/Postgres setup, model downloads, and update checks are
|
|
102
116
|
opt-in paths.
|
|
117
|
+
- **Admin separation**: user chat and Brain ownership stay in the main Brain
|
|
118
|
+
surface; user directory, audit logs, security events, policies, and index
|
|
119
|
+
rebuild controls live under the separate `#/admin` console. Admin history,
|
|
120
|
+
audit, stats, and sensitivity reads honor the active workspace when present.
|
|
103
121
|
|
|
104
|
-
See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v4.
|
|
122
|
+
See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v4.7.0 architecture.
|
|
105
123
|
|
|
106
124
|
## Installation
|
|
107
125
|
|
|
@@ -133,13 +151,13 @@ pip install "ltcai[local]"
|
|
|
133
151
|
|
|
134
152
|
## Release Artifacts
|
|
135
153
|
|
|
136
|
-
Validated v4.
|
|
154
|
+
Validated v4.7.0 artifacts:
|
|
137
155
|
|
|
138
|
-
- `dist/ltcai-4.
|
|
139
|
-
- `dist/ltcai-4.
|
|
140
|
-
- `ltcai-4.
|
|
141
|
-
- `dist/ltcai-4.
|
|
142
|
-
- `src-tauri/target/release/bundle/dmg/Lattice AI_4.
|
|
156
|
+
- `dist/ltcai-4.7.0-py3-none-any.whl`
|
|
157
|
+
- `dist/ltcai-4.7.0.tar.gz`
|
|
158
|
+
- `ltcai-4.7.0.tgz`
|
|
159
|
+
- `dist/ltcai-4.7.0.vsix`
|
|
160
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_4.7.0_aarch64.dmg`
|
|
143
161
|
|
|
144
162
|
Attach only those exact files to the GitHub Release. Do not upload `dist/*`.
|
|
145
163
|
|
|
@@ -168,7 +186,7 @@ npm run test:unit
|
|
|
168
186
|
npm run test:integration
|
|
169
187
|
npm run test:visual
|
|
170
188
|
npm run desktop:tauri:check
|
|
171
|
-
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-4.
|
|
189
|
+
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-4.7.0-py3-none-any.whl
|
|
172
190
|
npm pack --dry-run
|
|
173
191
|
npm run docs:check-links
|
|
174
192
|
```
|
|
@@ -184,13 +202,14 @@ npm run docs:check-links
|
|
|
184
202
|
- Agent/workflow simulation without a loaded LLM is deterministic and does not call a model.
|
|
185
203
|
It is labeled as LLM-free/model-free rather than presented as autonomous model
|
|
186
204
|
success.
|
|
187
|
-
- Historical artifacts can remain in `dist/`; uploads must use exact v4.
|
|
205
|
+
- Historical artifacts can remain in `dist/`; uploads must use exact v4.7.0
|
|
188
206
|
filenames.
|
|
189
207
|
|
|
190
208
|
## Release History
|
|
191
209
|
|
|
192
210
|
| Version | Theme |
|
|
193
211
|
| --- | --- |
|
|
212
|
+
| 4.7.0 | Admin Separation Release: keeps the user Brain simple, adds a separate Admin Console for users/logs/security/Brain operations, refreshes screenshots/GIFs, synchronizes release docs, and builds exact v4.7.0 artifacts |
|
|
194
213
|
| 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
214
|
| 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 |
|
|
196
215
|
| 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 |
|
|
@@ -208,15 +227,19 @@ npm run docs:check-links
|
|
|
208
227
|
|
|
209
228
|
## Current Documentation
|
|
210
229
|
|
|
211
|
-
- [ARCHITECTURE.md](ARCHITECTURE.md) - v4.
|
|
230
|
+
- [ARCHITECTURE.md](ARCHITECTURE.md) - v4.7.0 architecture.
|
|
231
|
+
- [docs/PRODUCT_DIRECTION_REVIEW.md](docs/PRODUCT_DIRECTION_REVIEW.md) -
|
|
232
|
+
Brain-first product direction review.
|
|
212
233
|
- [FEATURE_STATUS.md](FEATURE_STATUS.md) - current feature status and historical
|
|
213
234
|
status ledger.
|
|
214
235
|
- [RELEASE_NOTES.md](RELEASE_NOTES.md) - release notes index.
|
|
215
|
-
- [RELEASE_NOTES_v4.
|
|
236
|
+
- [RELEASE_NOTES_v4.7.0.md](RELEASE_NOTES_v4.7.0.md) - v4.7.0 admin separation release notes.
|
|
237
|
+
- [RELEASE_NOTES_v4.6.1.md](RELEASE_NOTES_v4.6.1.md) - v4.6.1 release refresh history.
|
|
216
238
|
- [RELEASE_NOTES_v4.6.0.md](RELEASE_NOTES_v4.6.0.md) - v4.6.0 Living Brain history.
|
|
217
239
|
- [RELEASE.md](RELEASE.md) - release checklist and exact artifact guidance.
|
|
218
240
|
- [SECURITY.md](SECURITY.md) - security posture.
|
|
219
241
|
- [docs/CHANGELOG.md](docs/CHANGELOG.md) - changelog.
|
|
242
|
+
- [docs/V4_7_0_ADMIN_SEPARATION_REPORT.md](docs/V4_7_0_ADMIN_SEPARATION_REPORT.md) - v4.7.0 admin separation report.
|
|
220
243
|
- [docs/V4_6_1_RELEASE_REFRESH_REPORT.md](docs/V4_6_1_RELEASE_REFRESH_REPORT.md) - v4.6.1 release refresh report.
|
|
221
244
|
- [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.
|
|
222
245
|
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,51 @@
|
|
|
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.7.0] - 2026-06-14
|
|
7
|
+
|
|
8
|
+
> Admin Separation Release. v4.7.0 keeps the Living Brain as the simple user
|
|
9
|
+
> surface and moves users, logs, security events, policies, and Brain operations
|
|
10
|
+
> into a dedicated Admin Console with synchronized release metadata and
|
|
11
|
+
> publishable artifacts.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Added a separate `#/admin` Admin Console so the normal `/app` user experience
|
|
16
|
+
remains Brain + conversation instead of becoming an admin dashboard.
|
|
17
|
+
- Added admin overview metrics, user directory, audit log rows, security event
|
|
18
|
+
rows, policy chips, and Brain index rebuild controls to the admin-only
|
|
19
|
+
surface.
|
|
20
|
+
- Scoped admin history, audit, stats, and sensitivity endpoints by
|
|
21
|
+
`X-Workspace-Id` / `workspace_id` when a workspace is selected, while keeping
|
|
22
|
+
legacy global records visible in Personal workspace compatibility mode.
|
|
23
|
+
- Added frontend API helpers for `/admin/stats` and `/admin/security/events`,
|
|
24
|
+
reusing the existing FastAPI admin/security backend rather than inventing a
|
|
25
|
+
parallel logging store.
|
|
26
|
+
- Updated visual validation so the Admin Console route is checked separately
|
|
27
|
+
from the user Brain surface.
|
|
28
|
+
- Bumped synchronized package/runtime/static versions to `4.7.0`, including
|
|
29
|
+
Python metadata, npm package metadata, VSIX metadata, Tauri metadata,
|
|
30
|
+
`latticeai`, `lattice_brain`, runtime constants, and static asset metadata.
|
|
31
|
+
- Refreshed release screenshots/GIF paths and docs for v4.7.0, including Admin
|
|
32
|
+
Console evidence.
|
|
33
|
+
- Updated README, RELEASE.md, ARCHITECTURE.md, SECURITY.md, FEATURE_STATUS.md,
|
|
34
|
+
VS Code extension docs, release notes, and release report for the current
|
|
35
|
+
v4.7.0 release line.
|
|
36
|
+
|
|
37
|
+
### Preserved
|
|
38
|
+
|
|
39
|
+
- v4.6.1 and older sections remain historical.
|
|
40
|
+
- Local-first ownership, `.latticebrain` portability, rollback-safe restore,
|
|
41
|
+
and the deepest-layer Knowledge Graph behavior are preserved.
|
|
42
|
+
|
|
43
|
+
### Artifacts
|
|
44
|
+
|
|
45
|
+
- `dist/ltcai-4.7.0-py3-none-any.whl`
|
|
46
|
+
- `dist/ltcai-4.7.0.tar.gz`
|
|
47
|
+
- `dist/ltcai-4.7.0.vsix`
|
|
48
|
+
- `ltcai-4.7.0.tgz`
|
|
49
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_4.7.0_aarch64.dmg`
|
|
50
|
+
|
|
6
51
|
## [4.6.1] - 2026-06-14
|
|
7
52
|
|
|
8
53
|
> Living Brain release refresh and publishable version bump after the v4.6.0
|
|
@@ -12,6 +57,22 @@ historical and may describe behavior as it existed at that release.
|
|
|
12
57
|
|
|
13
58
|
### Changed
|
|
14
59
|
|
|
60
|
+
- Added a Brain-first product direction review and synchronized philosophy /
|
|
61
|
+
Knowledge Graph docs so the graph is documented as infrastructure inside the
|
|
62
|
+
Brain rather than the product center.
|
|
63
|
+
- Added a compact "Care for my Brain" ownership panel to the Brain home
|
|
64
|
+
experience, surfacing local-first/private/portable guarantees plus existing
|
|
65
|
+
export, backup, encrypted archive, inspect, and restore dry-run actions
|
|
66
|
+
without making the Knowledge Graph the product center.
|
|
67
|
+
- Refined the Brain home so conversation remains the primary surface and the
|
|
68
|
+
"Care for my Brain" ownership controls open only when requested, with action
|
|
69
|
+
results now reflecting the last completed ownership action.
|
|
70
|
+
- Strengthened first-run and empty-Brain product messaging around the core
|
|
71
|
+
promise that models are replaceable while the user's knowledge, decisions,
|
|
72
|
+
projects, and context are durable.
|
|
73
|
+
- Hardened Knowledge Graph backup restore and encrypted `.latticebrain` restore
|
|
74
|
+
so DB/blob replacement is staged with pre-restore backups and rollback on
|
|
75
|
+
partial failure.
|
|
15
76
|
- Bumped synchronized package/runtime/static versions to `4.6.1`, including
|
|
16
77
|
Python metadata, npm package metadata, VSIX metadata, Tauri metadata,
|
|
17
78
|
`latticeai`, `lattice_brain`, runtime constants, and static asset metadata.
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# Product Direction Review
|
|
2
|
+
|
|
3
|
+
Date: 2026-06-14
|
|
4
|
+
|
|
5
|
+
## Verdict
|
|
6
|
+
|
|
7
|
+
The direction is coherent and meaningfully differentiated: Lattice AI should be
|
|
8
|
+
positioned as a local-first Digital Brain, not as a graph database, note app,
|
|
9
|
+
dashboard, or model launcher.
|
|
10
|
+
|
|
11
|
+
The distinction between "Digital Brain" and "Knowledge Graph Product" is
|
|
12
|
+
important. A graph product asks users to operate a data structure. A Brain
|
|
13
|
+
product lets users converse with, grow, protect, and carry their own knowledge
|
|
14
|
+
over time. The graph remains valuable, but it is infrastructure and an advanced
|
|
15
|
+
inspection layer.
|
|
16
|
+
|
|
17
|
+
## Fit With Current Implementation
|
|
18
|
+
|
|
19
|
+
Already aligned:
|
|
20
|
+
|
|
21
|
+
- First launch follows Login -> Environment Analysis -> Recommended Models ->
|
|
22
|
+
Install & Load -> Brain.
|
|
23
|
+
- The post-setup home is the living Brain plus conversation.
|
|
24
|
+
- The graph appears only after progressive depth: Brain -> Memories ->
|
|
25
|
+
Knowledge -> Relationships -> Graph.
|
|
26
|
+
- Brain Core, SQLite default storage, optional PostgreSQL/pgvector scale mode,
|
|
27
|
+
backup/restore, and encrypted `.latticebrain` archives support user ownership.
|
|
28
|
+
- Models are treated as swappable runtime workers rather than the durable asset.
|
|
29
|
+
|
|
30
|
+
Gaps corrected in this review:
|
|
31
|
+
|
|
32
|
+
- `KNOWLEDGE_GRAPH.md` described the Knowledge Graph as the durable center. It
|
|
33
|
+
now states that the Brain is the product and the graph is durable
|
|
34
|
+
infrastructure inside it.
|
|
35
|
+
- `AI_PHILOSOPHY.md` now explicitly captures "models are temporary, knowledge is
|
|
36
|
+
durable" and the Brain-first interaction contract.
|
|
37
|
+
- The Brain home header now surfaces ownership guarantees: Local-first,
|
|
38
|
+
Portable, Private.
|
|
39
|
+
|
|
40
|
+
## Risks
|
|
41
|
+
|
|
42
|
+
- "Living Brain" can feel abstract if the user cannot quickly see value from
|
|
43
|
+
their own documents and conversations. The first successful recall moment must
|
|
44
|
+
happen early.
|
|
45
|
+
- A brain metaphor can become decorative if backup, restore, provenance, and
|
|
46
|
+
source evidence are hidden too deeply. The product should keep ownership and
|
|
47
|
+
evidence visible without becoming an admin console.
|
|
48
|
+
- Model setup is still a high-friction moment. The product should make the first
|
|
49
|
+
local model recommendation feel safe, short, and reversible.
|
|
50
|
+
- The graph layer must stay inspectable for power users without leaking graph
|
|
51
|
+
mechanics into the default experience.
|
|
52
|
+
|
|
53
|
+
## Comparisons
|
|
54
|
+
|
|
55
|
+
- Rewind / Limitless: personal memory, but Lattice should emphasize portable
|
|
56
|
+
user-owned Brain archives rather than capture-only recall.
|
|
57
|
+
- Obsidian / Logseq: durable personal knowledge, but Lattice should avoid making
|
|
58
|
+
users manually manage the graph.
|
|
59
|
+
- Notion AI / Mem: AI-assisted workspace memory, but Lattice should compete on
|
|
60
|
+
local-first ownership and model replaceability.
|
|
61
|
+
- AnythingLLM / LM Studio: local AI tooling, but Lattice should not be framed as
|
|
62
|
+
a model runner.
|
|
63
|
+
- Personal graph/RAG tools: relevant infrastructure peers, but not the product
|
|
64
|
+
category Lattice should lead with.
|
|
65
|
+
|
|
66
|
+
## Priority
|
|
67
|
+
|
|
68
|
+
1. Make first value unmistakable: ingest something, recall it in conversation,
|
|
69
|
+
show source evidence, and preserve it in the Brain.
|
|
70
|
+
2. Keep the Brain as home. Avoid reintroducing dashboards, model catalogs, or
|
|
71
|
+
graph explorers as the first screen.
|
|
72
|
+
3. Make Brain ownership tangible: backup, restore, export, inspect, and move
|
|
73
|
+
should be easy to find and phrased as care for the Brain.
|
|
74
|
+
4. Improve the early model path until it feels like choosing a voice for the
|
|
75
|
+
Brain rather than configuring inference infrastructure.
|
|
76
|
+
5. Keep graph power available as the deepest layer for advanced inspection.
|
|
77
|
+
6. Keep the product reason visible in the first experience: models are
|
|
78
|
+
replaceable, but the user's knowledge, decisions, projects, and context are
|
|
79
|
+
the durable asset.
|
|
80
|
+
|
|
81
|
+
## Product Answer
|
|
82
|
+
|
|
83
|
+
Yes, this is a product people could want if it reliably turns their own
|
|
84
|
+
knowledge into useful recall and keeps ownership credible. The strongest
|
|
85
|
+
positioning is:
|
|
86
|
+
|
|
87
|
+
Lattice AI is a local-first Digital Brain. It keeps your knowledge durable,
|
|
88
|
+
portable, private, and useful across changing models.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# v4.7.0 Admin Separation Report
|
|
2
|
+
|
|
3
|
+
## Scope
|
|
4
|
+
|
|
5
|
+
v4.7.0 turns Lattice AI into a cleaner product split: everyday users live in the
|
|
6
|
+
Living Brain, while operators use a dedicated Admin Console for observability and
|
|
7
|
+
maintenance. This release does not redesign Brain Core or the storage layer.
|
|
8
|
+
|
|
9
|
+
## Completed Areas
|
|
10
|
+
|
|
11
|
+
- Separated the admin route into `#/admin` while keeping `/app` focused on Brain
|
|
12
|
+
plus conversation.
|
|
13
|
+
- Added admin overview cards for users, recent logs, security, and Brain index
|
|
14
|
+
status.
|
|
15
|
+
- Added admin panels for user directory, audit logs, security events, policies,
|
|
16
|
+
and index rebuild operations.
|
|
17
|
+
- Added workspace-aware filtering for admin summary, stats, sensitivity, and
|
|
18
|
+
audit reads when the active workspace header/query is present.
|
|
19
|
+
- Added frontend API helpers for `/admin/stats` and `/admin/security/events`.
|
|
20
|
+
- Updated visual validation to confirm the admin console is separate from the
|
|
21
|
+
user Brain surface.
|
|
22
|
+
- Synchronized current-release version metadata to `4.7.0`.
|
|
23
|
+
- Updated README, RELEASE.md, release notes, changelog, architecture, security,
|
|
24
|
+
feature status, VS Code extension docs, and release evidence references.
|
|
25
|
+
|
|
26
|
+
## Evidence
|
|
27
|
+
|
|
28
|
+
Fresh v4.7.0 screenshots and walkthrough media are indexed in
|
|
29
|
+
[output/release/v4.7.0/SCREENSHOT_INDEX.md](../output/release/v4.7.0/SCREENSHOT_INDEX.md).
|
|
30
|
+
|
|
31
|
+
## Expected Artifacts
|
|
32
|
+
|
|
33
|
+
- `dist/ltcai-4.7.0-py3-none-any.whl`
|
|
34
|
+
- `dist/ltcai-4.7.0.tar.gz`
|
|
35
|
+
- `dist/ltcai-4.7.0.vsix`
|
|
36
|
+
- `ltcai-4.7.0.tgz`
|
|
37
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_4.7.0_aarch64.dmg`
|
|
38
|
+
|
|
39
|
+
## Validation Checklist
|
|
40
|
+
|
|
41
|
+
The final release report records command results, artifact SHA256 hashes, commit,
|
|
42
|
+
tag, push, GitHub Release URL, and package registry publish status.
|
|
@@ -5,22 +5,23 @@
|
|
|
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.0 Admin Separation 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
|
-
The v4.
|
|
22
|
-
assets. PyPI, npm Registry, VS Code Marketplace, Open VSX
|
|
23
|
-
|
|
12
|
+
## 0. RELEASE STATUS (v4.7.0)
|
|
13
|
+
|
|
14
|
+
**v4.7.0 is the Admin Separation 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, graph exploration is preserved as
|
|
19
|
+
the deepest intentional layer, and operators use a separate Admin Console for
|
|
20
|
+
users, logs, security events, policies, and Brain operations.
|
|
21
|
+
The v4.7.0 process builds locally validated artifacts, tag, and GitHub Release
|
|
22
|
+
assets. PyPI, npm Registry, VS Code Marketplace, and Open VSX publishing are
|
|
23
|
+
explicitly requested for v4.7.0 and are gated by available owner credentials.
|
|
24
|
+
Production deployments remain out of scope unless explicitly requested.
|
|
24
25
|
Remaining implementation gaps: **none**.
|
|
25
26
|
Owner-only blockers: pptx history rewrite (requires force-push/owner decision)
|
|
26
27
|
and consent-gated production embedder provisioning (silent default download is
|
|
@@ -28,12 +29,12 @@ not permitted).
|
|
|
28
29
|
|
|
29
30
|
## Remaining Gaps
|
|
30
31
|
|
|
31
|
-
None. v4.
|
|
32
|
-
gap list and promotes the Living Brain tree: Brain conversation is primary,
|
|
33
|
-
exploration remains real and API-backed,
|
|
34
|
-
place, archive import/restore flows remain
|
|
35
|
-
desktop sidecar behavior remains validated, and
|
|
36
|
-
validation target.
|
|
32
|
+
None. v4.7.0 preserves the already-empty v4.3.2/v4.3.3/v4.5.0/v4.5.1/v4.6.0
|
|
33
|
+
gap list and promotes the Living Brain tree: Brain conversation is primary,
|
|
34
|
+
admin operations are separate, graph exploration remains real and API-backed,
|
|
35
|
+
readable product state remains in place, archive import/restore flows remain
|
|
36
|
+
exposed through existing APIs, desktop sidecar behavior remains validated, and
|
|
37
|
+
exact v4.7.0 artifacts are the validation target.
|
|
37
38
|
Owner-only blockers above are intentionally not implementation gaps.
|
|
38
39
|
|
|
39
40
|
## 1. Program Charter (from the user's v4.0.0 directive)
|