@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.
- package/CHANGELOG.md +15 -0
- package/dist/executors/shell-executor.js +10 -2
- package/dist/worker/observe/dag-run-artifacts.js +90 -0
- package/dist/worker/observe/node-input.js +444 -0
- package/dist/worker/observe/routes.js +17 -0
- package/dist/worker/observe/static/api.js +9 -0
- package/dist/worker/observe/static/constants.js +9 -0
- package/dist/worker/observe/static/state.js +14 -0
- package/dist/worker/observe/static/styles.css +74 -0
- package/dist/worker/observe/static/views/dag-inspector.js +371 -15
- package/dist/workflows/dag/backend-test-result-contract.js +103 -0
- package/dist/workflows/dag/node-execution.js +3 -2
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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");
|