@task-boards/mcp-server 0.17.0 → 0.22.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/README.md +28 -0
- package/build/cli.js +505 -19
- package/build/cli.js.map +4 -4
- package/package.json +4 -3
- package/skills/task-boards-agent-runs/SKILL.md +58 -0
- package/skills/task-boards-attention/SKILL.md +60 -0
- package/skills/task-boards-git-sync/SKILL.md +55 -0
- package/skills/task-boards-orchestrator/SKILL.md +69 -0
- package/skills/task-boards-setup/SKILL.md +69 -0
- package/skills/task-boards-work-items/SKILL.md +55 -0
package/README.md
CHANGED
|
@@ -15,6 +15,34 @@ npm install -g @task-boards/mcp-server
|
|
|
15
15
|
task-boards-mcp
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
## Bundled Cursor skills
|
|
19
|
+
|
|
20
|
+
Six English Agent Skills ship inside the npm package for orchestrator workflows. Install them into Cursor's skills directory — no API token required.
|
|
21
|
+
|
|
22
|
+
| Command | Target |
|
|
23
|
+
| ----------------------------------------- | --------------------------------- |
|
|
24
|
+
| `task-boards-mcp skills install` | `{workspaceRoot}/.cursor/skills/` |
|
|
25
|
+
| `task-boards-mcp skills install --global` | `~/.cursor/skills/` |
|
|
26
|
+
|
|
27
|
+
From the monorepo after build:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
node packages/mcp-server/build/cli.js skills install
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Skill catalog
|
|
34
|
+
|
|
35
|
+
| Skill | Focus |
|
|
36
|
+
| -------------------------- | ----------------------------------------------------------- |
|
|
37
|
+
| `task-boards-setup` | MCP config, env vars, `WORKSPACE_ROOT` |
|
|
38
|
+
| `task-boards-orchestrator` | Poll loop, `run_orchestrator_once`, timeout, single-sleeper |
|
|
39
|
+
| `task-boards-work-items` | WI CRUD, move, estimation, SERVICE assignee |
|
|
40
|
+
| `task-boards-agent-runs` | ack → complete, AGENTIC_SDLC outcomes |
|
|
41
|
+
| `task-boards-attention` | IDE attention, 7 categories, `in-awaiting` distinction |
|
|
42
|
+
| `task-boards-git-sync` | `sync_git_releases`, `work-item:{uuid}`, subagents |
|
|
43
|
+
|
|
44
|
+
Re-run `skills install` after upgrading `@task-boards/mcp-server` to refresh skill content. Install is idempotent — existing skills are overwritten.
|
|
45
|
+
|
|
18
46
|
## Environment variables
|
|
19
47
|
|
|
20
48
|
| Variable | Required | Default | Description |
|