@gencode/web 0.0.8 → 0.0.9
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 +16 -0
- package/README.md +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @gencode/web
|
|
2
2
|
|
|
3
|
+
## 0.0.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f059988: Wait for agent turn event processing to finish before finalizing runs, so transcript persistence and progress delivery cannot lag behind final callbacks.
|
|
8
|
+
- 43c3f8a: Retry transient LLM turn failures, including provider errors wrapped inside HTTP 200 streams, before failing an agent run.
|
|
9
|
+
- c0e0240: Add local-first custom agent discovery and named subagent runtime policies for AIMax agent runs.
|
|
10
|
+
- 1c9ac08: Add project directory context for run and resume so callers can distinguish the current repository cwd from the workspace mount.
|
|
11
|
+
- e4a07bd: Prefer Simplified Chinese in the default agent system prompt unless the user or task context requires another language.
|
|
12
|
+
- Updated dependencies [f059988]
|
|
13
|
+
- Updated dependencies [43c3f8a]
|
|
14
|
+
- Updated dependencies [c0e0240]
|
|
15
|
+
- Updated dependencies [1c9ac08]
|
|
16
|
+
- Updated dependencies [e4a07bd]
|
|
17
|
+
- @gencode/console@0.0.24
|
|
18
|
+
|
|
3
19
|
## 0.0.8
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## 包定位
|
|
4
4
|
|
|
5
|
-
`@gencode/web` 负责
|
|
6
|
-
|
|
5
|
+
`@gencode/web` 负责 Web 服务集成边界。
|
|
6
|
+
它在架构上的角色,是模拟外部后台服务这一侧的行为,同时严格尊重 CLI 进程边界。
|
|
7
7
|
|
|
8
8
|
## 负责内容
|
|
9
9
|
|
|
10
10
|
这个包适合承载:
|
|
11
11
|
- 面向 Web 的集成行为
|
|
12
|
-
-
|
|
12
|
+
- 模拟外部后台服务侧逻辑
|
|
13
13
|
- 在 Web 边界接收和协调 CLI 驱动产生的输出
|
|
14
14
|
- 处于 agent 领域层之外的 API 与服务集成逻辑
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gencode/web",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
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.0.
|
|
16
|
+
"@gencode/console": "0.0.24",
|
|
17
17
|
"@gencode/shared": "0.1.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|