@oisincoveney/pipeline 1.29.1 → 1.29.2

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
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
- fail: "fail";
17
16
  pass: "pass";
17
+ fail: "fail";
18
18
  skip: "skip";
19
19
  }>;
20
20
  summary: 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.2",
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",