@a5c-ai/babysitter-sdk 5.0.1-staging.d420e087 → 5.0.1-staging.dc0fcf07
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.
|
@@ -31,7 +31,7 @@ export const agentTask = defineTask('agent-scorer', (args, taskCtx) => ({
|
|
|
31
31
|
},
|
|
32
32
|
|
|
33
33
|
io: {
|
|
34
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
34
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
35
35
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`
|
|
36
36
|
}
|
|
37
37
|
}));
|
|
@@ -54,7 +54,7 @@ export const grepCheckTask = defineTask('grep-integration-check', (args, taskCtx
|
|
|
54
54
|
timeout: 10000
|
|
55
55
|
},
|
|
56
56
|
io: {
|
|
57
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
57
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
58
58
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`
|
|
59
59
|
}
|
|
60
60
|
}));
|
|
@@ -74,7 +74,7 @@ export const verificationGateTask = defineTask('verification-gate', (args, taskC
|
|
|
74
74
|
timeout: 300000
|
|
75
75
|
},
|
|
76
76
|
io: {
|
|
77
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
77
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
78
78
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`
|
|
79
79
|
}
|
|
80
80
|
}));
|
|
@@ -103,7 +103,7 @@ export const readSpecTask = defineTask('read-spec', (args, taskCtx) => ({
|
|
|
103
103
|
timeout: 5000,
|
|
104
104
|
},
|
|
105
105
|
io: {
|
|
106
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
106
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
107
107
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`,
|
|
108
108
|
},
|
|
109
109
|
}));
|
|
@@ -141,7 +141,7 @@ export const authorTestsFromSpecTask = defineTask(
|
|
|
141
141
|
},
|
|
142
142
|
},
|
|
143
143
|
io: {
|
|
144
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
144
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
145
145
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`,
|
|
146
146
|
},
|
|
147
147
|
}),
|
|
@@ -178,7 +178,7 @@ export const verifyAgainstSpecTask = defineTask(
|
|
|
178
178
|
},
|
|
179
179
|
},
|
|
180
180
|
io: {
|
|
181
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
181
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
182
182
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`,
|
|
183
183
|
},
|
|
184
184
|
}),
|
|
@@ -222,7 +222,7 @@ export const skillTask = defineTask('analyzer-skill', (args, taskCtx) => ({
|
|
|
222
222
|
},
|
|
223
223
|
|
|
224
224
|
io: {
|
|
225
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
225
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
226
226
|
outputJsonPath: `tasks/${taskCtx.effectId}/output.json`
|
|
227
227
|
}
|
|
228
228
|
}));
|
|
@@ -99,7 +99,7 @@ defineTask('my-task', (args, taskCtx) => ({
|
|
|
99
99
|
outputSchema: { type: 'object', required: ['result'] }
|
|
100
100
|
},
|
|
101
101
|
io: {
|
|
102
|
-
inputJsonPath: `tasks/${taskCtx.effectId}/
|
|
102
|
+
inputJsonPath: `tasks/${taskCtx.effectId}/inputs.json`,
|
|
103
103
|
outputJsonPath: `tasks/${taskCtx.effectId}/result.json`
|
|
104
104
|
}
|
|
105
105
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/babysitter-sdk",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.dc0fcf07",
|
|
4
4
|
"description": "Storage and run-registry primitives for event-sourced babysitter workflows.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@a5c-ai/agent-catalog": "*",
|
|
43
|
-
"@a5c-ai/agent-mux": "^0.4.10-staging.
|
|
43
|
+
"@a5c-ai/agent-mux": "^0.4.10-staging.dc0fcf07",
|
|
44
44
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
45
45
|
"@sinclair/typebox": "^0.34.48",
|
|
46
46
|
"zod": "^4.0.0",
|