agentera 3.0.0-dev.79 → 3.0.0-dev.80
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/bundle/.agentera-build-source.json +5 -5
- package/bundle/CHANGELOG.md +9 -0
- package/bundle/references/adapters/package-registry.yaml +147 -145
- package/bundle/references/artifacts/state-storage-authority.yaml +27 -18
- package/bundle/skills/agentera/schemas/artifacts/todo.yaml +6 -3
- package/dist/.agentera-build-source.json +5 -5
- package/dist/cli/capabilityContext/progress.js +7 -6
- package/dist/cli/commands/prime.js +13 -0
- package/dist/cli/commands/state/write.js +29 -3
- package/dist/cli/help.js +10 -4
- package/dist/state/todoCreateBatch.js +69 -0
- package/dist/state/todoDocsEntities.js +212 -2
- package/dist/state/todoReconciliationTransaction.js +41 -8
- package/dist/state/todoTransitionBatch.js +65 -0
- package/dist/state/todoUpdateBatch.js +50 -0
- package/dist/state/write/explain.js +6 -3
- package/dist/state/write/runtimeOperations.js +8 -8
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "agentera.generatedBuildSource.v1",
|
|
3
|
-
"commit": "
|
|
4
|
-
"tree": "
|
|
5
|
-
"files":
|
|
6
|
-
"workingTreeSha256": "
|
|
7
|
-
"identitySha256": "
|
|
3
|
+
"commit": "296cb7e29c2521b95985f933b08f1a5d7724b4f0",
|
|
4
|
+
"tree": "732d6174b4bbf04834ff7fde86172e24ad69689c",
|
|
5
|
+
"files": 6856,
|
|
6
|
+
"workingTreeSha256": "0c148b6e30d19f0945267efa03f12d71e92587c80f8744b1cc1e0541de2ab9bd",
|
|
7
|
+
"identitySha256": "aec00264c492a72d7501ee6e58d69fa6fd1f10e0b3d5d75b0feff257e5874914"
|
|
8
8
|
}
|
package/bundle/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
|
|
19
19
|
### Changed
|
|
20
20
|
|
|
21
|
+
- `agentera state todo set-severity` and `resolve` now accept strict,
|
|
22
|
+
preview-confirmed same-kind batches while preserving singleton flag syntax.
|
|
23
|
+
- [post-audit-flagged] `agentera state todo create --input` now accepts strict, preview-confirmed
|
|
24
|
+
same-kind batches with request-local dependency references and replay-safe IDs.
|
|
21
25
|
- Consented `agentera report refresh --consent local-history` now publishes the
|
|
22
26
|
deterministic personal-glossary candidate projection for the new evidence
|
|
23
27
|
generation. Projection failures keep evidence current, return nonzero with
|
|
@@ -101,6 +105,11 @@
|
|
|
101
105
|
|
|
102
106
|
### Fixed
|
|
103
107
|
|
|
108
|
+
- Fixed deprecated `prime --dashboard --fields` requests to return a typed
|
|
109
|
+
migration failure instead of successful partial JSON; unfiltered dashboard
|
|
110
|
+
aliases remain status capsules, and consumers are directed to
|
|
111
|
+
`npx -y agentera@next prime --context status --format json` and
|
|
112
|
+
`capability_context.context.status_context`.
|
|
104
113
|
- Fixed `prime --context status --format json` so oversized current health
|
|
105
114
|
audits return `health.exists: true`, `status: summary_only`, and exact
|
|
106
115
|
`state health list/get` recovery instead of appearing absent.
|