@gencode/web 0.0.11 → 0.1.1
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 +31 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f799cc0: Restore custom agent delegation in prompts and subagent spawning, with stricter validation that only explicitly listed custom agent names may be selected.
|
|
8
|
+
- 970bf39: Subagent artifacts are now recorded in the agent session instead of a separate child session, with new `source` and `sessionId` fields on each operation to distinguish agent vs subagent provenance. CRON tasks no longer generate artifact records.
|
|
9
|
+
- Add `--max-tokens` support to the summarize command and allow agent runs to cap model output tokens.
|
|
10
|
+
- Updated dependencies [f799cc0]
|
|
11
|
+
- Updated dependencies [970bf39]
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @gencode/console@0.1.1
|
|
14
|
+
|
|
15
|
+
## 0.1.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- ff2729c: Add a batch_subagent_spawn tool that accepts multiple subagent tasks and runs them with a five-child concurrency limit.
|
|
20
|
+
- 80932da: Restrict subagent nesting depth from 3 to 2 and add depth-aware guardrails: system prompts now include a subagent constraint section discouraging deep nesting, and the subagent_spawn tool description warns subagents to prefer direct tool calls over spawning further subagents.
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 80932da: Fix sub-subagent session directories being placed at the sessions root instead of nested inside the parent subagent's directory. Added `parentDir` field to `SessionPathOptions` so the session layer can resolve child paths relative to the spawning session's absolute directory, correctly nesting subagents at any depth.
|
|
25
|
+
- f96b5fd: Record successful agent file write and edit operations in per-session artifacts.json files with tool metadata, operation names, move sources, timestamps, and bounded content previews.
|
|
26
|
+
- 7e0ecf4: Stop truncating agent log message previews by default so full task and message text is preserved in logs.
|
|
27
|
+
- Updated dependencies [ff2729c]
|
|
28
|
+
- Updated dependencies [80932da]
|
|
29
|
+
- Updated dependencies [80932da]
|
|
30
|
+
- Updated dependencies [f96b5fd]
|
|
31
|
+
- Updated dependencies [7e0ecf4]
|
|
32
|
+
- @gencode/console@0.1.0
|
|
33
|
+
|
|
3
34
|
## 0.0.10
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"CHANGELOG.md"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@gencode/console": "0.
|
|
16
|
+
"@gencode/console": "0.1.1",
|
|
17
17
|
"@gencode/shared": "0.1.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|