@gencode/web 0.6.6 → 0.6.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 +27 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,39 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.6.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2ab7f63: Make Thread Goal completion reliable across agents and all applications that consume agent runs.
|
|
8
|
+
|
|
9
|
+
- Goal completion and blocking now use separate model tools with required completion evidence or blocking reasons.
|
|
10
|
+
- Repeated invalid terminal submissions stop after a bounded number of equivalent failures instead of looping indefinitely.
|
|
11
|
+
- Final responses report a persistence failure when delivery work exists but the Goal workflow has not reached `complete`.
|
|
12
|
+
- Administrators can recover an individual historical session through the exported Goal recovery API or the `run-goal-recovery` command without editing Goal files directly.
|
|
13
|
+
|
|
14
|
+
- 2ab7f63: Improve `/goal` task planning consistency across agents, CLI, console, and web consumers.
|
|
15
|
+
|
|
16
|
+
- Complex natural-language objectives can initialize 2–5 persistent execution tasks with acceptance criteria.
|
|
17
|
+
- Vague objectives still start in clarify; models commit plans through the new public `goal_plan` tool instead of overloading `update_task`.
|
|
18
|
+
- Clarify gate now covers the full run lifecycle (first turn, announce, continuations) until a later turn observes committed execution state.
|
|
19
|
+
- Terminal `goal complete` rejects clarify-only or unfinished-clarify workflows.
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [2ab7f63]
|
|
22
|
+
- Updated dependencies [2ab7f63]
|
|
23
|
+
- @gencode/console@0.6.7
|
|
24
|
+
|
|
3
25
|
## 0.6.6
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
6
28
|
|
|
7
29
|
- cc36dad: Improve URL artifact reporting for online documents and shared resources. When an agent creates or publishes a user-openable online resource and shows a link such as a document link, view link, share link, or download link in the final response, the runtime prompt now more explicitly instructs the model to include the same URL in the `<aimax_artifacts>` declaration so backend `done` payloads and transcript artifact metadata can surface it reliably.
|
|
8
|
-
-
|
|
30
|
+
- 8170e03: Support custom HITL approving choice IDs for before-tool safety gates. `HitlChoiceInput` now accepts an optional `approvingChoiceIds` field that declares which choice IDs mean "approve / continue". When resuming a paused run, both guarded operations (`skill_action_run`) and generic non-HITL `before_tool` resumes honor this list. Existing requests that omit the field continue to treat `"approve"` as the only approving choice, preserving backward compatibility.
|
|
31
|
+
- 0d0e504: Improve artifact reporting for Wizard Wiki pages. When the `wizard-wiki` skill creates a page through `scripts/create_page.py` or updates one through `scripts/edit_page.py` and the script response includes a page URL, AIMax now returns that URL in the run artifacts payload as a user-openable Wiki page artifact, distinguishing newly created pages from modified pages.
|
|
9
32
|
- Updated dependencies [cc36dad]
|
|
10
|
-
- Updated dependencies [
|
|
33
|
+
- Updated dependencies [8170e03]
|
|
34
|
+
- Updated dependencies [0d0e504]
|
|
11
35
|
- @gencode/console@0.6.6
|
|
36
|
+
- @gencode/shared@0.6.1
|
|
12
37
|
|
|
13
38
|
## 0.6.5
|
|
14
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.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.6.
|
|
17
|
-
"@gencode/shared": "0.6.
|
|
16
|
+
"@gencode/console": "0.6.7",
|
|
17
|
+
"@gencode/shared": "0.6.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|
|
20
20
|
"scripts": {
|