@oisincoveney/pipeline 1.29.1 → 1.29.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.
@@ -66,38 +66,55 @@ mcp_gateway:
66
66
  skills:
67
67
  execute:
68
68
  path: .agents/skills/execute/SKILL.md
69
+ source_root: package
69
70
  inspect:
70
71
  path: .agents/skills/inspect/SKILL.md
72
+ source_root: package
71
73
  quick:
72
74
  path: .agents/skills/quick/SKILL.md
75
+ source_root: package
73
76
  critique:
74
77
  path: .agents/skills/critique/SKILL.md
78
+ source_root: package
75
79
  doubt:
76
80
  path: .agents/skills/doubt/SKILL.md
81
+ source_root: package
77
82
  fix:
78
83
  path: .agents/skills/fix/SKILL.md
84
+ source_root: package
79
85
  library-first-development:
80
86
  path: .agents/skills/library-first-development/SKILL.md
87
+ source_root: package
81
88
  migrate:
82
89
  path: .agents/skills/migrate/SKILL.md
90
+ source_root: package
83
91
  optimize:
84
92
  path: .agents/skills/optimize/SKILL.md
93
+ source_root: package
85
94
  research:
86
95
  path: .agents/skills/research/SKILL.md
96
+ source_root: package
87
97
  schedule-graph-shaping:
88
98
  path: .agents/skills/schedule-graph-shaping/SKILL.md
99
+ source_root: package
89
100
  scope:
90
101
  path: .agents/skills/scope/SKILL.md
102
+ source_root: package
91
103
  secure:
92
104
  path: .agents/skills/secure/SKILL.md
105
+ source_root: package
93
106
  spec:
94
107
  path: .agents/skills/spec/SKILL.md
108
+ source_root: package
95
109
  test:
96
110
  path: .agents/skills/test/SKILL.md
111
+ source_root: package
97
112
  trace:
98
113
  path: .agents/skills/trace/SKILL.md
114
+ source_root: package
99
115
  verify:
100
116
  path: .agents/skills/verify/SKILL.md
117
+ source_root: package
101
118
  profiles:
102
119
  moka-orchestrator:
103
120
  runner: opencode
@@ -310,7 +310,6 @@ declare const configSchema: z.ZodObject<{
310
310
  skills: z.ZodOptional<z.ZodArray<z.ZodString>>;
311
311
  timeout_ms: z.ZodOptional<z.ZodNumber>;
312
312
  tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
313
- task: "task";
314
313
  read: "read";
315
314
  list: "list";
316
315
  grep: "grep";
@@ -318,6 +317,7 @@ declare const configSchema: z.ZodObject<{
318
317
  bash: "bash";
319
318
  edit: "edit";
320
319
  write: "write";
320
+ task: "task";
321
321
  }>>>;
322
322
  }, z.core.$strict>>>;
323
323
  runner_command: z.ZodDefault<z.ZodObject<{
@@ -369,7 +369,6 @@ declare const configSchema: z.ZodObject<{
369
369
  rules: z.ZodOptional<z.ZodBoolean>;
370
370
  skills: z.ZodOptional<z.ZodBoolean>;
371
371
  tools: z.ZodOptional<z.ZodArray<z.ZodEnum<{
372
- task: "task";
373
372
  read: "read";
374
373
  list: "list";
375
374
  grep: "grep";
@@ -377,6 +376,7 @@ declare const configSchema: z.ZodObject<{
377
376
  bash: "bash";
378
377
  edit: "edit";
379
378
  write: "write";
379
+ task: "task";
380
380
  }>>>;
381
381
  }, z.core.$strict>;
382
382
  command: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -123,7 +123,7 @@
123
123
  "prepack": "bun run build:cli"
124
124
  },
125
125
  "type": "module",
126
- "version": "1.29.1",
126
+ "version": "1.29.3",
127
127
  "description": "Config-driven multi-agent pipeline runner for repository work",
128
128
  "main": "./dist/index.js",
129
129
  "types": "./dist/index.d.ts",