@protonspy/csdd-mcp 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -114,7 +114,7 @@ Conventions:
114
114
 
115
115
  > **Scope:** this server exposes only the iterative development-flow resources
116
116
  > (steering · spec · skill · agent). **Workspace setup and config management are
117
- > deliberately not tools** — `csdd init`, `csdd mcp …`, and `csdd export …` are
117
+ > deliberately not tools** — `csdd init`, `csdd update`, `csdd mcp …`, and `csdd export …` are
118
118
  > one-time operations a human runs from the CLI, not part of the loop an agent
119
119
  > drives. (In fact, `csdd init` is what registers *this* server.)
120
120
 
@@ -161,7 +161,7 @@ matches the context).
161
161
 
162
162
  | Tool | Parameters | What it does |
163
163
  |------|------------|--------------|
164
- | `csdd_skill_create` | `name`, `description`, `title?`, `root?` | Create `.claude/skills/<name>/` with `SKILL.md` (+ `references/`, `assets/`, `scripts/`). `description` is the one-line activation trigger. |
164
+ | `csdd_skill_create` | `name`, `description`, `title?`, `root?` | Create `.claude/skills/<name>/` with `SKILL.md` (+ `references/`, `assets/`, `scripts/`). `description` is the one-line activation trigger. The tool scaffolds the file — author the body by editing `SKILL.md` directly. |
165
165
  | `csdd_skill_list` | `root?` | List skills with their descriptions. |
166
166
  | `csdd_skill_show` | `name`, `root?` | List a skill's files and print `SKILL.md`. |
167
167
  | `csdd_skill_add_reference` | `skill`, `file`, `root?` | Add a reference file under `references/`. Path traversal is rejected. |
@@ -174,13 +174,13 @@ matches the context).
174
174
 
175
175
  | Tool | Parameters | What it does |
176
176
  |------|------------|--------------|
177
- | `csdd_agent_create` | `name`, `description`, `tools?[]`, `model?`, `title?`, `force?`, `root?` | Create a least-privilege sub-agent (default tools: `Read`, `Grep`). `description` tells the orchestrator when to pick it. `model` ∈ `sonnet · opus · haiku`. |
177
+ | `csdd_agent_create` | `name`, `description`, `tools?[]`, `model?`, `title?`, `force?`, `root?` | Create a least-privilege sub-agent (default tools: `Read`, `Grep`). `description` tells the orchestrator when to pick it. Scaffolds the file; fill in the body by editing the generated `.md`. `model` ∈ `sonnet · opus · haiku`. |
178
178
  | `csdd_agent_list` | `root?` | List agents with their tools and descriptions. |
179
179
  | `csdd_agent_show` | `name`, `root?` | Print an agent file. |
180
180
  | `csdd_agent_delete` | `name`, `force?`, `root?` | Delete `.claude/agents/<name>.md` (`force` required). |
181
181
 
182
182
  > **Not here:** managing the `.mcp.json` servers themselves (`csdd mcp add/list/
183
- > remove/enable/disable/validate`) stays on the CLI — same for `csdd init` and
183
+ > remove/enable/disable/validate`) stays on the CLI — same for `csdd init`, `csdd update`, and
184
184
  > `csdd export`. Keeping setup off the tool surface is intentional (see Scope).
185
185
 
186
186
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@protonspy/csdd-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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.1.3",
40
- "@protonspy/csdd-linux-arm64": "0.1.3",
41
- "@protonspy/csdd-darwin-x64": "0.1.3",
42
- "@protonspy/csdd-darwin-arm64": "0.1.3",
43
- "@protonspy/csdd-win32-x64": "0.1.3"
39
+ "@protonspy/csdd-linux-x64": "0.1.4",
40
+ "@protonspy/csdd-linux-arm64": "0.1.4",
41
+ "@protonspy/csdd-darwin-x64": "0.1.4",
42
+ "@protonspy/csdd-darwin-arm64": "0.1.4",
43
+ "@protonspy/csdd-win32-x64": "0.1.4"
44
44
  }
45
45
  }