ltcai 8.1.0 → 8.3.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 (123) hide show
  1. package/README.md +29 -48
  2. package/docs/CHANGELOG.md +70 -874
  3. package/docs/COMMUNITY_AND_PLUGINS.md +43 -0
  4. package/docs/DEVELOPMENT.md +26 -3
  5. package/docs/LEGACY_COMPATIBILITY.md +23 -1
  6. package/docs/ONBOARDING.md +38 -0
  7. package/docs/TRUST_MODEL.md +26 -26
  8. package/docs/WHY_LATTICE.md +29 -25
  9. package/docs/kg-schema.md +7 -5
  10. package/lattice_brain/__init__.py +1 -1
  11. package/lattice_brain/graph/ingest.py +40 -8
  12. package/lattice_brain/graph/schema.py +6 -0
  13. package/lattice_brain/runtime/agent_runtime.py +22 -37
  14. package/lattice_brain/runtime/multi_agent.py +1 -1
  15. package/lattice_brain/workflow.py +26 -1
  16. package/latticeai/__init__.py +1 -1
  17. package/latticeai/api/computer_use.py +2 -0
  18. package/latticeai/api/knowledge_graph.py +33 -0
  19. package/latticeai/api/local_files.py +2 -0
  20. package/latticeai/api/memory.py +13 -0
  21. package/latticeai/api/tools.py +1 -0
  22. package/latticeai/api/workflow_designer.py +5 -4
  23. package/latticeai/app_factory.py +30 -28
  24. package/latticeai/brain/__init__.py +1 -1
  25. package/latticeai/core/config.py +10 -0
  26. package/latticeai/core/legacy_compatibility.py +174 -0
  27. package/latticeai/core/marketplace.py +1 -1
  28. package/latticeai/core/tool_registry.py +10 -0
  29. package/latticeai/core/workspace_graph_trace.py +132 -0
  30. package/latticeai/core/workspace_memory.py +75 -0
  31. package/latticeai/core/workspace_os.py +135 -1283
  32. package/latticeai/core/workspace_os_utils.py +132 -0
  33. package/latticeai/core/workspace_permissions.py +99 -0
  34. package/latticeai/core/workspace_plugins.py +97 -0
  35. package/latticeai/core/workspace_runs.py +612 -0
  36. package/latticeai/core/workspace_skills.py +114 -0
  37. package/latticeai/core/workspace_snapshots.py +195 -0
  38. package/latticeai/core/workspace_timeline.py +107 -0
  39. package/latticeai/runtime/audit_runtime.py +64 -0
  40. package/latticeai/runtime/config_runtime.py +4 -0
  41. package/latticeai/runtime/sso_runtime.py +52 -0
  42. package/latticeai/services/architecture_readiness.py +37 -3
  43. package/latticeai/services/memory_service.py +215 -7
  44. package/latticeai/services/model_capability_registry.py +68 -0
  45. package/latticeai/services/model_engines.py +594 -0
  46. package/latticeai/services/model_loading.py +482 -0
  47. package/latticeai/services/model_recommendation.py +5 -0
  48. package/latticeai/services/model_runtime.py +131 -875
  49. package/latticeai/services/product_readiness.py +41 -18
  50. package/llm_router.py +7 -28
  51. package/mcp_registry.py +7 -24
  52. package/package.json +1 -1
  53. package/scripts/pts-claudecode-discord-bridge.mjs +2 -1
  54. package/src-tauri/Cargo.lock +1 -1
  55. package/src-tauri/Cargo.toml +1 -1
  56. package/src-tauri/tauri.conf.json +1 -1
  57. package/static/app/asset-manifest.json +11 -11
  58. package/static/app/assets/{Act-BOO66G-c.js → Act-D5mo4tE4.js} +1 -1
  59. package/static/app/assets/{Brain-C6lEYiD7.js → Brain-BVWyQw8A.js} +1 -1
  60. package/static/app/assets/{Capture-TATXBRDw.js → Capture-C1R6GT0t.js} +1 -1
  61. package/static/app/assets/{Library-DK4FIp8a.js → Library-C2wIxpTs.js} +1 -1
  62. package/static/app/assets/{System-Bgs6Ql7x.js → System-DE5GRyQR.js} +1 -1
  63. package/static/app/assets/index-CoiuIFFP.js +16 -0
  64. package/static/app/assets/index-ty1iGgZu.css +2 -0
  65. package/static/app/assets/{primitives-B70WOra0.js → primitives-BdsUNXa6.js} +1 -1
  66. package/static/app/assets/{textarea-Czrd9gwM.js → textarea-e7qaj6Hm.js} +1 -1
  67. package/static/app/index.html +2 -2
  68. package/static/sw.js +1 -1
  69. package/tools/__init__.py +2 -1
  70. package/tools/computer.py +21 -0
  71. package/docs/CARRYOVER_AUDIT_v3.6.0.md +0 -61
  72. package/docs/HANDOVER_v3.6.0.md +0 -46
  73. package/docs/RUNTIME_HOOK_COVERAGE_v3.5.0.md +0 -56
  74. package/docs/RUNTIME_HOOK_COVERAGE_v3.6.0.md +0 -49
  75. package/docs/V2_ARCHITECTURE.md +0 -561
  76. package/docs/V3_2_AUDIT.md +0 -82
  77. package/docs/V3_BACKEND_ARCHITECTURE.md +0 -138
  78. package/docs/V3_FRONTEND.md +0 -146
  79. package/docs/V4_1_FRONTEND_ARCHITECTURE_REVIEW.md +0 -65
  80. package/docs/V4_1_FRONTEND_MIGRATION_REPORT.md +0 -70
  81. package/docs/V4_1_VALIDATION_REPORT.md +0 -47
  82. package/docs/V4_2_BRAIN_CORE_ARCHITECTURE.md +0 -97
  83. package/docs/V4_2_STORAGE_MIGRATION_REPORT.md +0 -91
  84. package/docs/V4_2_VALIDATION_REPORT.md +0 -89
  85. package/docs/V4_3_2_DEADCODE_AUDIT_REPORT.md +0 -174
  86. package/docs/V4_3_2_DOCUMENTATION_CLEANUP_REPORT.md +0 -81
  87. package/docs/V4_3_2_GITHUB_VERCEL_CHECK_REPORT.md +0 -75
  88. package/docs/V4_3_2_GRAPH_UX_REPORT.md +0 -48
  89. package/docs/V4_3_2_INDEPENDENT_AUDIT_PACKAGE.md +0 -209
  90. package/docs/V4_3_2_PRODUCT_POLISH_REPORT.md +0 -57
  91. package/docs/V4_3_2_SELF_AUDIT_REPORT.md +0 -63
  92. package/docs/V4_3_2_VALIDATION_REPORT.md +0 -97
  93. package/docs/V4_3_3_VALIDATION_REPORT.md +0 -46
  94. package/docs/V4_3_PORTABILITY_ARCHITECTURE.md +0 -69
  95. package/docs/V4_3_PRIVACY_AUDIT.md +0 -60
  96. package/docs/V4_3_PRODUCT_HARDENING_REPORT.md +0 -53
  97. package/docs/V4_3_VALIDATION_REPORT.md +0 -58
  98. package/docs/V4_4_0_EXTRACTION_REPORT.md +0 -239
  99. package/docs/V4_5_0_GEMMA_RUNTIME_COMPATIBILITY_REPORT.md +0 -49
  100. package/docs/V4_5_0_GRAPH_UX_REPORT.md +0 -34
  101. package/docs/V4_5_0_MODEL_RUNTIME_UX_REPORT.md +0 -40
  102. package/docs/V4_5_0_ONBOARDING_REPORT.md +0 -31
  103. package/docs/V4_5_0_PRODUCT_EXPERIENCE_RECOVERY_REPORT.md +0 -49
  104. package/docs/V4_5_0_VALIDATION_REPORT.md +0 -60
  105. package/docs/V4_5_1_GRAPH_EXPERIENCE_REPORT.md +0 -33
  106. package/docs/V4_5_1_MODEL_EXPERIENCE_REPORT.md +0 -37
  107. package/docs/V4_5_1_NAVIGATION_REPORT.md +0 -37
  108. package/docs/V4_5_1_ONBOARDING_REPORT.md +0 -29
  109. package/docs/V4_5_1_PRODUCT_REIMAGINING_REPORT.md +0 -61
  110. package/docs/V4_5_1_RC_ARTIFACTS.md +0 -44
  111. package/docs/V4_5_1_UX_REPORT.md +0 -45
  112. package/docs/V4_5_1_VALIDATION_REPORT.md +0 -55
  113. package/docs/V4_5_1_VISUAL_DESIGN_REPORT.md +0 -30
  114. package/docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md +0 -72
  115. package/docs/V4_6_1_RELEASE_REFRESH_REPORT.md +0 -42
  116. package/docs/V4_7_0_ADMIN_SEPARATION_REPORT.md +0 -42
  117. package/docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md +0 -49
  118. package/docs/V4_7_2_INTUITIVE_BRAIN_UX_REPORT.md +0 -62
  119. package/docs/V4_BRAIN_ARCHITECTURE.md +0 -322
  120. package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +0 -555
  121. package/docs/V4_IMPLEMENTATION_PLAN.md +0 -470
  122. package/static/app/assets/index-Bvv79nre.js +0 -16
  123. package/static/app/assets/index-Dslqglia.css +0 -2
