wolfpack-mcp 1.0.13 → 1.0.15

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 +30 -16
  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,11 @@ 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). ' +
315
+ 'PLANNING: Check if the description contains a plan (markdown checklist). If not, APPEND one using update_work_progress - preserve all original description text and add your plan below a "---" separator.',
312
316
  inputSchema: {
313
317
  type: 'object',
314
318
  properties: {
@@ -326,7 +330,9 @@ class WolfpackMCPServer {
326
330
  },
327
331
  {
328
332
  name: 'update_work_progress',
329
- description: 'Update work item description/notes with your progress. WORKFLOW: 1) get_work_item to read current notes 2) Modify the markdown description with new findings/progress 3) Call this with the complete updated description. The full description replaces the existing one.',
333
+ description: 'Update work item description/notes with your progress. WORKFLOW: 1) get_work_item to read current notes 2) Modify the markdown description with new findings/progress 3) Call this with the complete updated description. The full description replaces the existing one. ' +
334
+ 'CRITICAL: NEVER overwrite or remove the original description text. Preserve all existing content exactly as-is. Append your plan below a "---" separator. You may only modify content you previously added (your plan section). ' +
335
+ 'BEST PRACTICE: Append a plan with markdown checkboxes (- [ ] task). Check off completed tasks (- [x] task) as you progress. Include sections for: Plan (checklist), Approach (strategy), and Notes (discoveries/decisions).',
330
336
  inputSchema: {
331
337
  type: 'object',
332
338
  properties: {
@@ -342,9 +348,14 @@ class WolfpackMCPServer {
342
348
  {
343
349
  name: 'update_work_item_status',
344
350
  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.',
351
+ 'REQUIRED WORKFLOW when working on items: ' +
352
+ '1) For "new" items: move to "doing" when starting work. ' +
353
+ '2) For "pending" (backlog) items: use pull_work_item first (claims and sets to "new"), then move to "doing". ' +
354
+ '3) For items in "blocked", "ready", "completed", or "closed": move to "new" first, then to "doing". ' +
355
+ '4) When work is complete: move to "review" (NOT "completed" - that is only for deployed work) and add a completion comment summarizing what was done. ' +
356
+ '5) If work cannot be done: move to "blocked" and add a detailed comment explaining the blocker, what was attempted, and what is needed to unblock. ' +
357
+ 'Statuses: "pending" (backlog), "new" (to do), "doing" (in progress), "review" (work done, pending review), ' +
358
+ '"ready" (reviewed, awaiting deployment), "blocked", "completed" (deployed).',
348
359
  inputSchema: {
349
360
  type: 'object',
350
361
  properties: {
@@ -354,7 +365,7 @@ class WolfpackMCPServer {
354
365
  },
355
366
  status: {
356
367
  type: 'string',
357
- description: 'New status: "pending" (backlog), "new" (to do), "doing" (in progress), "review", "blocked", "completed" (done)',
368
+ description: 'New status: "pending" (backlog), "new" (to do), "doing" (in progress), "review" (work done), "ready" (awaiting deployment), "blocked", "completed" (deployed)',
358
369
  },
359
370
  },
360
371
  required: ['work_item_id', 'status'],
@@ -382,10 +393,9 @@ class WolfpackMCPServer {
382
393
  {
383
394
  name: 'pull_work_item',
384
395
  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. ' +
396
+ 'REQUIRED: Use this when starting work on a "pending" (backlog) item. ' +
397
+ 'This claims the item (assigns to you) and sets status to "new". ' +
398
+ 'After pulling, move to "doing" to indicate active work, then "review" when done. ' +
389
399
  'If no assignee is specified, assigns to the API key owner.',
390
400
  inputSchema: {
391
401
  type: 'object',
@@ -505,7 +515,7 @@ class WolfpackMCPServer {
505
515
  },
506
516
  status: {
507
517
  type: 'string',
508
- description: 'Initial status: "pending" (backlog), "new" (to do), "doing", "review", "blocked", "completed". Defaults to "new".',
518
+ description: 'Initial status: "pending" (backlog), "new" (to do), "doing", "review", "ready", "blocked", "completed". Defaults to "new".',
509
519
  },
510
520
  priority: {
511
521
  type: 'number',
@@ -692,7 +702,11 @@ class WolfpackMCPServer {
692
702
  // Comment tools
693
703
  {
694
704
  name: 'create_work_item_comment',
695
- description: 'Add a comment to a work item. Requires mcp:comments:create permission.',
705
+ description: 'Add a comment to a work item. Requires mcp:comments:create permission. ' +
706
+ 'USE COMMENTS FOR: 1) Blocking reasons when moving to "blocked" (what failed, what was tried, what is needed). ' +
707
+ '2) Completion summaries when moving to "review" (what was done, files changed, testing notes). ' +
708
+ '3) Important observations or decisions that should be visible in the activity history. ' +
709
+ 'USE DESCRIPTION (update_work_progress) FOR: Plans, checklists, and progress tracking that need to be updated over time.',
696
710
  inputSchema: {
697
711
  type: 'object',
698
712
  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.15",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",