wolfpack-mcp 1.0.71 → 1.0.72
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/dist/index.js +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -184,7 +184,8 @@ const UpdateWorkItemSchema = z.object({
|
|
|
184
184
|
.string()
|
|
185
185
|
.nullable()
|
|
186
186
|
.optional()
|
|
187
|
-
.describe('
|
|
187
|
+
.describe('ONLY when closing: comment explaining why the item is closed, provided together with status "closed". ' +
|
|
188
|
+
'Not for progress or completion notes — use create_work_item_comment for those.'),
|
|
188
189
|
project_slug: z
|
|
189
190
|
.string()
|
|
190
191
|
.optional()
|
|
@@ -872,7 +873,8 @@ class WolfpackMCPServer {
|
|
|
872
873
|
'radar_item_id (initiative), category_id, priority (0-4), size (S/M/L), work_pool_id, tags, and closing_comment. ' +
|
|
873
874
|
'STATUS WORKFLOW: "pending" (backlog) → "new" (to do) → "doing" (in progress) → "review" (work done) → "ready" (awaiting deployment) → "completed" (deployed). ' +
|
|
874
875
|
'Use "blocked" when work cannot proceed. For "pending" items use pull_work_item first. ' +
|
|
875
|
-
'When moving to "review", add a completion comment. When moving to "blocked", add a comment explaining the blocker.'
|
|
876
|
+
'When moving to "review", add a completion comment via create_work_item_comment. When moving to "blocked", add a comment explaining the blocker. ' +
|
|
877
|
+
'closing_comment is only accepted together with status "closed" — never use it for progress or completion notes.',
|
|
876
878
|
inputSchema: {
|
|
877
879
|
type: 'object',
|
|
878
880
|
properties: {
|
|
@@ -947,7 +949,8 @@ class WolfpackMCPServer {
|
|
|
947
949
|
},
|
|
948
950
|
closing_comment: {
|
|
949
951
|
type: ['string', 'null'],
|
|
950
|
-
description: '
|
|
952
|
+
description: 'ONLY when closing: comment explaining why the item is closed, provided together with status "closed". ' +
|
|
953
|
+
'Not for progress or completion notes — use create_work_item_comment for those.',
|
|
951
954
|
},
|
|
952
955
|
project_slug: {
|
|
953
956
|
type: 'string',
|