@oisincoveney/pipeline 3.11.12 → 3.11.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/dist/config/schemas.d.ts
CHANGED
|
@@ -233,8 +233,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
233
233
|
policy: z.ZodOptional<z.ZodObject<{
|
|
234
234
|
commands: z.ZodOptional<z.ZodEnum<{
|
|
235
235
|
allow: "allow";
|
|
236
|
-
"trusted-only": "trusted-only";
|
|
237
236
|
deny: "deny";
|
|
237
|
+
"trusted-only": "trusted-only";
|
|
238
238
|
}>>;
|
|
239
239
|
modules: z.ZodOptional<z.ZodEnum<{
|
|
240
240
|
allow: "allow";
|
|
@@ -262,8 +262,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
262
262
|
global: "global";
|
|
263
263
|
}>>;
|
|
264
264
|
mode: z.ZodEnum<{
|
|
265
|
-
hosted: "hosted";
|
|
266
265
|
local: "local";
|
|
266
|
+
hosted: "hosted";
|
|
267
267
|
}>;
|
|
268
268
|
provider: z.ZodLiteral<"toolhive">;
|
|
269
269
|
authorization_env: z.ZodDefault<z.ZodString>;
|
|
@@ -306,10 +306,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
306
306
|
}, z.core.$strict>>;
|
|
307
307
|
output: z.ZodOptional<z.ZodObject<{
|
|
308
308
|
format: z.ZodEnum<{
|
|
309
|
+
json_schema: "json_schema";
|
|
309
310
|
text: "text";
|
|
310
311
|
json: "json";
|
|
311
312
|
jsonl: "jsonl";
|
|
312
|
-
json_schema: "json_schema";
|
|
313
313
|
}>;
|
|
314
314
|
repair: z.ZodOptional<z.ZodObject<{
|
|
315
315
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -385,10 +385,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
385
385
|
disabled: "disabled";
|
|
386
386
|
}>>>;
|
|
387
387
|
output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
388
|
+
json_schema: "json_schema";
|
|
388
389
|
text: "text";
|
|
389
390
|
json: "json";
|
|
390
391
|
jsonl: "jsonl";
|
|
391
|
-
json_schema: "json_schema";
|
|
392
392
|
}>>>;
|
|
393
393
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
394
394
|
skills: z.ZodOptional<z.ZodBoolean>;
|
package/dist/hooks.d.ts
CHANGED
|
@@ -13,8 +13,8 @@ declare const hookResultSchema: z.ZodObject<{
|
|
|
13
13
|
taskContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
14
14
|
}, z.core.$strict>>;
|
|
15
15
|
status: z.ZodEnum<{
|
|
16
|
-
pass: "pass";
|
|
17
16
|
fail: "fail";
|
|
17
|
+
pass: "pass";
|
|
18
18
|
skip: "skip";
|
|
19
19
|
}>;
|
|
20
20
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -109,6 +109,9 @@ function promoteFinalRefEffect(input) {
|
|
|
109
109
|
function headSha(worktreePath) {
|
|
110
110
|
return Effect.map(runGit(worktreePath, ["rev-parse", "HEAD"]), (sha) => sha.trim());
|
|
111
111
|
}
|
|
112
|
+
function runnerCommitMessage(nodeId) {
|
|
113
|
+
return `chore(pipeline): ${nodeId}`;
|
|
114
|
+
}
|
|
112
115
|
function commitChangesIfNeeded(worktreePath, nodeId, committer) {
|
|
113
116
|
return Effect.gen(function* () {
|
|
114
117
|
if ((yield* runGit(worktreePath, [
|
|
@@ -121,7 +124,7 @@ function commitChangesIfNeeded(worktreePath, nodeId, committer) {
|
|
|
121
124
|
yield* runGit(worktreePath, [
|
|
122
125
|
"commit",
|
|
123
126
|
"-m",
|
|
124
|
-
|
|
127
|
+
runnerCommitMessage(nodeId)
|
|
125
128
|
]);
|
|
126
129
|
});
|
|
127
130
|
}
|
|
@@ -108,8 +108,8 @@ declare const runnerEventRecordSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
108
108
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
109
109
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
110
110
|
status: z.ZodEnum<{
|
|
111
|
-
pass: "pass";
|
|
112
111
|
fail: "fail";
|
|
112
|
+
pass: "pass";
|
|
113
113
|
skip: "skip";
|
|
114
114
|
}>;
|
|
115
115
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -286,8 +286,8 @@ declare const runnerEventBatchSchema: z.ZodObject<{
|
|
|
286
286
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
287
287
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
288
288
|
status: z.ZodEnum<{
|
|
289
|
-
pass: "pass";
|
|
290
289
|
fail: "fail";
|
|
290
|
+
pass: "pass";
|
|
291
291
|
skip: "skip";
|
|
292
292
|
}>;
|
|
293
293
|
summary: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"@biomejs/biome": "2.4.15",
|
|
32
32
|
"@effect/vitest": "^0.29.0",
|
|
33
33
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
34
|
+
"@semantic-release/exec": "^7.1.0",
|
|
34
35
|
"@semantic-release/github": "^12.0.8",
|
|
35
36
|
"@semantic-release/npm": "^13.1.5",
|
|
36
37
|
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
@@ -127,7 +128,7 @@
|
|
|
127
128
|
"prepack": "bun run build:cli"
|
|
128
129
|
},
|
|
129
130
|
"type": "module",
|
|
130
|
-
"version": "3.11.
|
|
131
|
+
"version": "3.11.14",
|
|
131
132
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
132
133
|
"main": "./dist/index.js",
|
|
133
134
|
"types": "./dist/index.d.ts",
|