@codemcp/workflows-opencode 6.18.0 → 6.18.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.
- package/dist/index.js +1 -1
- package/package.json +9 -6
package/dist/index.js
CHANGED
|
@@ -28625,7 +28625,7 @@ function createStartDevelopmentTool(projectDir, getServerContext, setBufferedIns
|
|
|
28625
28625
|
return tool({
|
|
28626
28626
|
description: toolDescription,
|
|
28627
28627
|
args: {
|
|
28628
|
-
workflow: z9.
|
|
28628
|
+
workflow: z9.enum(buildWorkflowEnum(workflowNames)).describe(generateWorkflowDescription(availableWorkflows)),
|
|
28629
28629
|
require_reviews: z9.boolean().optional().describe("Require reviews before phase transitions")
|
|
28630
28630
|
},
|
|
28631
28631
|
execute: async (args2, context3) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemcp/workflows-opencode",
|
|
3
|
-
"version": "6.18.
|
|
3
|
+
"version": "6.18.2",
|
|
4
4
|
"description": "OpenCode plugin for structured development workflows",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -13,22 +13,25 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"effect": "4.0.0-beta.48"
|
|
17
|
-
"zod": "^4.1.8"
|
|
16
|
+
"effect": "4.0.0-beta.48"
|
|
18
17
|
},
|
|
19
18
|
"devDependencies": {
|
|
20
19
|
"rimraf": "^6.0.1",
|
|
21
20
|
"tsup": "^8.0.0",
|
|
22
21
|
"vitest": "4.0.18",
|
|
23
|
-
"@codemcp/workflows-
|
|
24
|
-
"@codemcp/workflows-
|
|
22
|
+
"@codemcp/workflows-core": "6.18.2",
|
|
23
|
+
"@codemcp/workflows-server": "6.18.2"
|
|
25
24
|
},
|
|
26
25
|
"peerDependencies": {
|
|
27
|
-
"@anthropic-ai/sdk": "*"
|
|
26
|
+
"@anthropic-ai/sdk": "*",
|
|
27
|
+
"zod": ">=4.1.8"
|
|
28
28
|
},
|
|
29
29
|
"peerDependenciesMeta": {
|
|
30
30
|
"@anthropic-ai/sdk": {
|
|
31
31
|
"optional": true
|
|
32
|
+
},
|
|
33
|
+
"zod": {
|
|
34
|
+
"optional": false
|
|
32
35
|
}
|
|
33
36
|
},
|
|
34
37
|
"keywords": [
|