ltcai 5.1.0 → 5.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.
- package/README.md +143 -159
- package/docs/CHANGELOG.md +72 -2355
- package/docs/DEVELOPMENT.md +99 -0
- package/docs/LEGACY_COMPATIBILITY.md +55 -0
- package/docs/V4_1_VALIDATION_REPORT.md +1 -1
- package/docs/V4_3_PRODUCT_HARDENING_REPORT.md +2 -2
- package/docs/V4_5_1_VALIDATION_REPORT.md +2 -1
- package/docs/WHY_LATTICE.md +4 -3
- package/frontend/src/components/FirstRunGuide.tsx +5 -5
- package/frontend/src/components/ProductFlow.tsx +1 -1
- package/frontend/src/i18n.ts +40 -40
- package/frontend/src/pages/Library.tsx +46 -9
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/archive.py +12 -0
- package/lattice_brain/portability.py +14 -0
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/marketplace.py +2 -2
- package/latticeai/api/models.py +20 -4
- package/latticeai/app_factory.py +4 -78
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +18 -4
- package/latticeai/runtime/__init__.py +2 -0
- package/latticeai/runtime/brain_runtime.py +41 -0
- package/latticeai/runtime/config_runtime.py +36 -0
- package/latticeai/runtime/security_runtime.py +27 -0
- package/latticeai/services/model_capability_registry.py +482 -0
- package/latticeai/services/model_catalog.py +99 -96
- package/latticeai/services/model_recommendation.py +12 -1
- package/package.json +2 -2
- package/scripts/verify_hf_model_registry.py +306 -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-CQmHhk8Q.css +2 -0
- package/static/app/assets/{index-DONOJfMn.js → index-sOXTFUQc.js} +2 -2
- package/static/app/assets/index-sOXTFUQc.js.map +1 -0
- package/static/app/index.html +2 -2
- package/static/app/assets/index-DONOJfMn.js.map +0 -1
- package/static/app/assets/index-DuYYT2oh.css +0 -2
package/README.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Lattice AI
|
|
2
2
|
|
|
3
|
+
**Lattice AI is a local-first Digital Brain that keeps your knowledge durable across any AI model.**
|
|
4
|
+
|
|
5
|
+
**Lattice AI는 모델이 바뀌어도 내 지식과 맥락을 보존하는 로컬 우선 AI 브레인입니다.**
|
|
6
|
+
|
|
7
|
+
Your model is the voice you use today. Your Brain is the asset you keep.
|
|
8
|
+
Lattice AI preserves conversations, documents, decisions, project context,
|
|
9
|
+
relationships, and workflows on your computer by default. Cloud models, model
|
|
10
|
+
downloads, update checks, and other external communication happen only after
|
|
11
|
+
explicit consent.
|
|
12
|
+
|
|
13
|
+
It is not a ChatGPT clone, a model launcher, a graph database, or a note app.
|
|
14
|
+
It is a private AI memory layer wrapped in a Living Brain experience.
|
|
15
|
+
|
|
3
16
|
[](https://pypi.org/project/ltcai/)
|
|
4
17
|
[](https://www.npmjs.com/package/ltcai)
|
|
5
18
|
[](https://marketplace.visualstudio.com/items?itemName=parktaesoo.ltcai)
|
|
@@ -7,138 +20,103 @@
|
|
|
7
20
|
[](https://github.com/TaeSooPark-PTS/LatticeAI/actions/workflows/ci.yml)
|
|
8
21
|
[](LICENSE)
|
|
9
22
|
|
|
10
|
-
|
|
23
|
+
## Why You Need It
|
|
24
|
+
|
|
25
|
+
You need Lattice AI when:
|
|
11
26
|
|
|
12
|
-
|
|
27
|
+
- you ask different AI models about the same project and lose the context each time;
|
|
28
|
+
- your decisions are scattered across chats, notes, PDFs, folders, and tools;
|
|
29
|
+
- you want to switch models without rebuilding memory from zero;
|
|
30
|
+
- you want your AI Brain to stay on your computer by default;
|
|
31
|
+
- you want backup, restore, inspect, and export paths for your Brain.
|
|
13
32
|
|
|
14
|
-
|
|
15
|
-
decisions, project history, relationships, and workflows. It is not a ChatGPT
|
|
16
|
-
clone, a model launcher, a graph database, or a note app. The model is the voice
|
|
17
|
-
you use today. The Brain is the durable asset you keep.
|
|
33
|
+
이런 사람에게 필요합니다:
|
|
18
34
|
|
|
19
|
-
|
|
35
|
+
- 매번 AI를 바꿀 때마다 프로젝트 맥락을 다시 설명하는 사람
|
|
36
|
+
- 문서, 대화, 결정, 파일이 여기저기 흩어져 있는 사람
|
|
37
|
+
- 내 지식을 특정 AI 서비스 안에 묶어두고 싶지 않은 사람
|
|
38
|
+
- 로컬에 저장되는 개인 AI 브레인을 원하는 사람
|
|
20
39
|
|
|
21
|
-
|
|
22
|
-
- preserve context when switching between local, cloud, or future models;
|
|
23
|
-
- connect documents, conversations, files, notes, and decisions into one Brain;
|
|
24
|
-
- export, backup, inspect, verify, and move the Brain as an encrypted
|
|
25
|
-
`.latticebrain` archive;
|
|
26
|
-
- avoid cloud lock-in and keep knowledge local by default;
|
|
27
|
-
- get an honest unavailable state instead of a fake answer when no model or
|
|
28
|
-
evidence is available.
|
|
40
|
+
## What You Can Do
|
|
29
41
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
42
|
+
- Chat with a Brain that remembers useful context instead of treating every
|
|
43
|
+
session as disposable.
|
|
44
|
+
- Add documents, local folders, notes, screenshots, and conversations with
|
|
45
|
+
source-aware memory.
|
|
46
|
+
- See recent memories, older memories, topics, relationships, and the full
|
|
47
|
+
knowledge graph when you want deeper structure.
|
|
48
|
+
- Use a recommended local model without learning model internals first.
|
|
49
|
+
- Keep advanced controls, audit logs, roles, and retention in a separate Admin
|
|
50
|
+
surface.
|
|
51
|
+
- Export or back up your Brain as an encrypted `.latticebrain` archive.
|
|
34
52
|
|
|
35
|
-
|
|
36
|
-
|
|
53
|
+
## One-Minute Flow
|
|
54
|
+
|
|
55
|
+
1. Launch the app.
|
|
56
|
+
2. Create or open a local profile.
|
|
57
|
+
3. Let Lattice explain what this computer can run.
|
|
58
|
+
4. Start with the recommended model, or skip and choose later.
|
|
59
|
+
5. Talk to your Brain.
|
|
60
|
+
6. Watch memories, topics, relationships, and graph structure emerge from real use.
|
|
61
|
+
7. Back up, inspect, export, or restore the Brain when you need ownership actions.
|
|
37
62
|
|
|
38
63
|
## Living Brain Flow
|
|
39
64
|
|
|
40
65
|
### 1. Login
|
|
41
66
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
a durable knowledge home where models are replaceable and ownership stays with
|
|
45
|
-
the user. v5.1.0 also prevents an email typo or wrong saved-user password from
|
|
46
|
-
silently creating a new empty Brain.
|
|
67
|
+
Choose the owner of the Brain. The profile is not a SaaS account by default; it
|
|
68
|
+
is the local identity for the knowledge you keep.
|
|
47
69
|
|
|
48
|
-

|
|
49
71
|
|
|
50
72
|
### 2. Environment Analysis
|
|
51
73
|
|
|
52
|
-
|
|
53
|
-
|
|
74
|
+
See what kind of local AI experience this computer can support before choosing a
|
|
75
|
+
model.
|
|
54
76
|
|
|
55
|
-

|
|
56
78
|
|
|
57
79
|
### 3. Recommended Models
|
|
58
80
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
model to choose can start with the recommended model in one click.
|
|
81
|
+
Start with a short list: safest recommendation, faster model, stronger model.
|
|
82
|
+
Advanced details stay available without overwhelming first-time users.
|
|
62
83
|
|
|
63
|
-

|
|
64
85
|
|
|
65
86
|
### 4. Install And Load
|
|
66
87
|
|
|
67
|
-
|
|
68
|
-
and
|
|
69
|
-
screen explains that large downloads may take minutes without inventing fake ETA
|
|
70
|
-
data.
|
|
88
|
+
Download and load only after consent. Lattice explains model size, local
|
|
89
|
+
execution, and network use before work starts.
|
|
71
90
|
|
|
72
|
-

|
|
73
92
|
|
|
74
93
|
### 5. Brain Chat
|
|
75
94
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
home now includes a compact Brain overview for recent memories, older memories,
|
|
79
|
-
and major topics, plus saved-to-memory feedback after chat.
|
|
95
|
+
Talk normally. Useful decisions and context become memory, then appear later as
|
|
96
|
+
topics, relationships, and graph structure.
|
|
80
97
|
|
|
81
|
-

|
|
82
99
|
|
|
83
100
|
## Brain Depths
|
|
84
101
|
|
|
85
|
-
The user travels inward
|
|
86
|
-
while revealing more structure.
|
|
102
|
+
The user travels inward from everyday memory to deeper structure:
|
|
87
103
|
|
|
88
|
-
|
|
|
104
|
+
| Level | User name | What the user gets |
|
|
89
105
|
| --- | --- | --- |
|
|
90
|
-
| Level 1 |
|
|
91
|
-
| Level 2 |
|
|
92
|
-
| Level 3 |
|
|
93
|
-
| Level 4 |
|
|
94
|
-
| Level 5 |
|
|
106
|
+
| Level 1 | Now memory | The living Brain presence and current conversation context |
|
|
107
|
+
| Level 2 | Older memory | Durable memories with source-aware recall |
|
|
108
|
+
| Level 3 | Topics | Recurring themes across chats and documents |
|
|
109
|
+
| Level 4 | Relationships | How decisions, people, files, and ideas connect |
|
|
110
|
+
| Level 5 | Full knowledge graph | Nodes, edges, search, and focused detail for advanced exploration |
|
|
95
111
|
|
|
96
112
|
Walkthrough:
|
|
97
113
|
|
|
98
|
-

|
|
103
|
-
|
|
104
|
-
Separate admin console evidence:
|
|
105
|
-
|
|
106
|
-

|
|
114
|
+

|
|
107
115
|
|
|
108
116
|
Screenshot index and capture notes:
|
|
109
|
-
[output/release/v5.
|
|
110
|
-
|
|
111
|
-
## Architecture At A Glance
|
|
117
|
+
[output/release/v5.3.0/SCREENSHOT_INDEX.md](output/release/v5.3.0/SCREENSHOT_INDEX.md)
|
|
112
118
|
|
|
113
|
-
|
|
114
|
-
localhost sidecar.
|
|
115
|
-
- **Frontend**: React, TypeScript, Vite, TanStack Query, Zustand, Cytoscape.js,
|
|
116
|
-
React Flow, Tailwind/shadcn-style primitives, and generated OpenAPI types.
|
|
117
|
-
- **Backend**: FastAPI on localhost is the UI source of truth.
|
|
118
|
-
- **Brain Core**: independent `lattice_brain` package for graph, memory,
|
|
119
|
-
context, conversations, ingestion, runtime, workflow, storage, and
|
|
120
|
-
portability. Isolation tests prevent `lattice_brain` from importing
|
|
121
|
-
`latticeai`.
|
|
122
|
-
- **Storage**: `StorageEngine` abstraction with SQLite default and optional
|
|
123
|
-
PostgreSQL/pgvector scale mode.
|
|
124
|
-
- **Portability**: encrypted `.latticebrain` archives plus backup, restore,
|
|
125
|
-
inspect, verify, import dry-run, and confirmed restore/import flows. The
|
|
126
|
-
Brain home keeps conversation first and surfaces the everyday "Care for my
|
|
127
|
-
Brain" ownership path as a collapsed control with export, backup, archive,
|
|
128
|
-
inspect, and restore preview actions while keeping destructive confirmed
|
|
129
|
-
restore in Settings. Restore operations create pre-restore backups and roll
|
|
130
|
-
back failed DB/blob swaps so the current Brain is not left half-restored.
|
|
131
|
-
- **Privacy**: local-first and private-first by default. Cloud models, Telegram,
|
|
132
|
-
Brain Network, Docker/Postgres setup, model downloads, and update checks are
|
|
133
|
-
opt-in paths.
|
|
134
|
-
- **Admin separation**: user chat and Brain ownership stay in the main Brain
|
|
135
|
-
surface; user directory, audit logs, security events, policies, and index
|
|
136
|
-
rebuild controls live under the separate `#/admin` console. Admin history,
|
|
137
|
-
audit, stats, and sensitivity reads honor the active workspace when present.
|
|
138
|
-
|
|
139
|
-
See [ARCHITECTURE.md](ARCHITECTURE.md) for the detailed v5.1.0 architecture.
|
|
140
|
-
|
|
141
|
-
## Installation
|
|
119
|
+
## Install
|
|
142
120
|
|
|
143
121
|
Run from Python:
|
|
144
122
|
|
|
@@ -166,17 +144,27 @@ Apple Silicon local model extras:
|
|
|
166
144
|
pip install "ltcai[local]"
|
|
167
145
|
```
|
|
168
146
|
|
|
169
|
-
##
|
|
170
|
-
|
|
171
|
-
Validated v5.1.0 artifacts:
|
|
147
|
+
## Architecture At A Glance
|
|
172
148
|
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
149
|
+
- **Product category**: local-first Digital Brain.
|
|
150
|
+
- **Core capability**: private AI memory layer for conversations, documents,
|
|
151
|
+
decisions, relationships, workflows, and project context.
|
|
152
|
+
- **UX metaphor**: Living Brain.
|
|
153
|
+
- **Desktop shell**: Tauri 2 starts a localhost sidecar.
|
|
154
|
+
- **Frontend**: React, TypeScript, Vite, TanStack Query, Zustand, Cytoscape.js,
|
|
155
|
+
React Flow, and generated OpenAPI types.
|
|
156
|
+
- **Backend**: FastAPI on localhost is the UI source of truth.
|
|
157
|
+
- **Brain Core**: independent `lattice_brain` package for graph, memory,
|
|
158
|
+
context, conversations, ingestion, runtime, workflow, storage, and portability.
|
|
159
|
+
- **Storage**: SQLite default; PostgreSQL/pgvector is optional scale mode.
|
|
160
|
+
- **Portability**: encrypted `.latticebrain` archives plus backup, restore,
|
|
161
|
+
inspect, verify, import dry-run, and confirmed restore/import flows.
|
|
162
|
+
- **Trust boundary**: local-first by default; cloud calls, downloads, Telegram,
|
|
163
|
+
Brain Network, Docker/Postgres setup, and update checks are opt-in.
|
|
164
|
+
- **Admin separation**: normal Brain use stays separate from users, audit logs,
|
|
165
|
+
policies, security events, retention, and index rebuilds.
|
|
178
166
|
|
|
179
|
-
|
|
167
|
+
See [ARCHITECTURE.md](ARCHITECTURE.md) for the current architecture.
|
|
180
168
|
|
|
181
169
|
## Local Development
|
|
182
170
|
|
|
@@ -185,13 +173,6 @@ npm install
|
|
|
185
173
|
npm run dev
|
|
186
174
|
```
|
|
187
175
|
|
|
188
|
-
Build and validate release artifacts:
|
|
189
|
-
|
|
190
|
-
```bash
|
|
191
|
-
npm run release:artifacts
|
|
192
|
-
npm run release:validate
|
|
193
|
-
```
|
|
194
|
-
|
|
195
176
|
Main validation set:
|
|
196
177
|
|
|
197
178
|
```bash
|
|
@@ -203,70 +184,73 @@ npm run test:unit
|
|
|
203
184
|
npm run test:integration
|
|
204
185
|
npm run test:visual
|
|
205
186
|
npm run desktop:tauri:check
|
|
206
|
-
node scripts/run_python.mjs scripts/wheel_smoke.py --wheel dist/ltcai-5.1.0-py3-none-any.whl
|
|
207
|
-
npm pack --dry-run
|
|
208
187
|
npm run docs:check-links
|
|
209
188
|
```
|
|
210
189
|
|
|
190
|
+
See [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) for developer workflow details.
|
|
191
|
+
|
|
192
|
+
## Current Release Preparation
|
|
193
|
+
|
|
194
|
+
The current development target is **5.3.0 Product Clarity and Runtime Cleanup**:
|
|
195
|
+
|
|
196
|
+
- README and first-run copy are organized around the local-first Digital Brain.
|
|
197
|
+
- Product descriptions are aligned across package metadata, architecture docs,
|
|
198
|
+
feature status, release notes, and extension metadata.
|
|
199
|
+
- Release artifacts and exact filenames are kept in the release section instead
|
|
200
|
+
of interrupting the product introduction.
|
|
201
|
+
- `app_factory.py` is being thinned by moving config, security, and Brain runtime
|
|
202
|
+
assembly seams into `latticeai.runtime`.
|
|
203
|
+
- Legacy root modules are documented in
|
|
204
|
+
[docs/LEGACY_COMPATIBILITY.md](docs/LEGACY_COMPATIBILITY.md).
|
|
205
|
+
|
|
206
|
+
Expected artifacts for a future 5.3.0 release must use exact filenames:
|
|
207
|
+
|
|
208
|
+
- `dist/ltcai-5.3.0-py3-none-any.whl`
|
|
209
|
+
- `dist/ltcai-5.3.0.tar.gz`
|
|
210
|
+
- `ltcai-5.3.0.tgz`
|
|
211
|
+
- `dist/ltcai-5.3.0.vsix`
|
|
212
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_5.3.0_aarch64.dmg`
|
|
213
|
+
|
|
214
|
+
Do not upload `dist/*`. Package registry publishing remains owner-run.
|
|
215
|
+
|
|
211
216
|
## Known Limitations
|
|
212
217
|
|
|
213
|
-
- External package registries are owner-published and can lag behind
|
|
214
|
-
|
|
215
|
-
-
|
|
216
|
-
|
|
217
|
-
update checks require explicit user action.
|
|
218
|
+
- External package registries are owner-published and can lag behind GitHub.
|
|
219
|
+
- PostgreSQL/pgvector is optional scale mode. SQLite is the default local Brain.
|
|
220
|
+
- Docker, model downloads, cloud model calls, Telegram, Brain Network, and update
|
|
221
|
+
checks require explicit user action.
|
|
218
222
|
- Conversation does not fabricate answers when no model is loaded.
|
|
219
|
-
- Agent/workflow simulation without a loaded LLM is deterministic and does not
|
|
220
|
-
|
|
221
|
-
success.
|
|
222
|
-
- Historical artifacts can remain in `dist/`; uploads must use exact v5.1.0
|
|
223
|
-
filenames.
|
|
223
|
+
- Agent/workflow simulation without a loaded LLM is deterministic and does not
|
|
224
|
+
call a model; it is labeled as LLM-free/model-free rather than presented as
|
|
225
|
+
autonomous model success.
|
|
224
226
|
|
|
225
227
|
## Release History
|
|
226
228
|
|
|
227
229
|
| Version | Theme |
|
|
228
230
|
| --- | --- |
|
|
229
|
-
| 5.
|
|
230
|
-
| 5.
|
|
231
|
-
|
|
|
232
|
-
|
|
|
233
|
-
| 4.
|
|
234
|
-
| 4.
|
|
235
|
-
| 4.
|
|
236
|
-
| 4.
|
|
237
|
-
| 4.
|
|
238
|
-
| 4.
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
| 4.1.0 | Frontend & Desktop Rebuild |
|
|
244
|
-
| 4.0.1 | Digital Brain maintenance |
|
|
245
|
-
| 4.0.0 | Digital Brain Platform foundation |
|
|
246
|
-
| 3.0.0 | v3 local-first AI workspace platform |
|
|
247
|
-
|
|
248
|
-
## Current Documentation
|
|
249
|
-
|
|
250
|
-
- [ARCHITECTURE.md](ARCHITECTURE.md) - v5.1.0 architecture.
|
|
251
|
-
- [docs/WHY_LATTICE.md](docs/WHY_LATTICE.md) - why Lattice AI exists.
|
|
231
|
+
| 5.3.0 | Product Clarity and Runtime Cleanup: user-first README/onboarding, unified Digital Brain identity, legacy compatibility map, and app factory runtime seams |
|
|
232
|
+
| 5.2.0 | User-Focused Model Transformation: structured model capability registry, HF verification transparency, model recommendation UX, and workspace-scoped marketplace state |
|
|
233
|
+
| 5.1.0 | Product Trust & Clarity Release: clarifies the private AI memory-layer promise, hardens CSP/secret/auto-read/download gates, adds trust/privacy docs, and refreshes evidence |
|
|
234
|
+
| 5.0.0 | Multilingual Brain Foundation Release: adds persisted Korean/English language choice across first-run onboarding, Brain home, graph exploration, and Admin Console |
|
|
235
|
+
| 4.7.2 | Intuitive Brain UX Release: safer login, one-click recommended setup, direct Brain views, memory-save feedback, and exact artifacts |
|
|
236
|
+
| 4.7.0 | Admin Separation Release: adds the separate Admin Console for users/logs/security/Brain operations |
|
|
237
|
+
| 4.6.1 | Living Brain Release Refresh: publishable version bump after v4.6.0 PyPI immutability |
|
|
238
|
+
| 4.6.0 | Living Brain Experience: made Brain plus conversation the home product |
|
|
239
|
+
| 4.5.1 | Product Reimagining RC: reset shell, navigation, onboarding, and visual system |
|
|
240
|
+
| 4.5.0 | Product Experience Recovery RC: restored first-run setup, workspace/model onboarding, and graph discoverability |
|
|
241
|
+
|
|
242
|
+
## Documentation
|
|
243
|
+
|
|
244
|
+
- [docs/WHY_LATTICE.md](docs/WHY_LATTICE.md) - product philosophy.
|
|
252
245
|
- [docs/TRUST_MODEL.md](docs/TRUST_MODEL.md) - local-first trust model.
|
|
253
246
|
- [PRIVACY.md](PRIVACY.md) - privacy and external communication policy.
|
|
254
|
-
- [
|
|
255
|
-
|
|
256
|
-
- [
|
|
257
|
-
|
|
258
|
-
- [
|
|
259
|
-
- [
|
|
260
|
-
- [RELEASE_NOTES_v5.0.0.md](RELEASE_NOTES_v5.0.0.md) - v5.0.0 multilingual foundation history.
|
|
261
|
-
- [RELEASE_NOTES_v4.6.1.md](RELEASE_NOTES_v4.6.1.md) - v4.6.1 release refresh history.
|
|
262
|
-
- [RELEASE_NOTES_v4.6.0.md](RELEASE_NOTES_v4.6.0.md) - v4.6.0 Living Brain history.
|
|
263
|
-
- [RELEASE.md](RELEASE.md) - release checklist and exact artifact guidance.
|
|
247
|
+
- [ARCHITECTURE.md](ARCHITECTURE.md) - current technical architecture.
|
|
248
|
+
- [FEATURE_STATUS.md](FEATURE_STATUS.md) - current feature status and known limitations.
|
|
249
|
+
- [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) - developer workflow.
|
|
250
|
+
- [docs/LEGACY_COMPATIBILITY.md](docs/LEGACY_COMPATIBILITY.md) - root legacy shim map.
|
|
251
|
+
- [RELEASE.md](RELEASE.md) - release guide and current release notes.
|
|
252
|
+
- [docs/CHANGELOG.md](docs/CHANGELOG.md) - historical changes.
|
|
264
253
|
- [SECURITY.md](SECURITY.md) - security posture.
|
|
265
|
-
- [docs/CHANGELOG.md](docs/CHANGELOG.md) - changelog.
|
|
266
|
-
- [docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md](docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md) - v4.7.1 admin operations history.
|
|
267
|
-
- [docs/V4_7_0_ADMIN_SEPARATION_REPORT.md](docs/V4_7_0_ADMIN_SEPARATION_REPORT.md) - v4.7.0 admin separation history.
|
|
268
|
-
- [docs/V4_6_1_RELEASE_REFRESH_REPORT.md](docs/V4_6_1_RELEASE_REFRESH_REPORT.md) - v4.6.1 release refresh report.
|
|
269
|
-
- [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.
|
|
270
254
|
|
|
271
255
|
## License
|
|
272
256
|
|