wolfpack-mcp 1.0.13 → 1.0.14

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 +23 -15
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -48,7 +48,7 @@ const ListWorkItemsSchema = z.object({
48
48
  status: z.coerce
49
49
  .string()
50
50
  .optional()
51
- .describe('Filter by status. Board columns: "new", "doing", "review", "blocked", "completed". Use "pending" or "backlog" for backlog items. Use "all" to include completed/closed. Default excludes completed/closed.'),
51
+ .describe('Filter by status. Board columns: "new", "doing", "review", "ready", "blocked", "completed". Use "pending" or "backlog" for backlog items. Use "all" to include completed/closed. Default excludes completed/closed.'),
52
52
  assigned_to_id: z.coerce
53
53
  .string()
54
54
  .optional()
@@ -143,7 +143,7 @@ const CreateWorkItemSchema = z.object({
143
143
  status: z
144
144
  .string()
145
145
  .optional()
146
- .describe('Initial status: "pending" (backlog), "new" (to do), "doing", "review", "blocked", "completed". Defaults to "new".'),
146
+ .describe('Initial status: "pending" (backlog), "new" (to do), "doing", "review", "ready", "blocked", "completed". Defaults to "new".'),
147
147
  priority: z.number().optional().describe('Priority level (0-4, higher is more important)'),
148
148
  leading_user_id: z.string().optional().describe('User ID to assign as leading user'),
149
149
  category_id: z.string().optional().describe('Category ID to organize the work item'),
@@ -256,7 +256,7 @@ class WolfpackMCPServer {
256
256
  name: 'list_work_items',
257
257
  description: 'List work items (tasks/tickets). By default lists ALL items in the team, sorted by most recently updated. ' +
258
258
  'Use assigned_to_id="me" to filter to only your assigned items. ' +
259
- 'TERMINOLOGY: The board has columns: "new" (to do), "doing" (in progress), "review" (pending review), "blocked", "completed" (done). ' +
259
+ 'TERMINOLOGY: The board has columns: "new" (to do), "doing" (in progress), "review" (pending review), "ready" (code done, awaiting deployment), "blocked", "completed" (deployed). ' +
260
260
  'The "backlog" or "pending" status represents items not yet on the board. ' +
261
261
  'By default, completed/closed items are excluded - use status="all" to include them. ' +
262
262
  'Use when user asks about "the board", "work items", "tasks", "my work" (with assigned_to_id="me"), or "backlog".',
@@ -269,7 +269,7 @@ class WolfpackMCPServer {
269
269
  },
270
270
  status: {
271
271
  type: 'string',
272
- description: 'Filter by status. Board columns: "new", "doing", "review", "blocked", "completed". ' +
272
+ description: 'Filter by status. Board columns: "new", "doing", "review", "ready", "blocked", "completed". ' +
273
273
  'Use "pending" or "backlog" for backlog items not on board. ' +
274
274
  'Use "all" to include completed/closed items. Default excludes completed/closed.',
275
275
  },
@@ -308,7 +308,10 @@ class WolfpackMCPServer {
308
308
  },
309
309
  {
310
310
  name: 'get_work_item',
311
- description: 'Get a specific work item/task by ID or reference number. Returns full details including description (markdown notes). Call this before updating to see current content.',
311
+ description: 'Get a specific work item/task by ID or reference number. Returns full details including description (markdown notes). ' +
312
+ 'Call this before updating to see current content. ' +
313
+ 'WORKFLOW: When asked to work on an item, check its status and follow the required state transitions ' +
314
+ '(pending→pull first, new→doing, blocked/ready/completed/closed→new→doing, then review when done).',
312
315
  inputSchema: {
313
316
  type: 'object',
314
317
  properties: {
@@ -342,9 +345,14 @@ class WolfpackMCPServer {
342
345
  {
343
346
  name: 'update_work_item_status',
344
347
  description: 'Change work item status. ' +
345
- 'Board columns: "new" (to do), "doing" (in progress), "review" (pending review), "blocked", "completed" (done). ' +
346
- '"pending" is for backlog items not yet on the board. ' +
347
- 'WORKFLOW: Move to "doing" when starting work, "review" when ready for review, "completed" when done.',
348
+ 'REQUIRED WORKFLOW when working on items: ' +
349
+ '1) For "new" items: move to "doing" when starting work. ' +
350
+ '2) For "pending" (backlog) items: use pull_work_item first (claims and sets to "new"), then move to "doing". ' +
351
+ '3) For items in "blocked", "ready", "completed", or "closed": move to "new" first, then to "doing". ' +
352
+ '4) When work is complete: move to "review" (NOT "completed" - that is only for deployed work). ' +
353
+ '5) If work cannot be done: move to "blocked" and add a comment explaining why. ' +
354
+ 'Statuses: "pending" (backlog), "new" (to do), "doing" (in progress), "review" (work done, pending review), ' +
355
+ '"ready" (reviewed, awaiting deployment), "blocked", "completed" (deployed).',
348
356
  inputSchema: {
349
357
  type: 'object',
350
358
  properties: {
@@ -354,7 +362,7 @@ class WolfpackMCPServer {
354
362
  },
355
363
  status: {
356
364
  type: 'string',
357
- description: 'New status: "pending" (backlog), "new" (to do), "doing" (in progress), "review", "blocked", "completed" (done)',
365
+ description: 'New status: "pending" (backlog), "new" (to do), "doing" (in progress), "review" (work done), "ready" (awaiting deployment), "blocked", "completed" (deployed)',
358
366
  },
359
367
  },
360
368
  required: ['work_item_id', 'status'],
@@ -382,10 +390,9 @@ class WolfpackMCPServer {
382
390
  {
383
391
  name: 'pull_work_item',
384
392
  description: 'Pull a specific work item from the backlog to the board. ' +
385
- 'WORKFLOW: 1) Use list_work_items with status="pending" to browse backlog items, ' +
386
- '2) Evaluate and select an item, ' +
387
- '3) Use this tool to pull it onto the board. ' +
388
- 'This changes the status from "pending" to "new" and assigns the item. ' +
393
+ 'REQUIRED: Use this when starting work on a "pending" (backlog) item. ' +
394
+ 'This claims the item (assigns to you) and sets status to "new". ' +
395
+ 'After pulling, move to "doing" to indicate active work, then "review" when done. ' +
389
396
  'If no assignee is specified, assigns to the API key owner.',
390
397
  inputSchema: {
391
398
  type: 'object',
@@ -505,7 +512,7 @@ class WolfpackMCPServer {
505
512
  },
506
513
  status: {
507
514
  type: 'string',
508
- description: 'Initial status: "pending" (backlog), "new" (to do), "doing", "review", "blocked", "completed". Defaults to "new".',
515
+ description: 'Initial status: "pending" (backlog), "new" (to do), "doing", "review", "ready", "blocked", "completed". Defaults to "new".',
509
516
  },
510
517
  priority: {
511
518
  type: 'number',
@@ -692,7 +699,8 @@ class WolfpackMCPServer {
692
699
  // Comment tools
693
700
  {
694
701
  name: 'create_work_item_comment',
695
- description: 'Add a comment to a work item. Requires mcp:comments:create permission.',
702
+ description: 'Add a comment to a work item. Requires mcp:comments:create permission. ' +
703
+ 'REQUIRED: When moving an item to "blocked" status, add a comment explaining why the work cannot be done.',
696
704
  inputSchema: {
697
705
  type: 'object',
698
706
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",