@protonspy/csdd-mcp 0.2.15 → 0.2.17
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/tools/spec.js +13 -2
- package/package.json +6 -6
package/dist/tools/spec.js
CHANGED
|
@@ -5,13 +5,24 @@ export const specTools = [
|
|
|
5
5
|
{
|
|
6
6
|
name: "csdd_spec_init",
|
|
7
7
|
title: "Spec init",
|
|
8
|
-
description: "Create specs/<feature>/spec.json (phase=
|
|
8
|
+
description: "Create specs/<feature>/spec.json (phase=initialized, no approvals, not ready for implementation).",
|
|
9
9
|
inputSchema: {
|
|
10
10
|
feature,
|
|
11
11
|
language: z.string().optional().describe("Spec language (default: en)."),
|
|
12
|
+
flow: z
|
|
13
|
+
.enum(["unit", "tdd", "tdd-e2e"])
|
|
14
|
+
.optional()
|
|
15
|
+
.describe("Development flow: unit (tests after code) | tdd (test-first, default) | tdd-e2e (TDD + e2e). Default: steering default, else tdd."),
|
|
12
16
|
root: rootField,
|
|
13
17
|
},
|
|
14
|
-
toArgs: (p) => [
|
|
18
|
+
toArgs: (p) => [
|
|
19
|
+
"spec",
|
|
20
|
+
"init",
|
|
21
|
+
p.feature,
|
|
22
|
+
...flag("--language", p.language),
|
|
23
|
+
...flag("--flow", p.flow),
|
|
24
|
+
...rootArg(p),
|
|
25
|
+
],
|
|
15
26
|
},
|
|
16
27
|
{
|
|
17
28
|
name: "csdd_spec_list",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@protonspy/csdd-mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.17",
|
|
4
4
|
"description": "MCP server exposing the csdd CLI over stdio (one tool per subcommand).",
|
|
5
5
|
"homepage": "https://github.com/protonspy/csdd/tree/main/mcp-server#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
"zod": "^3.23.8"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@protonspy/csdd-linux-x64": "0.2.
|
|
40
|
-
"@protonspy/csdd-linux-arm64": "0.2.
|
|
41
|
-
"@protonspy/csdd-darwin-x64": "0.2.
|
|
42
|
-
"@protonspy/csdd-darwin-arm64": "0.2.
|
|
43
|
-
"@protonspy/csdd-win32-x64": "0.2.
|
|
39
|
+
"@protonspy/csdd-linux-x64": "0.2.17",
|
|
40
|
+
"@protonspy/csdd-linux-arm64": "0.2.17",
|
|
41
|
+
"@protonspy/csdd-darwin-x64": "0.2.17",
|
|
42
|
+
"@protonspy/csdd-darwin-arm64": "0.2.17",
|
|
43
|
+
"@protonspy/csdd-win32-x64": "0.2.17"
|
|
44
44
|
}
|
|
45
45
|
}
|