ltcai 7.7.0 → 7.8.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.
Files changed (52) hide show
  1. package/README.md +24 -16
  2. package/docs/CHANGELOG.md +20 -0
  3. package/frontend/src/App.tsx +3 -1
  4. package/frontend/src/components/ProductFlow.tsx +19 -23
  5. package/frontend/src/components/onboarding/RecommendationScreen.tsx +11 -12
  6. package/frontend/src/features/brain/BrainConversation.tsx +107 -108
  7. package/frontend/src/features/brain/BrainHome.tsx +32 -33
  8. package/frontend/src/i18n.ts +53 -19
  9. package/frontend/src/pages/Ask.tsx +11 -2
  10. package/frontend/src/pages/Brain.tsx +12 -2
  11. package/frontend/src/styles.css +390 -65
  12. package/lattice_brain/__init__.py +1 -1
  13. package/lattice_brain/runtime/multi_agent.py +1 -1
  14. package/latticeai/__init__.py +1 -1
  15. package/latticeai/core/marketplace.py +1 -1
  16. package/latticeai/core/workspace_os.py +1 -1
  17. package/latticeai/services/architecture_readiness.py +1 -1
  18. package/latticeai/services/product_readiness.py +15 -15
  19. package/package.json +1 -1
  20. package/scripts/product_readiness.py +1 -1
  21. package/src-tauri/Cargo.toml +1 -1
  22. package/src-tauri/tauri.conf.json +1 -1
  23. package/static/app/asset-manifest.json +28 -28
  24. package/static/app/assets/Act-DOvf59ru.js +2 -0
  25. package/static/app/assets/{Act-CX5hL0Z3.js.map → Act-DOvf59ru.js.map} +1 -1
  26. package/static/app/assets/Brain-C7_0mEiI.js +322 -0
  27. package/static/app/assets/Brain-C7_0mEiI.js.map +1 -0
  28. package/static/app/assets/Capture-B9Tlhzqr.js +2 -0
  29. package/static/app/assets/{Capture-CdFSrZnA.js.map → Capture-B9Tlhzqr.js.map} +1 -1
  30. package/static/app/assets/{Library-CZFVGSmG.js → Library-BJPEEm5O.js} +2 -2
  31. package/static/app/assets/{Library-CZFVGSmG.js.map → Library-BJPEEm5O.js.map} +1 -1
  32. package/static/app/assets/System-D6t9jo9V.js +2 -0
  33. package/static/app/assets/{System-CMoOoUrZ.js.map → System-D6t9jo9V.js.map} +1 -1
  34. package/static/app/assets/index-C7g26IF6.css +2 -0
  35. package/static/app/assets/index-DbcEYJQ2.js +17 -0
  36. package/static/app/assets/{index-B4_drWel.js.map → index-DbcEYJQ2.js.map} +1 -1
  37. package/static/app/assets/primitives-CD38lt4n.js +2 -0
  38. package/static/app/assets/{primitives-CFhU5Rka.js.map → primitives-CD38lt4n.js.map} +1 -1
  39. package/static/app/assets/textarea-BZk6ybp5.js +2 -0
  40. package/static/app/assets/{textarea-uBpGDOJM.js.map → textarea-BZk6ybp5.js.map} +1 -1
  41. package/static/app/index.html +2 -2
  42. package/frontend/src/components/BrainConversation.tsx +0 -533
  43. package/frontend/src/components/FirstRunGuide.tsx +0 -99
  44. package/static/app/assets/Act-CX5hL0Z3.js +0 -2
  45. package/static/app/assets/Brain-m19en5wz.js +0 -322
  46. package/static/app/assets/Brain-m19en5wz.js.map +0 -1
  47. package/static/app/assets/Capture-CdFSrZnA.js +0 -2
  48. package/static/app/assets/System-CMoOoUrZ.js +0 -2
  49. package/static/app/assets/index-B4_drWel.js +0 -17
  50. package/static/app/assets/index-DjpDeE0c.css +0 -2
  51. package/static/app/assets/primitives-CFhU5Rka.js +0 -2
  52. package/static/app/assets/textarea-uBpGDOJM.js +0 -2
