ltcai 4.7.2 → 5.0.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 +32 -32
- package/docs/CHANGELOG.md +39 -0
- package/frontend/src/App.tsx +104 -69
- package/frontend/src/components/ProductFlow.tsx +102 -69
- package/frontend/src/i18n.ts +245 -0
- package/frontend/src/store/appStore.ts +18 -0
- package/frontend/src/styles.css +36 -0
- 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-KlQ04wVv.css → index-DuYYT2oh.css} +1 -1
- package/static/app/assets/index-FR1UZkCD.js +16 -0
- package/static/app/assets/index-FR1UZkCD.js.map +1 -0
- package/static/app/index.html +2 -2
- package/static/app/assets/index-DdAB4yfa.js +0 -16
- package/static/app/assets/index-DdAB4yfa.js.map +0 -1
package/README.md
CHANGED
|
@@ -7,12 +7,11 @@
|
|
|
7
7
|
[](https://github.com/TaeSooPark-PTS/LatticeAI/actions/workflows/ci.yml)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
|
-
**Lattice AI
|
|
10
|
+
**Lattice AI v5.0.0 is the local-first Living Brain multilingual foundation release.**
|
|
11
11
|
It keeps the v4 Brain Core, StorageEngine, FastAPI localhost API, Tauri shell,
|
|
12
12
|
backup, restore, model runtime, graph, and portability architecture intact while
|
|
13
13
|
making the normal user surface easier for non-technical users: safer login,
|
|
14
|
-
clearer model setup, one-click Memory/Topic/Relationship/Graph views, and
|
|
15
|
-
visible feedback when conversation becomes Brain memory. Admin logs, role
|
|
14
|
+
clearer model setup, one-click Memory/Topic/Relationship/Graph views, visible feedback when conversation becomes Brain memory, and Korean/English language choice across first-run and Brain screens. Admin logs, role
|
|
16
15
|
permissions, security events, retention posture, and Brain operations remain in
|
|
17
16
|
the separate Admin Console.
|
|
18
17
|
|
|
@@ -25,7 +24,7 @@ memory, topics, relationships, and the full graph, so the graph is still real
|
|
|
25
24
|
and searchable without becoming the first screen or a separate dashboard.
|
|
26
25
|
|
|
27
26
|
External package registries are owner-published and can lag behind this GitHub
|
|
28
|
-
Release. Release uploads must use the exact
|
|
27
|
+
Release. Release uploads must use the exact v5.0.0 artifact filenames below.
|
|
29
28
|
|
|
30
29
|
## Living Brain Flow
|
|
31
30
|
|
|
@@ -34,17 +33,17 @@ Release. Release uploads must use the exact v4.7.2 artifact filenames below.
|
|
|
34
33
|
First launch opens to Login only. The local profile is the beginning of the
|
|
35
34
|
Brain, not a dashboard, graph, or setup grid. The first screen frames Lattice as
|
|
36
35
|
a durable knowledge home where models are replaceable and ownership stays with
|
|
37
|
-
the user.
|
|
36
|
+
the user. v5.0.0 also prevents an email typo or wrong saved-user password from
|
|
38
37
|
silently creating a new empty Brain.
|
|
39
38
|
|
|
40
|
-

|
|
41
40
|
|
|
42
41
|
### 2. Environment Analysis
|
|
43
42
|
|
|
44
43
|
Lattice reads the machine locally and summarizes what kind of Brain this
|
|
45
44
|
computer can support.
|
|
46
45
|
|
|
47
|
-

|
|
48
47
|
|
|
49
48
|
### 3. Recommended Models
|
|
50
49
|
|
|
@@ -52,7 +51,7 @@ The model step is a short recommendation list. It avoids catalog noise and keeps
|
|
|
52
51
|
runtime/install details behind clear user consent. Users who do not know which
|
|
53
52
|
model to choose can start with the recommended model in one click.
|
|
54
53
|
|
|
55
|
-

|
|
56
55
|
|
|
57
56
|
### 4. Install And Load
|
|
58
57
|
|
|
@@ -61,7 +60,7 @@ and load progress. No model download or runtime install starts silently, and the
|
|
|
61
60
|
screen explains that large downloads may take minutes without inventing fake ETA
|
|
62
61
|
data.
|
|
63
62
|
|
|
64
|
-

|
|
65
64
|
|
|
66
65
|
### 5. Brain Chat
|
|
67
66
|
|
|
@@ -70,7 +69,7 @@ stays present while the user types, recalls context, and receives responses. The
|
|
|
70
69
|
home now includes a compact Brain overview for recent memories, older memories,
|
|
71
70
|
and major topics, plus saved-to-memory feedback after chat.
|
|
72
71
|
|
|
73
|
-

|
|
74
73
|
|
|
75
74
|
## Brain Depths
|
|
76
75
|
|
|
@@ -79,26 +78,26 @@ while revealing more structure.
|
|
|
79
78
|
|
|
80
79
|
| Depth | Experience | Evidence |
|
|
81
80
|
| --- | --- | --- |
|
|
82
|
-
| Level 1 | Living Brain presence |  |
|
|
82
|
+
| Level 2 | Memory Layer |  |
|
|
83
|
+
| Level 3 | Knowledge Layer |  |
|
|
84
|
+
| Level 4 | Relationship Layer |  |
|
|
85
|
+
| Level 5 | Knowledge Graph with nodes, edges, search, and focus detail |  |
|
|
87
86
|
|
|
88
87
|
Walkthrough:
|
|
89
88
|
|
|
90
|
-

|
|
91
90
|
|
|
92
91
|
Model setup status evidence:
|
|
93
92
|
|
|
94
|
-

|
|
95
94
|
|
|
96
95
|
Separate admin console evidence:
|
|
97
96
|
|
|
98
|
-

|
|
99
98
|
|
|
100
99
|
Screenshot index and capture notes:
|
|
101
|
-
[output/release/
|
|
100
|
+
[output/release/v5.0.0/SCREENSHOT_INDEX.md](output/release/v5.0.0/SCREENSHOT_INDEX.md)
|
|
102
101
|
|
|
103
102
|
## Architecture At A Glance
|
|
104
103
|
|
|
@@ -128,7 +127,7 @@ Screenshot index and capture notes:
|
|
|
128
127
|
rebuild controls live under the separate `#/admin` console. Admin history,
|
|
129
128
|
audit, stats, and sensitivity reads honor the active workspace when present.
|
|
130
129
|
|
|
131
|
-
See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed
|
|
130
|
+
See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v5.0.0 architecture.
|
|
132
131
|
|
|
133
132
|
## Installation
|
|
134
133
|
|
|
@@ -160,13 +159,13 @@ pip install "ltcai[local]"
|
|
|
160
159
|
|
|
161
160
|
## Release Artifacts
|
|
162
161
|
|
|
163
|
-
Validated
|
|
162
|
+
Validated v5.0.0 artifacts:
|
|
164
163
|
|
|
165
|
-
- `dist/ltcai-
|
|
166
|
-
- `dist/ltcai-
|
|
167
|
-
- `ltcai-
|
|
168
|
-
- `dist/ltcai-
|
|
169
|
-
- `src-tauri/target/release/bundle/dmg/Lattice
|
|
164
|
+
- `dist/ltcai-5.0.0-py3-none-any.whl`
|
|
165
|
+
- `dist/ltcai-5.0.0.tar.gz`
|
|
166
|
+
- `ltcai-5.0.0.tgz`
|
|
167
|
+
- `dist/ltcai-5.0.0.vsix`
|
|
168
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_5.0.0_aarch64.dmg`
|
|
170
169
|
|
|
171
170
|
Attach only those exact files to the GitHub Release. Do not upload `dist/*`.
|
|
172
171
|
|
|
@@ -195,7 +194,7 @@ npm run test:unit
|
|
|
195
194
|
npm run test:integration
|
|
196
195
|
npm run test:visual
|
|
197
196
|
npm run desktop:tauri:check
|
|
198
|
-
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-
|
|
197
|
+
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-5.0.0-py3-none-any.whl
|
|
199
198
|
npm pack --dry-run
|
|
200
199
|
npm run docs:check-links
|
|
201
200
|
```
|
|
@@ -211,14 +210,15 @@ npm run docs:check-links
|
|
|
211
210
|
- Agent/workflow simulation without a loaded LLM is deterministic and does not call a model.
|
|
212
211
|
It is labeled as LLM-free/model-free rather than presented as autonomous model
|
|
213
212
|
success.
|
|
214
|
-
- Historical artifacts can remain in `dist/`; uploads must use exact
|
|
213
|
+
- Historical artifacts can remain in `dist/`; uploads must use exact v5.0.0
|
|
215
214
|
filenames.
|
|
216
215
|
|
|
217
216
|
## Release History
|
|
218
217
|
|
|
219
218
|
| Version | Theme |
|
|
220
219
|
| --- | --- |
|
|
221
|
-
|
|
|
220
|
+
| 5.0.0 | Multilingual Brain Foundation Release: adds persisted Korean/English language choice across first-run onboarding, Brain home, graph exploration, and Admin Console while preserving the v4 runtime foundations |
|
|
221
|
+
| 4.7.2 | Intuitive Brain UX Release: safer login, one-click recommended setup, direct Brain views, memory-save feedback, and exact v4.7.2 artifacts |
|
|
222
222
|
| 4.7.0 | Admin Separation Release: added the separate Admin Console for users/logs/security/Brain operations, refreshed screenshots/GIFs, synchronized release docs, and built exact v4.7.0 artifacts |
|
|
223
223
|
| 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 |
|
|
224
224
|
| 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 |
|
|
@@ -237,19 +237,19 @@ npm run docs:check-links
|
|
|
237
237
|
|
|
238
238
|
## Current Documentation
|
|
239
239
|
|
|
240
|
-
- [ARCHITECTURE.md](ARCHITECTURE.md) -
|
|
240
|
+
- [ARCHITECTURE.md](ARCHITECTURE.md) - v5.0.0 architecture.
|
|
241
241
|
- [docs/PRODUCT_DIRECTION_REVIEW.md](docs/PRODUCT_DIRECTION_REVIEW.md) -
|
|
242
242
|
Brain-first product direction review.
|
|
243
243
|
- [FEATURE_STATUS.md](FEATURE_STATUS.md) - current feature status and historical
|
|
244
244
|
status ledger.
|
|
245
245
|
- [RELEASE_NOTES.md](RELEASE_NOTES.md) - release notes index.
|
|
246
|
-
- [
|
|
246
|
+
- [RELEASE_NOTES_v5.0.0.md](RELEASE_NOTES_v5.0.0.md) - v5.0.0 intuitive Brain UX release notes.
|
|
247
247
|
- [RELEASE_NOTES_v4.6.1.md](RELEASE_NOTES_v4.6.1.md) - v4.6.1 release refresh history.
|
|
248
248
|
- [RELEASE_NOTES_v4.6.0.md](RELEASE_NOTES_v4.6.0.md) - v4.6.0 Living Brain history.
|
|
249
249
|
- [RELEASE.md](RELEASE.md) - release checklist and exact artifact guidance.
|
|
250
250
|
- [SECURITY.md](SECURITY.md) - security posture.
|
|
251
251
|
- [docs/CHANGELOG.md](docs/CHANGELOG.md) - changelog.
|
|
252
|
-
- [docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md](docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md) -
|
|
252
|
+
- [docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md](docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md) - v5.0.0 admin operations report.
|
|
253
253
|
- [docs/V4_7_0_ADMIN_SEPARATION_REPORT.md](docs/V4_7_0_ADMIN_SEPARATION_REPORT.md) - v4.7.0 admin separation history.
|
|
254
254
|
- [docs/V4_6_1_RELEASE_REFRESH_REPORT.md](docs/V4_6_1_RELEASE_REFRESH_REPORT.md) - v4.6.1 release refresh report.
|
|
255
255
|
- [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.
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,45 @@
|
|
|
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
|
+
## [5.0.0] - 2026-06-14
|
|
7
|
+
|
|
8
|
+
> Multilingual Brain Foundation Release. v5.0.0 starts the major-version cleanup
|
|
9
|
+
> line by preserving the existing AgentRuntime, ToolRegistry, Brain Core, Admin
|
|
10
|
+
> Console, and graph foundations while making the product usable in Korean or
|
|
11
|
+
> English from first launch through Brain exploration.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Added a persisted `lattice.language` preference with Korean and English
|
|
16
|
+
choices available on first-run onboarding, the Brain home, and the separated
|
|
17
|
+
Admin Console header.
|
|
18
|
+
- Localized first-run login, environment analysis, model recommendation,
|
|
19
|
+
install/download/load status, Brain quick views, starter prompts, memory save
|
|
20
|
+
feedback, overview panels, and graph focus fallback copy.
|
|
21
|
+
- Updated visual tests so the Korean path is explicitly selected before running
|
|
22
|
+
existing first-run and Brain depth assertions.
|
|
23
|
+
- Bumped synchronized package/runtime/static versions to `5.0.0`, including
|
|
24
|
+
Python metadata, npm package metadata, VSIX metadata, Tauri metadata,
|
|
25
|
+
`latticeai`, `lattice_brain`, runtime constants, and static asset metadata.
|
|
26
|
+
- Captured collaboration guidance from pts_claudecode and pts_grok: the next
|
|
27
|
+
technical refactor order is config centralization, KG stabilization,
|
|
28
|
+
ToolRegistry characterization, AgentRuntime extraction, then app factory
|
|
29
|
+
decomposition.
|
|
30
|
+
|
|
31
|
+
### Preserved
|
|
32
|
+
|
|
33
|
+
- v4.7.2 and older sections remain historical.
|
|
34
|
+
- External package publishing remains owner-run; this release prepares exact
|
|
35
|
+
artifacts and GitHub Release assets without registry publish automation.
|
|
36
|
+
|
|
37
|
+
### Artifacts
|
|
38
|
+
|
|
39
|
+
- `dist/ltcai-5.0.0-py3-none-any.whl`
|
|
40
|
+
- `dist/ltcai-5.0.0.tar.gz`
|
|
41
|
+
- `dist/ltcai-5.0.0.vsix`
|
|
42
|
+
- `ltcai-5.0.0.tgz`
|
|
43
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_5.0.0_aarch64.dmg`
|
|
44
|
+
|
|
6
45
|
## [4.7.2] - 2026-06-14
|
|
7
46
|
|
|
8
47
|
> Intuitive Brain UX Release. v4.7.2 makes the Living Brain easier for
|