@gencode/web 0.5.5 → 0.5.7
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/CHANGELOG.md +29 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.5.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bb18ff9: AIMax no longer saves the runtime system prompt into session data. New `aimax run` executions do not create or overwrite `<dataDir>/.aimax/<sessionStore>/<sessionId>/system-prompt.txt`, and `aimax export-html` ignores any legacy `system-prompt.txt` files that may already exist, so exported HTML no longer shows historical system prompts. Transcript export remains available, and the existing `<dataDir>/.aimax/<sessionStore>/<sessionId>/session-tools.json` tools snapshot continues to power the Available Tools section. Deprecated snapshot APIs such as `persistSystemPromptSnapshot`, `loadSystemPromptSnapshot`, and `persistSessionExportSnapshots` are retained for compatibility, but system prompt persistence/reading is disabled: the system prompt helpers no-op or return `null`, and the export snapshot helper only writes tools. If your deployment has old `system-prompt.txt` files, clean them with an operations-approved filesystem cleanup job.
|
|
8
|
+
- Updated dependencies [bb18ff9]
|
|
9
|
+
- @gencode/console@0.5.7
|
|
10
|
+
|
|
11
|
+
## 0.5.6
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- b352a92: Default local memory is now built into the core: daily entries go to `.aimax/memory/YYYY-MM-DD.md`, structured `MEMORY.md` updates merge by section, and no plugin is required for the default provider path. Optional core capabilities—recall, capture, compaction recall, and Knowledge Controller—are configured via `memory.core` and remain off unless explicitly enabled (`memory.core.*.enabled`). CLI parses `AIMAX_MEMORY_KC_*` into structured `memory.core.knowledgeController` for agents. The `aimax-memory-plugin` continues to provide Mem0 Cloud, Mem0 OSS, and third-party memory provider overrides when selected through `plugins.slots.memory` in `plugins.json` or a file passed with `--plugins-config`, with plugin discovery configured through `plugins.load.paths`.
|
|
16
|
+
- b352a92: The built-in memory provider now handles recent memory writes without requiring a plugin: daily entries are appended to `.aimax/memory/YYYY-MM-DD.md`, session entries use `.aimax/memory/session-<sessionId>.md`, and structured `MEMORY.md` updates replace matching sections while preserving unrelated sections. This keeps the default CLI memory path aligned with the local memory layout users already configure under `.aimax`.
|
|
17
|
+
- b352a92: Require the public `goal` completion tool to submit a per-task acceptance report. A complete goal now needs `completedTasks` entries covering every required task and required acceptance criterion with evidence summaries and sources; AIMax records those entries as manual evidence before marking the workflow complete.
|
|
18
|
+
|
|
19
|
+
Goal continuation context now includes the required task and acceptance-criterion ids needed to build that completion report. Calls that omit required summaries, tasks, criteria, or evidence sources are rejected with structured errors such as `missing_summary`, `missing_completed_tasks`, `missing_required_completed_task`, `missing_required_acceptance_evidence`, `blocked_tasks_remain`, `unknown_completed_task`, `unknown_acceptance_criterion`, `missing_evidence_summary`, `missing_evidence_source`, `workflow_not_initialized`, or `workflow_corrupt`.
|
|
20
|
+
|
|
21
|
+
- b352a92: `aimax run` now releases built-in memory index watchers and timers at the end of each agent run. This keeps the default core memory provider path from holding the Node.js process open after the final session output has been written, while preserving the existing `.aimax/MEMORY.md` and `.aimax/memory/YYYY-MM-DD.md` storage layout.
|
|
22
|
+
- 02c5263: Skills can now request approval for side-effectful shell work without writing a plugin. Skill authors can declare validated actions in `actions.yml` next to `SKILL.md` and invoke them through `skill_action_run`, or ask for one-off command approval with `guarded_exec`. Invalid action configuration, invalid inputs, workspace escapes, and commands changed after approval fail before any script runs.
|
|
23
|
+
- Updated dependencies [b352a92]
|
|
24
|
+
- Updated dependencies [b352a92]
|
|
25
|
+
- Updated dependencies [b352a92]
|
|
26
|
+
- Updated dependencies [b352a92]
|
|
27
|
+
- Updated dependencies [b352a92]
|
|
28
|
+
- Updated dependencies [02c5263]
|
|
29
|
+
- @gencode/shared@0.5.0
|
|
30
|
+
- @gencode/console@0.5.6
|
|
31
|
+
|
|
3
32
|
## 0.5.5
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"CHANGELOG.md"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@gencode/console": "0.5.
|
|
17
|
-
"@gencode/shared": "0.
|
|
16
|
+
"@gencode/console": "0.5.7",
|
|
17
|
+
"@gencode/shared": "0.5.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|
|
20
20
|
"scripts": {
|