@protonspy/csdd-mcp 0.2.8 → 0.2.10

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.
@@ -14,6 +14,7 @@ export const agentTools = [
14
14
  .optional()
15
15
  .describe("Tool names to grant (e.g. Read, Grep, Bash, Edit). Repeatable."),
16
16
  model: z.string().optional().describe("Model override (e.g. sonnet, opus, haiku)."),
17
+ effort: z.string().optional().describe("Effort level: low|medium|high|xhigh|max. Omit to inherit the session config."),
17
18
  title: z.string().optional().describe("Document title (defaults to Title Case of name)."),
18
19
  force: forceField,
19
20
  root: rootField,
@@ -25,6 +26,7 @@ export const agentTools = [
25
26
  ...flag("--description", p.description),
26
27
  ...multi("--tools", p.tools),
27
28
  ...flag("--model", p.model),
29
+ ...flag("--effort", p.effort),
28
30
  ...flag("--title", p.title),
29
31
  ...bool("--force", p.force),
30
32
  ...rootArg(p),
@@ -23,6 +23,8 @@ export const skillTools = [
23
23
  name: skillName,
24
24
  description: z.string().describe("One-sentence activation trigger for the skill."),
25
25
  title: z.string().optional().describe("Document title (defaults to Title Case of name)."),
26
+ model: z.string().optional().describe("Model override (e.g. sonnet, opus, haiku). Omit to inherit the session config."),
27
+ effort: z.string().optional().describe("Effort level: low|medium|high|xhigh|max. Omit to inherit the session config."),
26
28
  root: rootField,
27
29
  },
28
30
  toArgs: (p) => [
@@ -30,6 +32,8 @@ export const skillTools = [
30
32
  "create",
31
33
  p.name,
32
34
  ...flag("--description", p.description),
35
+ ...flag("--model", p.model),
36
+ ...flag("--effort", p.effort),
33
37
  ...flag("--title", p.title),
34
38
  ...rootArg(p),
35
39
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@protonspy/csdd-mcp",
3
- "version": "0.2.8",
3
+ "version": "0.2.10",
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.8",
40
- "@protonspy/csdd-linux-arm64": "0.2.8",
41
- "@protonspy/csdd-darwin-x64": "0.2.8",
42
- "@protonspy/csdd-darwin-arm64": "0.2.8",
43
- "@protonspy/csdd-win32-x64": "0.2.8"
39
+ "@protonspy/csdd-linux-x64": "0.2.10",
40
+ "@protonspy/csdd-linux-arm64": "0.2.10",
41
+ "@protonspy/csdd-darwin-x64": "0.2.10",
42
+ "@protonspy/csdd-darwin-arm64": "0.2.10",
43
+ "@protonspy/csdd-win32-x64": "0.2.10"
44
44
  }
45
45
  }