@kitsy/coop-mcp 2.1.0 → 2.1.2

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/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -96,7 +96,7 @@ function renderIdTemplate(root, existingIds, input) {
96
96
  const track = sanitizeIdPart(input.track ?? "UNASSIGNED", "UNASSIGNED", 16);
97
97
  const status = sanitizeIdPart(input.status ?? "TODO", "TODO", 16);
98
98
  const type = sanitizeIdPart(input.type ?? "TASK", "TASK", 16);
99
- const template = config.id?.naming?.trim() || "<TYPE>-<USER>-<YYMMDD>-<RAND>";
99
+ const template = config.id?.naming?.trim() || "<TYPE>-<TITLE16>";
100
100
  const seqPadding = Number.isInteger(config.id?.seq_padding) ? Number(config.id?.seq_padding) : 0;
101
101
  const base = template.replace(/<([^>]+)>/g, (_, rawToken) => {
102
102
  const token = rawToken.toUpperCase();
@@ -479,7 +479,7 @@ function createCoopMcpServer(options = {}) {
479
479
  const server = new McpServer(
480
480
  {
481
481
  name: "@kitsy/coop-mcp",
482
- version: "2.1.0"
482
+ version: "2.1.2"
483
483
  },
484
484
  {
485
485
  capabilities: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitsy/coop-mcp",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@modelcontextprotocol/sdk": "^1.27.1",
22
22
  "zod": "^4.3.6",
23
- "@kitsy/coop-core": "2.1.0"
23
+ "@kitsy/coop-core": "2.1.2"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^24.12.0",