@oisincoveney/pipeline 1.27.1 → 1.27.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.
@@ -86,7 +86,7 @@ This computes execution batches from your declared dependencies. Read it like a
86
86
 
87
87
  ### 7. Dispatch
88
88
 
89
- **If the local `oisin-pipeline` (`pipe`) is available** (`~/dev/oisin-pipeline`, or `pipe` / `oisin-pipeline` on PATH), hand the epic to it: `pipe epic <id>` reads the epic and its sub-tickets through the Backlog MCP, routes each into a track, fans them into isolated git worktrees running the implement→verify workflow, then drain-merges and reviews. Confirm the epic and its sub-tickets exist in backlog first — the router reads them, it doesn't invent them.
89
+ **If the package-owned pipeline CLI is available** (`oisin-pipeline` on PATH), run the current execute flow from the reviewed task description: `oisin-pipeline run --entrypoint execute <task description>`. The CLI generates and executes the schedule artifact directly through the package-owned graph. Confirm the epic and its sub-tickets exist in backlog first — the pipeline reads them, it doesn't invent them.
90
90
 
91
91
  **Otherwise**, spawn the agents yourself, one parallel batch from `backlog sequence` at a time: everything in a batch concurrently, barrier, next batch.
92
92
 
@@ -112,8 +112,8 @@ A single-file change with obvious scope doesn't need an epic — just do it (wit
112
112
 
113
113
  ## The short version
114
114
 
