@gencode/web 0.0.10 → 0.1.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/CHANGELOG.md +23 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,33 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ff2729c: Add a batch_subagent_spawn tool that accepts multiple subagent tasks and runs them with a five-child concurrency limit.
|
|
8
|
+
- 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.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 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.
|
|
13
|
+
- 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.
|
|
14
|
+
- 7e0ecf4: Stop truncating agent log message previews by default so full task and message text is preserved in logs.
|
|
15
|
+
- Updated dependencies [ff2729c]
|
|
16
|
+
- Updated dependencies [80932da]
|
|
17
|
+
- Updated dependencies [80932da]
|
|
18
|
+
- Updated dependencies [f96b5fd]
|
|
19
|
+
- Updated dependencies [7e0ecf4]
|
|
20
|
+
- @gencode/console@0.1.0
|
|
21
|
+
|
|
3
22
|
## 0.0.10
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
6
25
|
|
|
26
|
+
- 5661a10: Temporarily omit effective custom agents from agent prompts and the subagent spawn tool contract.
|
|
27
|
+
- b4687b0: Report subagent runs that return runner errors as failed instead of completed.
|
|
7
28
|
- 4325f90: Store spawned subagent sessions under their parent session using the spawn tool call id as the child session id.
|
|
29
|
+
- Updated dependencies [5661a10]
|
|
30
|
+
- Updated dependencies [b4687b0]
|
|
8
31
|
- Updated dependencies [4325f90]
|
|
9
32
|
- @gencode/console@0.0.25
|
|
10
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
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.0
|
|
17
|
-
"@gencode/shared": "0.1.
|
|
16
|
+
"@gencode/console": "0.1.0",
|
|
17
|
+
"@gencode/shared": "0.1.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|
|
20
20
|
"scripts": {
|