@tea-agent/loop-agent 0.34.5 → 0.35.0-beta.2
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 +9 -0
- package/dist/worker/console/static/assets/index-fsjzREob.js +56 -0
- package/dist/worker/console/static/assets/{index-qpkysQYW.css → index-hJqCPs_g.css} +1 -1
- package/dist/worker/console/static/index.html +2 -2
- package/dist/worker/observe/static/operator-chrome.css +34 -0
- package/dist/worker/observe/static/operator-chrome.js +57 -0
- package/dist/workflows/dag/dynamic-runtime/shared.js +3 -1
- package/dist/workflows/dag/frontend-implementation-contract.js +49 -0
- package/dist/workflows/dag/frontend-prewrite-gate.js +17 -1
- package/dist/workflows/dag/init-hybrid.js +90 -77
- package/dist/workflows/dag/types.js +2 -0
- package/package.json +1 -1
- package/skills/frontend-implementation/references/node-contracts.md +4 -2
- package/dist/worker/console/static/assets/index-y980PqtP.js +0 -56
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.35.0-beta.2] - 2026-08-13
|
|
6
|
+
|
|
7
|
+
### 改进
|
|
8
|
+
|
|
9
|
+
- 前端实现 DAG 将 `frontend-implementation-contract-v1` 收敛为单一事实源:删除重复的 `frontend-contract-json-pi` 与 `frontend-contract-json-validate-shell` 节点,由 `frontend-prewrite-gate-shell` 直接从生效计划(`frontend-plan-pi` 或修订后的 `frontend-plan-revision-pi`)末尾的单个 fenced JSON 物化契约,避免多个 JSON 生产者引发 `invalid-output ... (found N)`
|
|
10
|
+
- 修复前端设计评审 verdict 提取:同时检查 `assistantText` 与 `stdout`,避免 `VERDICT: request-revision` 出现在 stdout 时被误判为缺失
|
|
11
|
+
- 修复前端 Mock 策略与验证命令不一致:`frontend-prewrite-gate-shell` 在写入授权前校验「非 `not-needed` 策略必须有冻结的 Mock 验证命令」,不再延迟到 verify trace 才失败;auto 模式在无确认 Mock 能力或无确定性验证命令时强制 `not-needed`,required 模式缺少验证命令时生成期即阻塞并输出 `Mock strategy is required, but no authorized Mock verification command was found.`
|
|
12
|
+
|
|
5
13
|
## [0.34.5] - 2026-08-13
|
|
6
14
|
|
|
7
15
|
### 重点更新
|
|
@@ -73,6 +81,7 @@
|
|
|
73
81
|
### 改进
|
|
74
82
|
|
|
75
83
|
- DAG 挂钟时间常量统一收敛至 src/shared 共享模块管理,移除了 workflows 中不必要的内核导入
|
|
84
|
+
- 前端实现契约物化新增冻结命令校验:每个 `verificationTarget.commandLabel` 必须落在 DAG 生成时冻结的命令集合内,否则 fail-closed 拒绝,防止模型发明验证命令;plan/revision 提示词同步强化单 JSON 输出与逐条 AC 回显
|
|
76
85
|
|
|
77
86
|
### 修复
|
|
78
87
|
|