wolfpack-mcp 1.0.14 → 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 +11 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -311,7 +311,8 @@ class WolfpackMCPServer {
311
311
  description: 'Get a specific work item/task by ID or reference number. Returns full details including description (markdown notes). ' +
312
312
  'Call this before updating to see current content. ' +
313
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).',
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.',
315
316
  inputSchema: {
316
317
  type: 'object',
317
318
  properties: {
@@ -329,7 +330,9 @@ class WolfpackMCPServer {
329
330
  },
330
331
  {
331
332
  name: 'update_work_progress',
332
- 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).',
333
336
  inputSchema: {
334
337
  type: 'object',
335
338
  properties: {
@@ -349,8 +352,8 @@ class WolfpackMCPServer {
349
352
  '1) For "new" items: move to "doing" when starting work. ' +
350
353
  '2) For "pending" (backlog) items: use pull_work_item first (claims and sets to "new"), then move to "doing". ' +
351
354
  '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. ' +
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. ' +
354
357
  'Statuses: "pending" (backlog), "new" (to do), "doing" (in progress), "review" (work done, pending review), ' +
355
358
  '"ready" (reviewed, awaiting deployment), "blocked", "completed" (deployed).',
356
359
  inputSchema: {
@@ -700,7 +703,10 @@ class WolfpackMCPServer {
700
703
  {
701
704
  name: 'create_work_item_comment',
702
705
  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.',
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.',
704
710
  inputSchema: {
705
711
  type: 'object',
706
712
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.14",
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",