@oisincoveney/pipeline 1.22.3 → 1.22.4
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 +3 -3
- 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
|
@@ -357,7 +357,7 @@ scheduler:
|
|
|
357
357
|
green-implementation:
|
|
358
358
|
category: green
|
|
359
359
|
profile: pipeline-code-writer
|
|
360
|
-
models: [
|
|
360
|
+
models: [opencode-go/qwen3.7-max, kimi-for-coding/k2p6, opencode-go/deepseek-v4-pro]
|
|
361
361
|
verification:
|
|
362
362
|
category: verification
|
|
363
363
|
profile: pipeline-verifier
|
|
@@ -372,7 +372,7 @@ scheduler:
|
|
|
372
372
|
research:
|
|
373
373
|
category: research
|
|
374
374
|
profile: pipeline-researcher
|
|
375
|
-
models: [
|
|
375
|
+
models: [openai/gpt-5.5-fast, zai-coding-plan/glm-5.1, kimi-for-coding/k2p6]
|
|
376
376
|
red-tests:
|
|
377
377
|
category: red
|
|
378
378
|
profile: pipeline-test-writer
|
|
@@ -384,7 +384,7 @@ scheduler:
|
|
|
384
384
|
green-frontend:
|
|
385
385
|
category: green
|
|
386
386
|
profile: pipeline-code-writer
|
|
387
|
-
models: [
|
|
387
|
+
models: [opencode-go/qwen3.7-max, kimi-for-coding/k2p6, opencode-go/deepseek-v4-pro]
|
|
388
388
|
acceptance-review:
|
|
389
389
|
category: acceptance
|
|
390
390
|
profile: pipeline-acceptance-reviewer
|
package/package.json
CHANGED
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"prepack": "bun run build:cli"
|
|
112
112
|
},
|
|
113
113
|
"type": "module",
|
|
114
|
-
"version": "1.22.
|
|
114
|
+
"version": "1.22.4",
|
|
115
115
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
116
116
|
"main": "./dist/index.js",
|
|
117
117
|
"types": "./dist/index.d.ts",
|