@oisincoveney/pipeline 2.9.0 → 2.10.0
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/defaults/opencode-ecosystem.yaml +3 -3
- package/defaults/profiles.yaml +3 -0
- package/dist/config/schemas.d.ts +1 -1
- package/dist/hooks.d.ts +1 -1
- package/dist/moka-submit.d.ts +1 -1
- package/dist/runner-command-contract.d.ts +2 -2
- package/dist/runner-event-schema.d.ts +2 -2
- package/docs/mcp-gateway.md +10 -9
- package/package.json +1 -1
|
@@ -180,9 +180,9 @@ mcp_backends:
|
|
|
180
180
|
required: true
|
|
181
181
|
credentials: [GITHUB_TOKEN]
|
|
182
182
|
role: repository, PR, issue, and release workflow access
|
|
183
|
-
- id: playwright
|
|
184
|
-
name: Playwright
|
|
185
|
-
locality:
|
|
183
|
+
- id: playwright
|
|
184
|
+
name: Playwright
|
|
185
|
+
locality: shared-remote
|
|
186
186
|
required: true
|
|
187
187
|
credentials: []
|
|
188
188
|
role: browser automation and frontend verification
|
package/defaults/profiles.yaml
CHANGED
package/dist/config/schemas.d.ts
CHANGED
|
@@ -481,8 +481,8 @@ declare const configSchema: z.ZodObject<{
|
|
|
481
481
|
schedules: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
482
482
|
description: z.ZodOptional<z.ZodString>;
|
|
483
483
|
baseline: z.ZodEnum<{
|
|
484
|
-
quick: "quick";
|
|
485
484
|
execute: "execute";
|
|
485
|
+
quick: "quick";
|
|
486
486
|
}>;
|
|
487
487
|
max_parallel_nodes: z.ZodOptional<z.ZodNumber>;
|
|
488
488
|
node_catalog: z.ZodOptional<z.ZodString>;
|
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/dist/moka-submit.d.ts
CHANGED
|
@@ -160,8 +160,8 @@ declare const mokaSubmitOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
160
160
|
}, z.core.$strict>>;
|
|
161
161
|
serviceAccountName: z.ZodOptional<z.ZodString>;
|
|
162
162
|
mode: z.ZodEnum<{
|
|
163
|
-
full: "full";
|
|
164
163
|
quick: "quick";
|
|
164
|
+
full: "full";
|
|
165
165
|
}>;
|
|
166
166
|
schedulePath: z.ZodOptional<z.ZodString>;
|
|
167
167
|
scheduleYaml: z.ZodOptional<z.ZodString>;
|
|
@@ -43,8 +43,8 @@ declare const runnerDeliverySchema: z.ZodObject<{
|
|
|
43
43
|
declare const mokaSubmissionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
44
44
|
kind: z.ZodLiteral<"graph">;
|
|
45
45
|
mode: z.ZodEnum<{
|
|
46
|
-
full: "full";
|
|
47
46
|
quick: "quick";
|
|
47
|
+
full: "full";
|
|
48
48
|
}>;
|
|
49
49
|
}, z.core.$strict>, z.ZodObject<{
|
|
50
50
|
argv: z.ZodArray<z.ZodString>;
|
|
@@ -104,8 +104,8 @@ declare const runnerCommandPayloadSchema: z.ZodObject<{
|
|
|
104
104
|
submission: z.ZodDefault<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
105
105
|
kind: z.ZodLiteral<"graph">;
|
|
106
106
|
mode: z.ZodEnum<{
|
|
107
|
-
full: "full";
|
|
108
107
|
quick: "quick";
|
|
108
|
+
full: "full";
|
|
109
109
|
}>;
|
|
110
110
|
}, z.core.$strict>, z.ZodObject<{
|
|
111
111
|
argv: z.ZodArray<z.ZodString>;
|
|
@@ -103,8 +103,8 @@ declare const runnerEventRecordSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
103
103
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
104
104
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
105
105
|
status: z.ZodEnum<{
|
|
106
|
-
fail: "fail";
|
|
107
106
|
pass: "pass";
|
|
107
|
+
fail: "fail";
|
|
108
108
|
skip: "skip";
|
|
109
109
|
}>;
|
|
110
110
|
summary: z.ZodOptional<z.ZodString>;
|
|
@@ -273,8 +273,8 @@ declare const runnerEventBatchSchema: z.ZodObject<{
|
|
|
273
273
|
nodeId: z.ZodOptional<z.ZodString>;
|
|
274
274
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
275
275
|
status: z.ZodEnum<{
|
|
276
|
-
fail: "fail";
|
|
277
276
|
pass: "pass";
|
|
277
|
+
fail: "fail";
|
|
278
278
|
skip: "skip";
|
|
279
279
|
}>;
|
|
280
280
|
summary: z.ZodOptional<z.ZodString>;
|
package/docs/mcp-gateway.md
CHANGED
|
@@ -110,20 +110,21 @@ Use an off-the-shelf aggregator when possible:
|
|
|
110
110
|
- ToolHive vMCP gateway: hosted or local aggregation behind a single MCP URL.
|
|
111
111
|
|
|
112
112
|
Use `moka mcp gateway reconcile` to render the complete aggregate backend list;
|
|
113
|
-
adding one backend must not replace the existing Context7, uidotsh,
|
|
114
|
-
Fallow, Serena, or Backlog declarations. Use
|
|
115
|
-
|
|
116
|
-
local ToolHive availability for local
|
|
117
|
-
`moka init` to install generated
|
|
118
|
-
|
|
119
|
-
|
|
113
|
+
adding one backend must not replace the existing Context7, uidotsh, Playwright,
|
|
114
|
+
Qdrant, Fallow, Serena, or Backlog declarations. Use
|
|
115
|
+
`moka mcp gateway doctor` to check required environment variables, gateway
|
|
116
|
+
health, required `tools/list` prefixes, local ToolHive availability for local
|
|
117
|
+
mode, and legacy direct MCP entries. Use `moka init` to install generated
|
|
118
|
+
OpenCode and Claude Code host surfaces with the singleton `pipeline-gateway`
|
|
119
|
+
remote entry. Use `moka install-commands --host all` to refresh generated host
|
|
120
|
+
files after package upgrades, and use
|
|
120
121
|
`moka mcp gateway configure-host` as an explicit migration or repair command
|
|
121
122
|
when existing host MCP config must be rewritten with a backup. The hosted gateway
|
|
122
123
|
requires `PIPELINE_MCP_GATEWAY_AUTHORIZATION` to be set in the OpenCode
|
|
123
124
|
environment.
|
|
124
125
|
|
|
125
126
|
The package-owned MCP inventory exposed through the ecosystem manifest includes
|
|
126
|
-
`pipeline-gateway`, Context7, uidotsh, Qdrant, Fallow, Serena,
|
|
127
|
-
|
|
127
|
+
`pipeline-gateway`, Context7, uidotsh, Playwright, Qdrant, Fallow, Serena,
|
|
128
|
+
Backlog, GitHub, and Neon. Repo-scoped backends must bind to
|
|
128
129
|
`PIPELINE_TARGET_PATH` or the current workspace path supplied by the gateway
|
|
129
130
|
configuration.
|
package/package.json
CHANGED
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"prepack": "bun run build:cli"
|
|
128
128
|
},
|
|
129
129
|
"type": "module",
|
|
130
|
-
"version": "2.
|
|
130
|
+
"version": "2.10.0",
|
|
131
131
|
"description": "Config-driven multi-agent pipeline runner for repository work",
|
|
132
132
|
"main": "./dist/index.js",
|
|
133
133
|
"types": "./dist/index.d.ts",
|