ltcai 5.5.0 → 5.6.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 +16 -14
- package/docs/CHANGELOG.md +31 -0
- package/frontend/openapi.json +677 -3
- package/frontend/src/api/client.ts +36 -0
- package/frontend/src/api/openapi.ts +573 -4
- package/frontend/src/pages/Act.tsx +202 -5
- package/frontend/src/routes.ts +1 -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/api/review_queue.py +158 -0
- package/latticeai/app_factory.py +28 -0
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +86 -1
- package/latticeai/services/review_queue.py +255 -0
- package/latticeai/services/run_executor.py +33 -0
- package/latticeai/services/triggers.py +30 -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-xMFu94cX.js +16 -0
- package/static/app/assets/index-xMFu94cX.js.map +1 -0
- package/static/app/assets/index-xRn29gI8.css +2 -0
- package/static/app/index.html +2 -2
- package/static/app/assets/index-C7vzwUjU.js +0 -16
- package/static/app/assets/index-C7vzwUjU.js.map +0 -1
- package/static/app/assets/index-HN4f2wbe.css +0 -2
package/README.md
CHANGED
|
@@ -193,23 +193,24 @@ See [docs/DEVELOPMENT.md](docs/DEVELOPMENT.md) for developer workflow details.
|
|
|
193
193
|
|
|
194
194
|
## Current Release Preparation
|
|
195
195
|
|
|
196
|
-
The current development target is **5.
|
|
196
|
+
The current development target is **5.6.0 Brain Automation Review Center**:
|
|
197
197
|
|
|
198
|
-
-
|
|
199
|
-
|
|
200
|
-
-
|
|
201
|
-
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
-
|
|
198
|
+
- Automation output now lands in a workspace-scoped Review inbox before users
|
|
199
|
+
approve, dismiss, snooze, or rerun suggestions.
|
|
200
|
+
- `/automation/reviews` exposes source-aware review items with provenance,
|
|
201
|
+
`effective_status`, and guarded actions.
|
|
202
|
+
- TriggerService and RunExecutor can enqueue review items only when workflows
|
|
203
|
+
explicitly opt in with `review_queue: true`.
|
|
204
|
+
- Act now includes a Review tab under Runs for pending automation suggestions.
|
|
205
|
+
- All package/runtime/static/OpenAPI versions are synchronized to 5.6.0.
|
|
205
206
|
|
|
206
|
-
Expected artifacts for 5.
|
|
207
|
+
Expected artifacts for 5.6.0 release must use exact filenames:
|
|
207
208
|
|
|
208
|
-
- `dist/ltcai-5.
|
|
209
|
-
- `dist/ltcai-5.
|
|
210
|
-
- `ltcai-5.
|
|
211
|
-
- `dist/ltcai-5.
|
|
212
|
-
- `src-tauri/target/release/bundle/dmg/Lattice AI_5.
|
|
209
|
+
- `dist/ltcai-5.6.0-py3-none-any.whl`
|
|
210
|
+
- `dist/ltcai-5.6.0.tar.gz`
|
|
211
|
+
- `ltcai-5.6.0.tgz`
|
|
212
|
+
- `dist/ltcai-5.6.0.vsix`
|
|
213
|
+
- `src-tauri/target/release/bundle/dmg/Lattice AI_5.6.0_aarch64.dmg`
|
|
213
214
|
|
|
214
215
|
Do not upload `dist/*`. Package registry publishing remains owner-run.
|
|
215
216
|
|
|
@@ -228,6 +229,7 @@ Do not upload `dist/*`. Package registry publishing remains owner-run.
|
|
|
228
229
|
|
|
229
230
|
| Version | Theme |
|
|
230
231
|
| --- | --- |
|
|
232
|
+
| 5.6.0 | Brain Automation Review Center: workspace-scoped automation review inbox, source-aware provenance, guarded approve/dismiss/snooze/run_now actions, and Act Review tab |
|
|
231
233
|
| 5.5.0 | Release Coordination: synchronized package/runtime/static versions and release docs for the 5.5.0 line while preserving v5.4.0 Brain Automation Scheduler behavior |
|
|
232
234
|
| 5.4.0 | Brain Automation Scheduler: consent-first recipe drafts (Daily/Weekly/Follow-up), TriggerService with dedup/LATTICE_TZ/degraded, runtime graph cleanup, E2E scenarios |
|
|
233
235
|
| 5.3.0 | Product Clarity and Runtime Cleanup: user-first README/onboarding, unified Digital Brain identity, legacy compatibility map, and app factory runtime seams |
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,37 @@
|
|
|
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.6.0] - 2026-06-15
|
|
7
|
+
|
|
8
|
+
> Brain Automation Review Center. Adds a workspace-scoped review inbox for
|
|
9
|
+
> automation output so scheduled runs and Brain-event suggestions land as
|
|
10
|
+
> inspectable items before the user approves, dismisses, snoozes, or reruns
|
|
11
|
+
> them.
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Backend Review Queue service, store persistence, and `/automation/reviews`
|
|
15
|
+
API with explicit `source`, `status`, `effective_status`, payload, and
|
|
16
|
+
provenance fields.
|
|
17
|
+
- Review item actions: approve, dismiss, snooze, and run_now. `run_now` is a
|
|
18
|
+
preview/regenerate action and does not mark the item approved.
|
|
19
|
+
- Optional `review_queue: true` opt-in path for TriggerService and RunExecutor
|
|
20
|
+
to enqueue review items without changing legacy scheduler behavior.
|
|
21
|
+
- Act page Review inbox under Runs with source filtering, pending review cards,
|
|
22
|
+
provenance details, and guarded actions.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Bumped synchronized Python, npm, VSIX, Tauri, runtime constants, lockfiles,
|
|
26
|
+
OpenAPI artifacts, and static metadata to `5.6.0`.
|
|
27
|
+
- Updated release documentation and artifact names for exact 5.6.0 release
|
|
28
|
+
preparation.
|
|
29
|
+
|
|
30
|
+
### Preserved
|
|
31
|
+
- Snoozed items stay hidden until their `snoozed_until` time expires; expiry is
|
|
32
|
+
interpreted at read time through `effective_status` without scheduler mutation.
|
|
33
|
+
- Existing v5.4/v5.5 automation and workflow behavior remains compatible unless
|
|
34
|
+
a workflow explicitly opts into review queue creation.
|
|
35
|
+
- Package registry publishing and deployment remain owner-run only.
|
|
36
|
+
|
|
6
37
|
## [5.5.0] - 2026-06-15
|
|
7
38
|
|
|
8
39
|
> Release Coordination. Synchronized package/runtime/static metadata and release
|