@tea-agent/loop-agent 0.16.13 → 0.16.14

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 CHANGED
@@ -18,6 +18,12 @@
18
18
  - Pi SDK 执行长推理或大段结构化输出时不再把高频流式增量事件无界累积到内存;同一响应在多个生命周期事件中重复出现的 Token 用量只统计一次,避免 `Invalid string length` 和成本数据虚高。
19
19
  - 后端测试复合执行节点继续保持 clean environment、失败分类和 fail-closed outcome,并为 initial/final Result、repair eligibility、traceability 与 Observe 投影保留结构化运行证据。
20
20
 
21
+ ## [0.16.14] - 2026-07-20
22
+
23
+ ### 修复
24
+
25
+ - `frontend-test` materialize / path audit 自动并入 `testcase/frontend/**` 与 `docs/test-reports/**`,与 hybrid frontend-test DAG 生成约束对齐,避免 TaskSpec 仅声明 `tests/e2e/**` 时 `dag run-task` 直接失败。
26
+
21
27
  ## [0.16.13] - 2026-07-20
22
28
 
23
29
  ### 修复
@@ -320,7 +320,9 @@ function bulletLines(values) {
320
320
  export function expandAllowedPathsForWorkflow(workflow, allowedPaths) {
321
321
  const extras = workflow === "backend-test"
322
322
  ? ["testcase/**", "docs/test-reports/**"]
323
- : [];
323
+ : workflow === "frontend-test"
324
+ ? ["testcase/frontend/**", "docs/test-reports/**"]
325
+ : [];
324
326
  return Array.from(new Set([...allowedPaths, ...extras]));
325
327
  }
326
328
  async function loadExistingTaskConfig(repoRoot, taskId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tea-agent/loop-agent",
3
- "version": "0.16.13",
3
+ "version": "0.16.14",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "loop-agent": "bin/loop-agent.js",