@oisincoveney/pipeline 3.15.5 → 3.15.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/defaults/profiles.yaml
CHANGED
|
@@ -154,7 +154,7 @@ profiles:
|
|
|
154
154
|
runner: opencode
|
|
155
155
|
scheduling_roles: [implementation]
|
|
156
156
|
description: Add focused failing tests for the requested behavior.
|
|
157
|
-
timeout_ms:
|
|
157
|
+
timeout_ms: 1800000
|
|
158
158
|
instructions: { inline: "This scheduled node is already dispatched by Moka; do direct repository work inside the current workspace. Do not invoke `moka run`, `moka submit`, `$dispatch`, `$scope`, `$execute`, or any nested Moka/workflow supervisor from this node. Add focused failing tests for the requested behavior only. Do not change production code. Only edit files matching test paths such as **/*.test.*, **/*.spec.*, **/*_test.*, **/__tests__/**, test/**, or tests/**. Tool findings about lint, types, complexity, or dead code must be resolved at source; comments must not hide them. If a gate flags your test, restructure the test (e.g. move restricted imports into shared support/fixture helpers). Return only valid JSON with top-level changes and verification. Every changes entry must include summary, why, and files. Include risks, followups, and lessons when present. Do not use Markdown fences or prose outside the JSON object." }
|
|
159
159
|
skills: [test]
|
|
160
160
|
mcp_servers: [pipeline-gateway]
|
|
@@ -169,7 +169,7 @@ profiles:
|
|
|
169
169
|
runner: opencode
|
|
170
170
|
scheduling_roles: [implementation]
|
|
171
171
|
description: Implement production code until the failing tests pass.
|
|
172
|
-
timeout_ms:
|
|
172
|
+
timeout_ms: 1800000
|
|
173
173
|
instructions: { inline: "This scheduled node is already dispatched by Moka; do direct repository work inside the current workspace. Do not invoke `moka run`, `moka submit`, `$dispatch`, `$scope`, `$execute`, or any nested Moka/workflow supervisor from this node. Implement the smallest production change that makes the failing tests pass. Tool findings about lint, types, complexity, or dead code must be resolved at source; comments must not hide them. Reduce complexity by extracting helpers, remove genuinely dead code, and migrate off deprecated APIs rather than hiding the warning. Return only valid JSON with top-level changes and verification. Every changes entry must include summary, why, and files. Include risks, followups, and lessons when present. Do not use Markdown fences or prose outside the JSON object." }
|
|
174
174
|
skills: [trace, test, fix, library-first-development]
|
|
175
175
|
mcp_servers: [pipeline-gateway]
|
package/dist/config/schemas.d.ts
CHANGED
|
@@ -226,8 +226,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
226
226
|
policy: z.ZodOptional<z.ZodObject<{
|
|
227
227
|
commands: z.ZodOptional<z.ZodEnum<{
|
|
228
228
|
allow: "allow";
|
|
229
|
-
deny: "deny";
|
|
230
229
|
"trusted-only": "trusted-only";
|
|
230
|
+
deny: "deny";
|
|
231
231
|
}>>;
|
|
232
232
|
modules: z.ZodOptional<z.ZodEnum<{
|
|
233
233
|
allow: "allow";
|
|
@@ -255,8 +255,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
255
255
|
global: "global";
|
|
256
256
|
}>>;
|
|
257
257
|
mode: z.ZodEnum<{
|
|
258
|
-
local: "local";
|
|
259
258
|
hosted: "hosted";
|
|
259
|
+
local: "local";
|
|
260
260
|
}>;
|
|
261
261
|
provider: z.ZodLiteral<"toolhive">;
|
|
262
262
|
authorization_env: z.ZodDefault<z.ZodString>;
|
|
@@ -300,10 +300,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
300
300
|
}, z.core.$strict>>;
|
|
301
301
|
output: z.ZodOptional<z.ZodObject<{
|
|
302
302
|
format: z.ZodEnum<{
|
|
303
|
-
json_schema: "json_schema";
|
|
304
303
|
text: "text";
|
|
305
304
|
json: "json";
|
|
306
305
|
jsonl: "jsonl";
|
|
306
|
+
json_schema: "json_schema";
|
|
307
307
|
}>;
|
|
308
308
|
repair: z.ZodOptional<z.ZodObject<{
|
|
309
309
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -379,10 +379,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
379
379
|
disabled: "disabled";
|
|
380
380
|
}>>>;
|
|
381
381
|
output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
382
|
-
json_schema: "json_schema";
|
|
383
382
|
text: "text";
|
|
384
383
|
json: "json";
|
|
385
384
|
jsonl: "jsonl";
|
|
385
|
+
json_schema: "json_schema";
|
|
386
386
|
}>>>;
|
|
387
387
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
388
388
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -503,8 +503,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
503
503
|
schedules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
504
504
|
description: z.ZodOptional<z.ZodString>;
|
|
505
505
|
baseline: z.ZodEnum<{
|
|
506
|
-
execute: "execute";
|
|
507
506
|
quick: "quick";
|
|
507
|
+
execute: "execute";
|
|
508
508
|
}>;
|
|
509
509
|
max_parallel_nodes: z.ZodOptional<z.ZodNumber>;
|
|
510
510
|
node_catalog: z.ZodOptional<z.ZodString>;
|
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>;
|
package/dist/moka-submit.d.ts
CHANGED
|
@@ -310,8 +310,8 @@ declare const mokaGraphSubmitOptionsSchema: z.ZodObject<{
|
|
|
310
310
|
}, z.core.$strict>>;
|
|
311
311
|
serviceAccountName: z.ZodOptional<z.ZodString>;
|
|
312
312
|
mode: z.ZodEnum<{
|
|
313
|
-
quick: "quick";
|
|
314
313
|
full: "full";
|
|
314
|
+
quick: "quick";
|
|
315
315
|
}>;
|
|
316
316
|
schedulePath: z.ZodOptional<z.ZodString>;
|
|
317
317
|
scheduleYaml: z.ZodOptional<z.ZodString>;
|
|
@@ -549,8 +549,8 @@ declare const mokaSubmitOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
549
549
|
}, z.core.$strict>>;
|
|
550
550
|
serviceAccountName: z.ZodOptional<z.ZodString>;
|
|
551
551
|
mode: z.ZodEnum<{
|
|
552
|
-
quick: "quick";
|
|
553
552
|
full: "full";
|
|
553
|
+
quick: "quick";
|
|
554
554
|
}>;
|
|
555
555
|
schedulePath: z.ZodOptional<z.ZodString>;
|
|
556
556
|
scheduleYaml: z.ZodOptional<z.ZodString>;
|
|
@@ -48,8 +48,8 @@ declare const runnerDeliverySchema: z.ZodObject<{
|
|
|
48
48
|
declare const mokaSubmissionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
49
49
|
kind: z.ZodLiteral<"graph">;
|
|
50
50
|
mode: z.ZodEnum<{
|
|
51
|
-
quick: "quick";
|
|
52
51
|
full: "full";
|
|
52
|
+
quick: "quick";
|
|
53
53
|
}>;
|
|
54
54
|
}, z.core.$strict>, z.ZodObject<{
|
|
55
55
|
argv: z.ZodArray<z.ZodString>;
|
|
@@ -114,8 +114,8 @@ declare const runnerCommandPayloadSchema: z.ZodObject<{
|
|
|
114
114
|
submission: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
115
115
|
kind: z.ZodLiteral<"graph">;
|
|
116
116
|
mode: z.ZodEnum<{
|
|
117
|
-
quick: "quick";
|
|
118
117
|
full: "full";
|
|
118
|
+
quick: "quick";
|
|
119
119
|
}>;
|
|
120
120
|
}, z.core.$strict>, z.ZodObject<{
|
|
121
121
|
argv: z.ZodArray<z.ZodString>;
|
|
@@ -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>;
|
|
@@ -353,8 +353,8 @@ declare const runnerEventBatchSchema: z.ZodObject<{
|
|
|
353
353
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
354
354
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
355
355
|
status: z.ZodEnum<{
|
|
356
|
-
pass: "pass";
|
|
357
356
|
fail: "fail";
|
|
357
|
+
pass: "pass";
|
|
358
358
|
skip: "skip";
|
|
359
359
|
}>;
|
|
360
360
|
summary: z.ZodOptional<z.ZodString>;
|
package/package.json
CHANGED
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"prepack": "bun run build:cli"
|
|
131
131
|
},
|
|
132
132
|
"type": "module",
|
|
133
|
-
"version": "3.15.
|
|
133
|
+
"version": "3.15.6",
|
|
134
134
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
135
135
|
"main": "./dist/index.js",
|
|
136
136
|
"types": "./dist/index.d.ts",
|