@@ -1,8 +1,8 @@
1
- """Machine-checkable *product* readiness gates for the 7.7 line.
1
+ """Machine-checkable *product* readiness gates for the 7.8 line.
2
2
 
3
3
  Where ``architecture_readiness`` proves the internal structure is sound, this
4
- module answers the product question the 7.7 release exists to settle: *would
5
- anyone looking at this call it a finished product?* It does so honestly — every
4
+ module answers the product question the 7.8 release exists to settle: *can
5
+ someone understand and use the Brain at a glance?* It does so honestly — every
6
6
  gate is backed by evidence that is probed on disk, so a gate only reports
7
7
  ``complete`` when its evidence actually resolves. The same report can be printed
8
8
  by ``scripts/product_readiness.py`` and re-run after every change, which is the
@@ -17,7 +17,7 @@ from typing import Any, Dict, List
17
17
 
18
18
  from latticeai.services.architecture_readiness import architecture_readiness
19
19
 
20
- PRODUCT_VERSION_TARGET = "7.7.0"
20
+ PRODUCT_VERSION_TARGET = "7.8.0"
21
21
 
22
22
 
23
23
  @dataclass(frozen=True)
@@ -64,10 +64,10 @@ PRODUCT_GATES: List[ProductGate] = [
64
64
  evidence=[
65
65
  "package.json::release:artifacts",
66
66
  "package.json::release:validate",
67
- "README.md::dist/ltcai-7.7.0-py3-none-any.whl",
68
- "README.md::dist/ltcai-7.7.0.tar.gz",
69
- "README.md::dist/ltcai-7.7.0.vsix",
70
- "README.md::ltcai-7.7.0.tgz",
67
+ "README.md::dist/ltcai-7.8.0-py3-none-any.whl",
68
+ "README.md::dist/ltcai-7.8.0.tar.gz",
69
+ "README.md::dist/ltcai-7.8.0.vsix",
70
+ "README.md::ltcai-7.8.0.tgz",
71
71
  "scripts/validate_release_artifacts.py",
72
72
  "scripts/release_smoke.py",
73
73
  "Dockerfile",
@@ -83,12 +83,12 @@ PRODUCT_GATES: List[ProductGate] = [
83
83
  title="Release story is documented and honest",
84
84
  evidence=[
85
85
  "README.md",
86
- "README.md::The current release is **7.7.0",
87
- "SECURITY.md::7.7.x (latest)",
88
- "vscode-extension/README.md::**7.7.0",
89
- "docs/CHANGELOG.md::## [7.7.0]",
86
+ "README.md::The current release is **7.8.0",
87
+ "SECURITY.md::7.8.x (latest)",
88
+ "vscode-extension/README.md::**7.8.0",
89
+ "docs/CHANGELOG.md::## [7.8.0]",
90
90
  "FEATURE_STATUS.md",
91
- "RELEASE_NOTES_v7.7.0.md",
91
+ "RELEASE_NOTES_v7.8.0.md",
92
92
  ],
93
93
  ),
94
94
  ProductGate(
@@ -97,8 +97,8 @@ PRODUCT_GATES: List[ProductGate] = [
97
97
  evidence=[
98
98
  "scripts/brain_quality_eval.py",
99
99
  "scripts/product_readiness.py",
100
- "tests/unit/test_v77_product_readiness.py",
101
- "tests/visual/v3.spec.js::제품 상태판",
100
+ "tests/unit/test_v78_product_readiness.py",
101
+ "tests/visual/v3.spec.js::Brain Chat Home",
102
102
  ".github/workflows/ci.yml::scripts/product_readiness.py",
103
103
  ".github/workflows/release.yml::npm run lint",
104
104
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ltcai",
3
- "version": "7.7.0",
3
+ "version": "7.8.0",
4
4
  "description": "Lattice AI — local-first Digital Brain that keeps your knowledge durable across any AI model.",
5
5
  "homepage": "https://github.com/TaeSooPark-PTS/LatticeAI#readme",
6
6
  "repository": {
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- """Print the 7.7 product-readiness scorecard and fail CI when incomplete.
2
+ """Print the 7.8 product-readiness scorecard and fail CI when incomplete.
3
3
 
4
4
  Run it as often as you like — it re-probes the repo every time, so it is the
5
5
  single objective answer to "is this a finished product yet?". Exit code is 0
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lattice-ai-desktop"
3
- version = "7.7.0"
3
+ version = "7.8.0"
4
4
  description = "Lattice AI Digital Brain desktop shell"
5
5
  authors = ["TaeSoo Park"]
6
6
  edition = "2021"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://schema.tauri.app/config/2",
3
3
  "productName": "Lattice AI",
4
- "version": "7.7.0",
4
+ "version": "7.8.0",
5
5
  "identifier": "ai.lattice.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run frontend:dev",
@@ -1,20 +1,20 @@
1
1
  {
2
- "version": "7.7.0",
2
+ "version": "7.8.0",
3
3
  "generated_at": "vite",
4
4
  "entrypoints": {
5
5
  "app": "/static/app/index.html"
6
6
  },
7
7
  "assets": {
8
8
  "../node_modules/@tauri-apps/api/core.js": "/static/app/assets/core-CwxXejkd.js",
9
- "_primitives-CFhU5Rka.js": "/static/app/assets/primitives-CFhU5Rka.js",
10
- "_textarea-uBpGDOJM.js": "/static/app/assets/textarea-uBpGDOJM.js",
11
- "index.html": "/static/app/assets/index-B4_drWel.js",
12
- "assets/index-DjpDeE0c.css": "/static/app/assets/index-DjpDeE0c.css",
13
- "src/pages/Act.tsx": "/static/app/assets/Act-CX5hL0Z3.js",
14
- "src/pages/Brain.tsx": "/static/app/assets/Brain-m19en5wz.js",
15
- "src/pages/Capture.tsx": "/static/app/assets/Capture-CdFSrZnA.js",
16
- "src/pages/Library.tsx": "/static/app/assets/Library-CZFVGSmG.js",
17
- "src/pages/System.tsx": "/static/app/assets/System-CMoOoUrZ.js"
9
+ "_primitives-CD38lt4n.js": "/static/app/assets/primitives-CD38lt4n.js",
10
+ "_textarea-BZk6ybp5.js": "/static/app/assets/textarea-BZk6ybp5.js",
11
+ "index.html": "/static/app/assets/index-DbcEYJQ2.js",
12
+ "assets/index-C7g26IF6.css": "/static/app/assets/index-C7g26IF6.css",
13
+ "src/pages/Act.tsx": "/static/app/assets/Act-DOvf59ru.js",
14
+ "src/pages/Brain.tsx": "/static/app/assets/Brain-C7_0mEiI.js",
15
+ "src/pages/Capture.tsx": "/static/app/assets/Capture-B9Tlhzqr.js",
16
+ "src/pages/Library.tsx": "/static/app/assets/Library-BJPEEm5O.js",
17
+ "src/pages/System.tsx": "/static/app/assets/System-D6t9jo9V.js"
18
18
  },
19
19
  "vite": {
20
20
  "../node_modules/@tauri-apps/api/core.js": {
@@ -23,22 +23,22 @@
23
23
  "src": "../node_modules/@tauri-apps/api/core.js",
24
24
  "isDynamicEntry": true
25
25
  },
26
- "_primitives-CFhU5Rka.js": {
27
- "file": "assets/primitives-CFhU5Rka.js",
26
+ "_primitives-CD38lt4n.js": {
27
+ "file": "assets/primitives-CD38lt4n.js",
28
28
  "name": "primitives",
29
29
  "imports": [
30
30
  "index.html"
31
31
  ]
32
32
  },
33
- "_textarea-uBpGDOJM.js": {
34
- "file": "assets/textarea-uBpGDOJM.js",
33
+ "_textarea-BZk6ybp5.js": {
34
+ "file": "assets/textarea-BZk6ybp5.js",
35
35
  "name": "textarea",
36
36
  "imports": [
37
37
  "index.html"
38
38
  ]
39
39
  },
40
40
  "index.html": {
41
- "file": "assets/index-B4_drWel.js",
41
+ "file": "assets/index-DbcEYJQ2.js",
42
42
  "name": "index",
43
43
  "src": "index.html",
44
44
  "isEntry": true,
@@ -51,59 +51,59 @@
51
51
  "src/pages/System.tsx"
52
52
  ],
53
53
  "css": [
54
- "assets/index-DjpDeE0c.css"
54
+ "assets/index-C7g26IF6.css"
55
55
  ]
56
56
  },
57
57
  "src/pages/Act.tsx": {
58
- "file": "assets/Act-CX5hL0Z3.js",
58
+ "file": "assets/Act-DOvf59ru.js",
59
59
  "name": "Act",
60
60
  "src": "src/pages/Act.tsx",
61
61
  "isDynamicEntry": true,
62
62
  "imports": [
63
63
  "index.html",
64
- "_primitives-CFhU5Rka.js",
65
- "_textarea-uBpGDOJM.js"
64
+ "_primitives-CD38lt4n.js",
65
+ "_textarea-BZk6ybp5.js"
66
66
  ]
67
67
  },
68
68
  "src/pages/Brain.tsx": {
69
- "file": "assets/Brain-m19en5wz.js",
69
+ "file": "assets/Brain-C7_0mEiI.js",
70
70
  "name": "Brain",
71
71
  "src": "src/pages/Brain.tsx",
72
72
  "isDynamicEntry": true,
73
73
  "imports": [
74
74
  "index.html",
75
- "_primitives-CFhU5Rka.js",
76
- "_textarea-uBpGDOJM.js"
75
+ "_primitives-CD38lt4n.js",
76
+ "_textarea-BZk6ybp5.js"
77
77
  ]
78
78
  },
79
79
  "src/pages/Capture.tsx": {
80
- "file": "assets/Capture-CdFSrZnA.js",
80
+ "file": "assets/Capture-B9Tlhzqr.js",
81
81
  "name": "Capture",
82
82
  "src": "src/pages/Capture.tsx",
83
83
  "isDynamicEntry": true,
84
84
  "imports": [
85
85
  "index.html",
86
- "_primitives-CFhU5Rka.js"
86
+ "_primitives-CD38lt4n.js"
87
87
  ]
88
88
  },
89
89
  "src/pages/Library.tsx": {
90
- "file": "assets/Library-CZFVGSmG.js",
90
+ "file": "assets/Library-BJPEEm5O.js",
91
91
  "name": "Library",
92
92
  "src": "src/pages/Library.tsx",
93
93
  "isDynamicEntry": true,
94
94
  "imports": [
95
95
  "index.html",
96
- "_primitives-CFhU5Rka.js"
96
+ "_primitives-CD38lt4n.js"
97
97
  ]
98
98
  },
99
99
  "src/pages/System.tsx": {
100
- "file": "assets/System-CMoOoUrZ.js",
100
+ "file": "assets/System-D6t9jo9V.js",
101
101
  "name": "System",
102
102
  "src": "src/pages/System.tsx",
103
103
  "isDynamicEntry": true,
104
104
  "imports": [
105
105
  "index.html",
106
- "_primitives-CFhU5Rka.js"
106
+ "_primitives-CD38lt4n.js"
107
107
  ]
108
108
  }
109
109
  }