@softspark/jira-mcp 1.4.3 → 1.5.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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ Versioning follows [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ---
9
9
 
10
+ ## v1.5.0 -- Bulk Template Management & Monthly Tasks Tool (2026-05-04)
11
+
12
+ ### Added
13
+ - **`template add bulk` CLI command** -- new third template kind alongside `comment` and `task`. Validates the source JSON against `BulkConfigSchema` and installs it under `~/.softspark/jira-mcp/templates/tasks/<KEY>/monthly_admin.json`. `template list/show/remove` also support the `bulk` kind, keyed by project. Prunes the empty project subdirectory on remove.
14
+ - **`create_monthly_tasks` MCP tool** -- exposes the existing `create-monthly` CLI handler over the protocol. Inputs: `{ execute?: boolean, project?: string }`. Returns a structured result with per-project status (success/error), summary counts, and the resolved config path. Lets MCP clients run monthly bulk task creation without dropping to the CLI.
15
+
10
16
  ## v1.4.3 -- JQL Escape & Cache Recovery (2026-04-18)
11
17
 
12
18
  ### Fixed
package/README.md CHANGED
@@ -9,11 +9,10 @@
9
9
 
10
10
  ---
11
11
 
12
- ## What's New in v1.4.3
12
+ ## What's New in v1.5.0
13
13
 
14
- - **`sync_tasks` no longer breaks on hyphenated usernames** -- JQL escape was producing invalid `\-` sequences inside quoted strings. Default sync (without explicit `jql`) now works for every account.
15
- - **`update_task_status` and `reassign_task` recover from cache miss** -- after a successful Jira mutation, the cache is refreshed from the source of truth instead of failing with `TASK_NOT_FOUND`. Solves the "must re-sync after `create_task` or `log_task_time`" footgun.
16
- - **Provenance attestation** -- releases ship with SLSA v1 attestation via `npm publish --provenance` (introduced in v1.4.2).
14
+ - **`template add bulk` CLI command** -- install per-project `monthly_admin.json` configs into `~/.softspark/jira-mcp/templates/tasks/<KEY>/`. Validated against `BulkConfigSchema`. `template list/show/remove` now also handle the `bulk` kind, keyed by project.
15
+ - **`create_monthly_tasks` MCP tool** -- run all monthly bulk task configs over the protocol with `{ execute?, project? }`. Returns per-project status, summary counts, and resolved config paths. No more dropping to the CLI for monthly admin runs.
17
16
 
18
17
  See [CHANGELOG.md](CHANGELOG.md) for full details.
19
18
 
@@ -183,7 +182,7 @@ Or copy `rules/jira-mcp.md` to your ai-toolkit rules directory manually. The rul
183
182
  - **Sync before read** -- cache may be stale
184
183
  - **Status transitions** -- check valid transitions before changing status
185
184
  - **Time format** -- `"2h 30m"`, never days
186
- - **All 18 MCP tools** and **20 CLI commands** reference
185
+ - **All 19 MCP tools** and **20 CLI commands** reference
187
186
 
188
187
  ### AI Toolkit Hooks
189
188
 
@@ -230,7 +229,7 @@ src/
230
229
  errors/ Typed error hierarchy
231
230
  operations/ Business logic (status, comments, time tracking)
232
231
  templates/ File-backed comment/task template loading and registries
233
- tools/ MCP tool handlers (18 tools, one file per tool)
232
+ tools/ MCP tool handlers (19 tools, one file per tool)
234
233
  types/ Shared TypeScript types
235
234
  server.ts MCP server setup and tool registration
236
235
  cli.ts CLI entry point
@@ -252,18 +251,18 @@ src/
252
251
 
253
252
  **Per-instance credentials** -- different API tokens per Jira instance URL. Single-credential format still works (backward compatible). See [Configuration](kb/reference/configuration.md).
254
253
 
255
- **Supply chain protection** -- `ignore-scripts=true`, no axios, no dynamic requires. Self-contained 520KB bundle, 1 runtime dep (commander).
254
+ **Supply chain protection** -- `ignore-scripts=true`, no axios, no dynamic requires. Self-contained 535KB bundle, 1 runtime dep (commander).
256
255
 
257
256
  **Typed error hierarchy** -- 20 error classes with machine-readable codes. Every tool returns structured `{ success, error, code }` responses. No stack traces leak to MCP clients.
258
257
 
259
- **Strict TypeScript** -- `strict: true`, no `any`, `readonly` interfaces, Zod validation at all boundaries, 573 tests across 59 test files. Self-contained 525KB package.
258
+ **Strict TypeScript** -- `strict: true`, no `any`, `readonly` interfaces, Zod validation at all boundaries, 587 tests across 60 test files. Self-contained 535KB package.
260
259
 
261
260
  ## Documentation
262
261
 
263
262
  | Document | Description |
264
263
  |----------|-------------|
265
264
  | [Architecture](kb/reference/architecture.md) | System design and module overview |
266
- | [API Reference](kb/reference/api.md) | All 18 MCP tools with schemas |
265
+ | [API Reference](kb/reference/api.md) | All 19 MCP tools with schemas |
267
266
  | [Configuration](kb/reference/configuration.md) | Config files, env vars, multi-instance |
268
267
  | [ADF Format](kb/reference/adf.md) | Atlassian Document Format conversion |
269
268
  | [Caching](kb/reference/caching.md) | Task, workflow, and user caching |