@@ -1,61 +0,0 @@
1
- # v4.5.1 Product Reimagining Report
2
-
3
- Release date: 2026-06-13
4
-
5
- ## Objective
6
-
7
- v4.5.1 treats the previous desktop product surface as non-authoritative. The
8
- goal was not to polish the v4.5.0 recovery UI; it was to relaunch Lattice AI as
9
- a premium local-first Digital Brain while preserving all capabilities,
10
- workflows, data contracts, storage, FastAPI APIs, Tauri shell behavior, Brain
11
- Core, model runtimes, backup/restore, and portability.
12
-
13
- ## Product Decision
14
-
15
- The product is now organized around six user-facing rooms:
16
-
17
- - Home: the living shape of what Lattice knows.
18
- - Ask: thinking with remembered context.
19
- - Add: files, folders, and pages entering memory.
20
- - Automate: supervised goals, runs, workflows, approvals, hooks, and tools.
21
- - Library: models, skills, marketplace, and tool connections.
22
- - Care: account, spaces, backups, devices, settings, and admin safety.
23
-
24
- Legacy hash routes still resolve into the SPA, but they no longer dictate the
25
- visible product model.
26
-
27
- ## What Changed
28
-
29
- - Replaced the fixed left rail with compact desktop chrome and a centered
30
- navigation dock.
31
- - Added a command palette and responsive mobile drawer.
32
- - Added an ambient brain canvas so the first viewport reads as a thinking
33
- environment rather than a dashboard.
34
- - Replaced the first-run checklist with a first-session journey.
35
- - Reworked route labels and page hero copy across Brain, Ask, Capture, Act,
36
- Library, and System.
37
- - Rebuilt global styling around calmer surfaces, fixed responsive type sizes,
38
- and restrained accents.
39
-
40
- ## What Was Preserved
41
-
42
- - FastAPI and generated OpenAPI client.
43
- - Tauri desktop shell and sidecar behavior.
44
- - `lattice_brain` package boundary.
45
- - StorageEngine, SQLite default, optional PostgreSQL scale mode.
46
- - Backup/restore and `.latticebrain` portability.
47
- - Model recommendation, prepare/load stream, and consent-gated downloads.
48
- - Knowledge graph, hybrid search, chat, capture, workflow, agent, system, and
49
- admin APIs.
50
-
51
- ## Self Review
52
-
53
- The redesigned first viewport immediately reads as a different product:
54
- Lattice branding, Home/Ask/Add/Automate/Library/Care navigation, first-session
55
- journey, and premium desktop chrome replace the old dashboard hierarchy.
56
-
57
- ## Evidence
58
-
59
- - Desktop screenshot: `output/audits/v4.5.1-reimagining/screenshots/home-desktop.png`
60
- - Mobile screenshot: `output/audits/v4.5.1-reimagining/screenshots/home-mobile.png`
61
- - Walkthrough GIF: `output/audits/v4.5.1-reimagining/gifs/v4.5.1-reimagining-walkthrough.gif`
@@ -1,44 +0,0 @@
1
- # v4.5.1 RC Artifact Manifest
2
-
3
- Release date: 2026-06-13
4
-
5
- ## Screenshots
6
-
7
- - `output/audits/v4.5.1-reimagining/screenshots/home-desktop.png`
8
- - `output/audits/v4.5.1-reimagining/screenshots/home-mobile.png`
9
- - `output/audits/v4.5.1-reimagining/screenshots/memory-map.png`
10
- - `output/audits/v4.5.1-reimagining/screenshots/library-models.png`
11
-
12
- ## GIFs
13
-
14
- - `output/audits/v4.5.1-reimagining/gifs/v4.5.1-reimagining-walkthrough.gif`
15
-
16
- ## Release Artifacts
17
-
18
- - `dist/ltcai-4.5.1-py3-none-any.whl`
19
- - `dist/ltcai-4.5.1.tar.gz`
20
- - `ltcai-4.5.1.tgz`
21
- - `dist/ltcai-4.5.1.vsix`
22
- - `src-tauri/target/release/bundle/dmg/Lattice AI_4.5.1_aarch64.dmg`
23
-
24
- ## SHA-256
25
-
26
- | Artifact | SHA-256 |
27
- | --- | --- |
28
- | `dist/ltcai-4.5.1-py3-none-any.whl` | `3d5ce1a0a85f7aba1f78587cd7e4a66c63dd5c03ddde7cee57624ec3f487899b` |
29
- | `dist/ltcai-4.5.1.tar.gz` | `62f0e05ff32554cf599b76678de3136bc02e5af4775144e7347182eed0fb4675` |
30
- | `ltcai-4.5.1.tgz` | `e755f40f87484d8a6e3f6bc95f48f0f78e1d0fcde3af8b14c709cf7fa71b2e4b` |
31
- | `dist/ltcai-4.5.1.vsix` | `3badc5915dc31425fa383d5946f78e0914497aa9e523cb7fbdc81a295b8f4a2f` |
32
- | `src-tauri/target/release/bundle/dmg/Lattice AI_4.5.1_aarch64.dmg` | `689ffc9553facf3987a5d57016dfd24fc3872f9c0810e28621f96b340ca38ce0` |
33
-
34
- ## Validation
35
-
36
- `npm run release:validate` passed for the exact v4.5.1 artifact set. Historical
37
- files remain in `dist/` for prior releases, so all publish or upload steps must
38
- use exact v4.5.1 filenames only.
39
-
40
- ## Notes
41
-
42
- The artifact list is exact-version only. Publishing remains out of scope for
43
- this RC unless the repository owner explicitly performs the manual registry
44
- publish steps.
@@ -1,45 +0,0 @@
1
- # v4.5.1 UX Report
2
-
3
- ## UX Principle
4
-
5
- v4.5.1 designs for non-technical users who should understand what Lattice AI is,
6
- what to do next, how to add knowledge, how to use the brain, how to install a
7
- model, and how to automate work without reading the README.
8
-
9
- ## Primary Flow
10
-
11
- The first-session journey is:
12
-
13
- 1. Make it yours.
14
- 2. Choose a space.
15
- 3. Meet your Mac.
16
- 4. Pick a brain.
17
- 5. Install locally.
18
- 6. Try a question.
19
- 7. Set the pace.
20
- 8. Explore memory.
21
-
22
- This replaces implementation-facing setup labels with user outcomes while still
23
- driving the same account, workspace, model recommendation, model setup, mode,
24
- and graph routes.
25
-
26
- ## Screen Inventory Decision
27
-
28
- - Brain became Home, emphasizing the shape of work rather than a graph tool.
29
- - Capture became Add, emphasizing the act of feeding memory.
30
- - Act became Automate, emphasizing supervised work instead of an agent console.
31
- - System became Care, emphasizing trust, portability, and maintenance.
32
- - Ask and Library survived because their user intent is direct and legible.
33
-
34
- ## Interaction Notes
35
-
36
- - Command palette remains available with Cmd/Ctrl+K.
37
- - Mode switching is visible as Calm, Deep, and Admin instead of Basic,
38
- Advanced, and Admin in the first viewport.
39
- - Mobile navigation opens as a room chooser and preserves no-horizontal-overflow
40
- behavior at 390px width.
41
-
42
- ## Evidence
43
-
44
- - Playwright visual coverage: `tests/visual/v3.spec.js`
45
- - Screenshots: `output/audits/v4.5.1-reimagining/screenshots/`
@@ -1,55 +0,0 @@
1
- # v4.5.1 Validation Report
2
-
3
- Release date: 2026-06-13
4
-
5
- ## Scope
6
-
7
- Validation covers the v4.5.1 product reimagining, version sync, frontend visual
8
- changes, release artifacts, and compatibility preservation.
9
-
10
- ## Command Matrix
11
-
12
- | Check | Result |
13
- | --- | --- |
14
- | Python compile | PASS: `npm run check:python` compiled 775 modules |
15
- | Ruff | PASS: `node scripts/run_python.mjs -m ruff check .` |
16
- | Unit tests | PASS: `npm run test:unit` - 616 passed, 2 warnings |
17
- | Integration tests | PASS: `LTCAI_TEST_BASE_URL=http://127.0.0.1:4932 npm run test:integration` - 9 passed, 1 skipped |
18
- | Frontend lint | PASS: `npm run lint` |
19
- | TypeScript typecheck | PASS: `npm run typecheck` and `npm run typecheck:frontend` |
20
- | Playwright | PASS: `npm run test:visual` - 14 passed |
21
- | Tauri check/build | PASS: `npm run desktop:tauri:check`; PASS via `npm run release:artifacts` for the Tauri app and DMG build |
22
- | Release artifact validation | PASS: `npm run release:validate` |
23
- | Wheel smoke | PASS: `node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-4.5.1-py3-none-any.whl` |
24
- | npm pack dry-run | PASS: `npm pack --dry-run` |
25
-
26
- ## Browser Evidence
27
-
28
- - Desktop screenshot: `output/audits/v4.5.1-reimagining/screenshots/home-desktop.png`
29
- - Mobile screenshot: `output/audits/v4.5.1-reimagining/screenshots/home-mobile.png`
30
- - Walkthrough GIF: `output/audits/v4.5.1-reimagining/gifs/v4.5.1-reimagining-walkthrough.gif`
31
-
32
- ## RC Artifacts
33
-
34
- Expected exact-version artifacts:
35
-
36
- - `dist/ltcai-4.5.1-py3-none-any.whl`
37
- - `dist/ltcai-4.5.1.tar.gz`
38
- - `ltcai-4.5.1.tgz`
39
- - `dist/ltcai-4.5.1.vsix`
40
- - `src-tauri/target/release/bundle/dmg/Lattice AI_4.5.1_aarch64.dmg`
41
-
42
- ## Artifact Hashes
43
-
44
- | Artifact | SHA-256 |
45
- | --- | --- |
46
- | `dist/ltcai-4.5.1-py3-none-any.whl` | `3d5ce1a0a85f7aba1f78587cd7e4a66c63dd5c03ddde7cee57624ec3f487899b` |
47
- | `dist/ltcai-4.5.1.tar.gz` | `62f0e05ff32554cf599b76678de3136bc02e5af4775144e7347182eed0fb4675` |
48
- | `ltcai-4.5.1.tgz` | `e755f40f87484d8a6e3f6bc95f48f0f78e1d0fcde3af8b14c709cf7fa71b2e4b` |
49
- | `dist/ltcai-4.5.1.vsix` | `3badc5915dc31425fa383d5946f78e0914497aa9e523cb7fbdc81a295b8f4a2f` |
50
- | `src-tauri/target/release/bundle/dmg/Lattice AI_4.5.1_aarch64.dmg` | `689ffc9553facf3987a5d57016dfd24fc3872f9c0810e28621f96b340ca38ce0` |
51
-
52
- `npm run release:validate` confirmed all exact-version RC artifacts are present.
53
- It also warned that historical artifacts remain in `dist/`, so publish commands
54
- must continue to use explicit v4.5.1 filenames rather than a wildcard from the
55
- `dist` directory.
@@ -1,30 +0,0 @@
1
- # v4.5.1 Visual Design Report
2
-
3
- ## Direction
4
-
5
- The visual language targets a calm premium desktop product rather than a
6
- developer/admin dashboard. The palette uses a carbon and warm-white base with
7
- jade, amber, violet, blue, and coral accents so the UI is not dominated by a
8
- single hue family.
9
-
10
- ## System Changes
11
-
12
- - New sticky desktop chrome and centered dock.
13
- - Ambient brain canvas built from grid, line, and tile motifs.
14
- - Fixed responsive typography with media-query breakpoints, avoiding viewport
15
- width font scaling.
16
- - Cards remain at 8px radius or less.
17
- - Shared buttons and badges were tightened for stable sizing and text fit.
18
- - Light theme retains the same hierarchy with warmer surfaces.
19
-
20
- ## Accessibility And Layout
21
-
22
- - Primary navigation has an explicit `Primary navigation` label.
23
- - The command palette exposes a dialog label.
24
- - Mode switch has `Experience mode` semantics and pressed states.
25
- - Mobile layout was checked at 390x780 with zero horizontal overflow.
26
-
27
- ## Evidence
28
-
29
- - Desktop visual pass: `output/audits/v4.5.1-reimagining/screenshots/home-desktop.png`
30
- - Mobile visual pass: `output/audits/v4.5.1-reimagining/screenshots/home-mobile.png`
@@ -1,72 +0,0 @@
1
- # v4.6.0 Living Brain Experience Report
2
-
3
- ## Goal
4
-
5
- v4.6.0 stops presenting Lattice AI as a graph product or dashboard. The
6
- first-run product flow is Login -> Environment Analysis -> Recommended Models
7
- -> Install & Load -> Brain. After setup, the Brain is the center of the desktop
8
- experience, and the graph is repositioned as the deepest layer inside Brain
9
- exploration rather than a separate destination.
10
-
11
- ## Product Changes
12
-
13
- - First launch opens to a premium minimal Login screen only.
14
- - Setup runs as a full-screen guided sequence: friendly environment analysis,
15
- short ranked model recommendations, and install/download/validate/load.
16
- - After model load, `/app` and compatible legacy entry URLs open into Brain plus
17
- conversation.
18
- - The living Brain is an anatomical, recognizable Brain that remains visible
19
- during primary conversation and reacts to listening, recall, thinking,
20
- planning, and active agent/workflow signals.
21
- - Brain exploration now has five depths:
22
- Living Brain, Memory Layer, Knowledge Layer, Relationship Layer, and
23
- Knowledge Graph.
24
- - The Knowledge Graph appears only at Level 5 and includes nodes, edges, search,
25
- and focus details.
26
- - `/chat`, `/ask`, `/graph`, and other legacy entry URLs remain compatible app
27
- entry points, but the primary user path inward is through the Brain itself.
28
- - First-run setup no longer appears as dashboard cards above any app page; it
29
- gates the app before the Brain opens.
30
-
31
- ## Architecture
32
-
33
- - Added `frontend/src/components/LivingBrain.tsx` as the animated Brain
34
- presence component.
35
- - Updated `frontend/src/App.tsx` to own the five-depth Brain journey and the
36
- emergent graph surface.
37
- - `frontend/src/components/BrainConversation.tsx` remains available for legacy
38
- page compatibility and now shares the expanded Brain activity states.
39
- - Added `frontend/src/components/ProductFlow.tsx` to own Login, environment
40
- analysis, recommendation, install/download/validate/load, and Brain entry.
41
- - Kept graph APIs, memory APIs, search, provenance, portability, and archive
42
- APIs intact.
43
- - Kept FastAPI, Tauri, StorageEngine, Brain Core, backup/restore, and
44
- portability unchanged.
45
-
46
- ## Compatibility
47
-
48
- - Existing backend routes are unchanged.
49
- - Legacy hash routes and redirects continue to arrive inside the SPA.
50
- - The advanced graph capability remains available as Level 5 of Brain
51
- exploration.
52
- - The older route components remain in source for compatibility while the
53
- primary app surface is the Brain Space.
54
-
55
- ## Validation Scope
56
-
57
- The v4.6.0 work should be validated with:
58
-
59
- - frontend lint/typecheck/build
60
- - Python syntax validation
61
- - affected visual tests
62
- - unit tests covering version consistency and route compatibility
63
- - Tauri cargo check when the desktop toolchain is available
64
-
65
- Validated in this update:
66
-
67
- - `npm run lint`
68
- - `npm run test:visual`
69
- - `npm run check:python`
70
- - `npm run test:unit`
71
- - `npm run test:integration` with the local server on port 8899
72
- - `npm run build`
@@ -1,42 +0,0 @@
1
- # v4.6.1 Living Brain Release Refresh Report
2
-
3
- ## Scope
4
-
5
- v4.6.1 is the publishable Living Brain release refresh after the v4.6.0 PyPI
6
- immutability block. The work intentionally does not redesign backend
7
- architecture or add unrelated product features.
8
-
9
- ## Completed Refresh Areas
10
-
11
- - Synchronized then-current release version metadata to `4.6.1`.
12
- - Reframed README around the current Living Brain flow:
13
- Login -> Environment Analysis -> Recommended Models -> Install & Load ->
14
- Brain Chat.
15
- - Documented the five Brain depths: Living Brain, Memory Layer, Knowledge Layer,
16
- Relationship Layer, and Knowledge Graph.
17
- - Kept the Knowledge Graph positioned as the deepest Brain exploration layer,
18
- not a standalone dashboard or home screen.
19
- - Updated ARCHITECTURE.md for the current Tauri, React/Vite, FastAPI,
20
- independent `lattice_brain`, StorageEngine, SQLite default, optional
21
- PostgreSQL/pgvector, backup/restore, and `.latticebrain` portability reality.
22
- - Added v4.6.1 release notes and synchronized the changelog, feature status,
23
- security policy, VS Code extension README, and release guide.
24
-
25
- ## Evidence
26
-
27
- Fresh v4.6.1 screenshots and walkthrough media are indexed in
28
- [output/release/v4.6.1/SCREENSHOT_INDEX.md](../output/release/v4.6.1/SCREENSHOT_INDEX.md).
29
-
30
- ## Expected Artifacts
31
-
32
- - `dist/ltcai-4.6.1-py3-none-any.whl`
33
- - `dist/ltcai-4.6.1.tar.gz`
34
- - `dist/ltcai-4.6.1.vsix`
35
- - `ltcai-4.6.1.tgz`
36
- - `src-tauri/target/release/bundle/dmg/Lattice AI_4.6.1_aarch64.dmg`
37
-
38
- ## Validation Checklist
39
-
40
- The final release report records command results, artifact SHA256 hashes, commit,
41
- tag, push, and GitHub Release URL. External package registries are not published
42
- by this refresh.
@@ -1,42 +0,0 @@
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 then-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.
@@ -1,49 +0,0 @@
1
- # v4.7.1 Admin Operations Report
2
-
3
- ## Scope
4
-
5
- v4.7.1 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, role permissions, filtered audit logs,
16
- security events, policies, log retention, and index rebuild operations.
17
- - Added server-side audit query filters for search text, actor, action,
18
- severity, and result limit.
19
- - Added `/admin/log-retention` for local-first retention posture, retained event
20
- counts, prune candidates, and export-before-prune status.
21
- - Added workspace-aware filtering for admin summary, stats, sensitivity, and
22
- audit reads when the active workspace header/query is present.
23
- - Added frontend API helpers for `/admin/stats`, `/admin/security/events`,
24
- `/admin/roles`, and `/admin/log-retention`.
25
- - Moved Admin Console data loading into a dedicated hook so Brain user state and
26
- admin observability state remain separate in the frontend runtime.
27
- - Updated visual validation to confirm the admin console is separate from the
28
- user Brain surface.
29
- - Synchronized then-current release version metadata to `4.7.1`.
30
- - Updated README, RELEASE.md, release notes, changelog, architecture, security,
31
- feature status, VS Code extension docs, and release evidence references.
32
-
33
- ## Evidence
34
-
35
- Fresh v4.7.1 screenshots and walkthrough media are indexed in
36
- [output/release/v4.7.1/SCREENSHOT_INDEX.md](../output/release/v4.7.1/SCREENSHOT_INDEX.md).
37
-
38
- ## Expected Artifacts
39
-
40
- - `dist/ltcai-4.7.1-py3-none-any.whl`
41
- - `dist/ltcai-4.7.1.tar.gz`
42
- - `dist/ltcai-4.7.1.vsix`
43
- - `ltcai-4.7.1.tgz`
44
- - `src-tauri/target/release/bundle/dmg/Lattice AI_4.7.1_aarch64.dmg`
45
-
46
- ## Validation Checklist
47
-
48
- The final release report records command results, artifact SHA256 hashes, commit,
49
- tag, push, GitHub Release URL, and package registry publish status.
@@ -1,62 +0,0 @@
1
- # v4.7.2 Intuitive Brain UX Report
2
-
3
- ## Scope
4
-
5
- v4.7.2 focuses on the product question: can a normal user understand why Lattice
6
- AI exists and operate the Brain without learning database, graph, or admin
7
- jargon? The release does not redesign Brain Core, storage, APIs, model runtime,
8
- backup/restore, portability, or the separated Admin Console.
9
-
10
- ## Product Changes
11
-
12
- - First-run login no longer auto-registers a new local account when the saved
13
- Brain email differs or when the saved email has a wrong password.
14
- - Recommended model setup now has a single primary action for users who do not
15
- know which model to choose.
16
- - Install/download messaging explains long-running model downloads honestly
17
- without fabricated ETA.
18
- - Brain home now exposes direct Memory, Topic, Relationship, and Graph actions.
19
- - Brain Chat shows recent memories, older memories, major topics, and
20
- saved-to-memory feedback after chat.
21
-
22
- ## Collaboration Summary
23
-
24
- pts_claudecode identified the highest-risk product gaps: empty-Brain creation
25
- from login typo, graph-first mental model leakage, lack of direct topic/time
26
- visibility, and model download trust problems. v4.7.2 addresses the parts that
27
- fit a scoped release: safer login, direct Brain views, topic/memory overview,
28
- and honest model setup copy. pts_grok did not return a channel review before
29
- completion.
30
-
31
- ## Evidence
32
-
33
- Fresh v4.7.2 screenshots and walkthrough media are indexed in
34
- [output/release/v4.7.2/SCREENSHOT_INDEX.md](../output/release/v4.7.2/SCREENSHOT_INDEX.md).
35
-
36
- ## Validation Targets
37
-
38
- - `npm run typecheck:frontend`
39
- - `npm run lint`
40
- - `npm run test:visual`
41
- - `npm run test:unit`
42
- - `npm run test:integration`
43
- - `npm run release:artifacts`
44
- - `npm run release:validate`
45
-
46
- ## Expected Artifacts
47
-
48
- - `dist/ltcai-4.7.2-py3-none-any.whl`
49
- - `dist/ltcai-4.7.2.tar.gz`
50
- - `dist/ltcai-4.7.2.vsix`
51
- - `ltcai-4.7.2.tgz`
52
- - `src-tauri/target/release/bundle/dmg/Lattice AI_4.7.2_aarch64.dmg`
53
-
54
- ## Remaining Technical Debt
55
-
56
- - Admin Console still needs deeper role-based authorization workflows and
57
- configurable log retention UI.
58
- - Brain topic grouping is now visible, but backend topic clustering and a true
59
- time-axis memory view should be promoted into first-class APIs next.
60
- - AgentRuntime extraction should continue so user Brain state and admin
61
- observability state remain architecturally separate beyond the frontend layer.
62
-