@oisincoveney/pipeline 1.23.1 → 1.23.3
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.d.ts +5 -5
- package/dist/config.js +1 -0
- package/dist/schedule-planner.js +5 -1
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -371,8 +371,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
371
371
|
policy: z.ZodOptional<z.ZodObject<{
|
|
372
372
|
commands: z.ZodOptional<z.ZodEnum<{
|
|
373
373
|
allow: "allow";
|
|
374
|
-
"trusted-only": "trusted-only";
|
|
375
374
|
deny: "deny";
|
|
375
|
+
"trusted-only": "trusted-only";
|
|
376
376
|
}>>;
|
|
377
377
|
modules: z.ZodOptional<z.ZodEnum<{
|
|
378
378
|
allow: "allow";
|
|
@@ -396,8 +396,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
396
396
|
}, z.core.$strict>>>;
|
|
397
397
|
default_profile: z.ZodOptional<z.ZodString>;
|
|
398
398
|
mode: z.ZodEnum<{
|
|
399
|
-
hosted: "hosted";
|
|
400
399
|
local: "local";
|
|
400
|
+
hosted: "hosted";
|
|
401
401
|
}>;
|
|
402
402
|
provider: z.ZodLiteral<"toolhive">;
|
|
403
403
|
authorization_env: z.ZodDefault<z.ZodString>;
|
|
@@ -440,10 +440,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
440
440
|
}, z.core.$strict>>;
|
|
441
441
|
output: z.ZodOptional<z.ZodObject<{
|
|
442
442
|
format: z.ZodEnum<{
|
|
443
|
+
json_schema: "json_schema";
|
|
443
444
|
text: "text";
|
|
444
445
|
json: "json";
|
|
445
446
|
jsonl: "jsonl";
|
|
446
|
-
json_schema: "json_schema";
|
|
447
447
|
}>;
|
|
448
448
|
repair: z.ZodOptional<z.ZodObject<{
|
|
449
449
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -512,10 +512,10 @@ declare const configSchema: z.ZodObject<{
|
|
|
512
512
|
disabled: "disabled";
|
|
513
513
|
}>>>;
|
|
514
514
|
output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
515
|
+
json_schema: "json_schema";
|
|
515
516
|
text: "text";
|
|
516
517
|
json: "json";
|
|
517
518
|
jsonl: "jsonl";
|
|
518
|
-
json_schema: "json_schema";
|
|
519
519
|
}>>>;
|
|
520
520
|
rules: z.ZodOptional<z.ZodBoolean>;
|
|
521
521
|
skills: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -534,9 +534,9 @@ declare const configSchema: z.ZodObject<{
|
|
|
534
534
|
host_models: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
535
535
|
model: z.ZodOptional<z.ZodString>;
|
|
536
536
|
type: z.ZodEnum<{
|
|
537
|
+
opencode: "opencode";
|
|
537
538
|
command: "command";
|
|
538
539
|
codex: "codex";
|
|
539
|
-
opencode: "opencode";
|
|
540
540
|
}>;
|
|
541
541
|
}, z.core.$strict>>>;
|
|
542
542
|
scheduler: z.ZodDefault<z.ZodObject<{
|
package/dist/config.js
CHANGED
|
@@ -218,6 +218,7 @@ profiles:
|
|
|
218
218
|
runner: opencode
|
|
219
219
|
description: Refine a baseline schedule into a specialized approved-plan artifact.
|
|
220
220
|
instructions: { inline: "Generate exactly one workflow named root as an explicit schedule graph. Return YAML only." }
|
|
221
|
+
timeout_ms: 300000
|
|
221
222
|
skills: [schedule-graph-shaping]
|
|
222
223
|
mcp_servers: [pipeline-gateway]
|
|
223
224
|
tools: [read, list, grep, glob, bash]
|
package/dist/schedule-planner.js
CHANGED
|
@@ -560,7 +560,11 @@ async function runSchedulePlanner(plannerProfile, prompt, options, nodeId = "sch
|
|
|
560
560
|
return normalizeRunnerOutput(plan, result.stdout).output.trim();
|
|
561
561
|
}
|
|
562
562
|
function plannerFailureMessage(plannerProfile, result) {
|
|
563
|
-
const details = [
|
|
563
|
+
const details = [
|
|
564
|
+
result.timedOut ? "timed out waiting for scheduler subprocess" : void 0,
|
|
565
|
+
result.stderr?.trim() ? `stderr:\n${result.stderr.trim()}` : void 0,
|
|
566
|
+
result.stdout.trim() ? `stdout:\n${result.stdout.trim()}` : void 0
|
|
567
|
+
].filter((value) => Boolean(value));
|
|
564
568
|
const message = `schedule planner '${plannerProfile}' failed with exit ${result.exitCode}`;
|
|
565
569
|
return details.length === 0 ? message : `${message}\n${details.join("\n")}`;
|
|
566
570
|
}
|
package/package.json
CHANGED
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"prepack": "bun run build:cli"
|
|
113
113
|
},
|
|
114
114
|
"type": "module",
|
|
115
|
-
"version": "1.23.
|
|
115
|
+
"version": "1.23.3",
|
|
116
116
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
117
117
|
"main": "./dist/index.js",
|
|
118
118
|
"types": "./dist/index.d.ts",
|