115
- Diagnose (if it's a bug) → understand the *real* code, deciding library-vs-hand-roll and CLI/generator-vs-manual with [[library-first-development]] → [[grill]] → fit the [[improve|architecture]] → run [[quality-gate]] on the planned shape → cut into tickets that are each *one* parallel-spawnable, acceptance-complete, dependency-declared unit → record in backlog and prove parallelism with `backlog sequence list --plain` → dispatch with `pipe epic` → build each with [[test]]. The plan is done when the fleet could drain it without you.
115
+ Diagnose (if it's a bug) → understand the *real* code, deciding library-vs-hand-roll and CLI/generator-vs-manual with [[library-first-development]] → [[grill]] → fit the [[improve|architecture]] → run [[quality-gate]] on the planned shape → cut into tickets that are each *one* parallel-spawnable, acceptance-complete, dependency-declared unit → record in backlog and prove parallelism with `backlog sequence list --plain` → dispatch with `oisin-pipeline run --entrypoint execute <task description>` → build each with [[test]]. The plan is done when the fleet could drain it without you.
116
116
 
117
117
  ---
118
118
 
119
- *Original work. Orchestrates [[diagnose]], [[grill]], [[improve]], and [[test]] (adapted from [mattpocock/skills](https://github.com/mattpocock/skills), MIT) with [[research]], [[library-first-development]], [[spec]], [[fix]], [[quality-gate]], and [[verify]], with context, documentation, and parallel-dispatch guidance folded in from local oisin-pipeline material. Wires to [Backlog.md](https://backlog.md) and the local `oisin-pipeline` (`pipe`) when present, and degrades to a plain plan document when not.*
119
+ *Original work. Orchestrates [[diagnose]], [[grill]], [[improve]], and [[test]] (adapted from [mattpocock/skills](https://github.com/mattpocock/skills), MIT) with [[research]], [[library-first-development]], [[spec]], [[fix]], [[quality-gate]], and [[verify]], with context, documentation, and parallel-dispatch guidance folded in from package-owned oisin-pipeline material. Wires to [Backlog.md](https://backlog.md) and `oisin-pipeline` when present, and degrades to a plain plan document when not.*
package/dist/config.d.ts CHANGED
@@ -362,8 +362,8 @@ declare const configSchema: z.ZodObject<{
362
362
  policy: z.ZodOptional<z.ZodObject<{
363
363
  commands: z.ZodOptional<z.ZodEnum<{
364
364
  allow: "allow";
365
- "trusted-only": "trusted-only";
366
365
  deny: "deny";
366
+ "trusted-only": "trusted-only";
367
367
  }>>;
368
368
  modules: z.ZodOptional<z.ZodEnum<{
369
369
  allow: "allow";
@@ -387,8 +387,8 @@ declare const configSchema: z.ZodObject<{
387
387
  }, z.core.$strict>>>;
388
388
  default_profile: z.ZodOptional<z.ZodString>;
389
389
  mode: z.ZodEnum<{
390
- hosted: "hosted";
391
390
  local: "local";
391
+ hosted: "hosted";
392
392
  }>;
393
393
  provider: z.ZodLiteral<"toolhive">;
394
394
  authorization_env: z.ZodDefault<z.ZodString>;
@@ -431,10 +431,10 @@ declare const configSchema: z.ZodObject<{
431
431
  }, z.core.$strict>>;
432
432
  output: z.ZodOptional<z.ZodObject<{
433
433
  format: z.ZodEnum<{
434
+ json_schema: "json_schema";
434
435
  text: "text";
435
436
  json: "json";
436
437
  jsonl: "jsonl";
437
- json_schema: "json_schema";
438
438
  }>;
439
439
  repair: z.ZodOptional<z.ZodObject<{
440
440
  enabled: z.ZodOptional<z.ZodBoolean>;
@@ -452,6 +452,7 @@ declare const configSchema: z.ZodObject<{
452
452
  skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
453
453
  timeout_ms: z.ZodOptional<z.ZodNumber>;
454
454
  tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
455
+ task: "task";
455
456
  read: "read";
456
457
  list: "list";
457
458
  grep: "grep";
@@ -459,7 +460,6 @@ declare const configSchema: z.ZodObject<{
459
460
  bash: "bash";
460
461
  edit: "edit";
461
462
  write: "write";
462
- task: "task";
463
463
  }>>>;
464
464
  }, z.core.$strict>>>;
465
465
  runner_command: z.ZodDefault<z.ZodObject<{
@@ -503,14 +503,15 @@ declare const configSchema: z.ZodObject<{
503
503
  disabled: "disabled";
504
504
  }>>>;
505
505
  output_formats: z.ZodOptional<z.ZodArray<z.ZodEnum<{
506
+ json_schema: "json_schema";
506
507
  text: "text";
507
508
  json: "json";
508
509
  jsonl: "jsonl";
509
- json_schema: "json_schema";
510
510
  }>>>;
511
511
  rules: z.ZodOptional<z.ZodBoolean>;
512
512
  skills: z.ZodOptional<z.ZodBoolean>;
513
513
  tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
514
+ task: "task";
514
515
  read: "read";
515
516
  list: "list";
516
517
  grep: "grep";
@@ -518,7 +519,6 @@ declare const configSchema: z.ZodObject<{
518
519
  bash: "bash";
519
520
  edit: "edit";
520
521
  write: "write";
521
- task: "task";
522
522
  }>>>;
523
523
  }, z.core.$strict>;
524
524
  command: z.ZodOptional<z.ZodString>;
package/dist/config.js CHANGED
@@ -70,7 +70,7 @@ const PACKAGE_DEFAULT_RUNNERS_YAML = `version: 1
70
70
  runners:
71
71
  opencode:
72
72
  type: opencode
73
- model: gpt-5.5
73
+ model: openai/gpt-5.5
74
74
  capabilities:
75
75
  native_subagents: true
76
76
  rules: true
@@ -344,11 +344,11 @@ scheduler:
344
344
  backlog-intake:
345
345
  category: intake
346
346
  profile: moka-researcher
347
- models: [zai-coding-plan/glm-5-turbo, gpt-5.5-fast]
347
+ models: [zai-coding-plan/glm-5-turbo, openai/gpt-5.5-fast]
348
348
  red-tests:
349
349
  category: red
350
350
  profile: moka-test-writer
351
- models: [gpt-5.5, zai-coding-plan/glm-5.1, kimi-for-coding/kimi-k2-thinking]
351
+ models: [openai/gpt-5.5, zai-coding-plan/glm-5.1, kimi-for-coding/kimi-k2-thinking]
352
352
  green-implementation:
353
353
  category: green
354
354
  profile: moka-code-writer
@@ -356,22 +356,22 @@ scheduler:
356
356
  verification:
357
357
  category: verification
358
358
  profile: moka-verifier
359
- models: [gpt-5.5, zai-coding-plan/glm-5.1]
359
+ models: [openai/gpt-5.5, zai-coding-plan/glm-5.1]
360
360
  execute:
361
361
  required_categories: [intake, research, red, green, mechanical, acceptance, verification, learn]
362
362
  nodes:
363
363
  backlog-intake:
364
364
  category: intake
365
365
  profile: moka-researcher
366
- models: [zai-coding-plan/glm-5-turbo, gpt-5.5-fast]
366
+ models: [zai-coding-plan/glm-5-turbo, openai/gpt-5.5-fast]
367
367
  research:
368
368
  category: research
369
369
  profile: moka-researcher
370
- models: [gpt-5.5-fast, zai-coding-plan/glm-5.1, kimi-for-coding/k2p6]
370
+ models: [openai/gpt-5.5-fast, zai-coding-plan/glm-5.1, kimi-for-coding/k2p6]
371
371
  red-tests:
372
372
  category: red
373
373
  profile: moka-test-writer
374
- models: [gpt-5.5, zai-coding-plan/glm-5.1, kimi-for-coding/kimi-k2-thinking]
374
+ models: [openai/gpt-5.5, zai-coding-plan/glm-5.1, kimi-for-coding/kimi-k2-thinking]
375
375
  green-backend:
376
376
  category: green
377
377
  profile: moka-code-writer
@@ -383,15 +383,15 @@ scheduler:
383
383
  acceptance-review:
384
384
  category: acceptance
385
385
  profile: moka-acceptance-reviewer
386
- models: [gpt-5.5, zai-coding-plan/glm-5.1]
386
+ models: [openai/gpt-5.5, zai-coding-plan/glm-5.1]
387
387
  verification:
388
388
  category: verification
389
389
  profile: moka-verifier
390
- models: [gpt-5.5, zai-coding-plan/glm-5.1]
390
+ models: [openai/gpt-5.5, zai-coding-plan/glm-5.1]
391
391
  learn:
392
392
  category: learn
393
393
  profile: moka-learner
394
- models: [zai-coding-plan/glm-5-turbo, gpt-5.5-fast]
394
+ models: [zai-coding-plan/glm-5-turbo, openai/gpt-5.5-fast]
395
395
  schedules:
396
396
  quick-schedule:
397
397
  baseline: quick
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/runner.js CHANGED
@@ -27,7 +27,7 @@ function ensureOpencodeGitExcludes(worktreePath) {
27
27
  appendFileSync(excludePath, `${existing.endsWith("\n") ? "" : "\n"}# oisin-pipeline opencode excludes\n${missing.join("\n")}\n`);
28
28
  }
29
29
  function optionalModelArgs(runner, actor, selectedModel) {
30
- const model = selectedModel ?? actor?.model ?? runner?.model ?? process.env.PIPELINE_OPENCODE_MODEL ?? "gpt-5.5";
30
+ const model = selectedModel ?? actor?.model ?? runner?.model ?? process.env.PIPELINE_OPENCODE_MODEL ?? "openai/gpt-5.5";
31
31
  return model ? ["--model", model] : [];
32
32
  }
33
33
  /**
@@ -22,7 +22,7 @@ runners:
22
22
  opencode:
23
23
  type: opencode
24
24
  command: opencode
25
- model: gpt-5.5
25
+ model: openai/gpt-5.5
26
26
  capabilities:
27
27
  native_subagents: true
28
28
  rules: true
package/package.json CHANGED
@@ -120,7 +120,7 @@
120
120
  "prepack": "bun run build:cli"
121
121
  },
122
122
  "type": "module",
123
- "version": "1.27.1",
123
+ "version": "1.27.3",
124
124
  "description": "Config-driven multi-agent pipeline runner for repository work",
125
125
  "main": "./dist/index.js",
126
126
  "types": "./dist/index.d.ts",