@tea-agent/loop-agent 0.24.5 → 0.24.6

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.
@@ -593,8 +593,9 @@ export async function executeDagNode(input) {
593
593
  node.structuredArtifactSha256 = createHash("sha256").update(bytes).digest("hex");
594
594
  node.structuredArtifactSchemaId = task.shell.jsonArtifactGate.schemaId;
595
595
  }
596
- else if (task.shell?.backendTestPipeline === "classification-result-context") {
597
- // The current 15-node single-run pipeline materializes the canonical
596
+ else if (task.shell?.backendTestPipeline === "classification-result-context" ||
597
+ task.shell?.backendTestPipeline === "markdown-execute-html") {
598
+ // Legacy 15-node and Markdown-first 8-node pipelines materialize
598
599
  // contracts/backend-test-result.json without jsonArtifactGate. Bind it
599
600
  // so Outcome adapters project kind=backend-test-result for Ready Planner.
600
601
  const artifactPath = path.join(runDir, "contracts", "backend-test-result.json");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tea-agent/loop-agent",
3
- "version": "0.24.5",
3
+ "version": "0.24.6",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "loop-agent": "bin/loop-agent.js",