wolfpack-mcp 1.0.66 → 1.0.68
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 +16 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -171,6 +171,11 @@ const UpdateWorkItemSchema = z.object({
|
|
|
171
171
|
.nullable()
|
|
172
172
|
.optional()
|
|
173
173
|
.describe('User ID for third assisting user, or null to remove'),
|
|
174
|
+
work_pool_id: z
|
|
175
|
+
.string()
|
|
176
|
+
.nullable()
|
|
177
|
+
.optional()
|
|
178
|
+
.describe('Work pool to route the item to (pool ID or name), or null to remove it from its pool'),
|
|
174
179
|
tags: z
|
|
175
180
|
.array(z.string())
|
|
176
181
|
.optional()
|
|
@@ -864,7 +869,7 @@ class WolfpackMCPServer {
|
|
|
864
869
|
name: 'update_work_item',
|
|
865
870
|
description: 'Update one or more fields on a work item. Only provide the fields you want to change. ' +
|
|
866
871
|
'Supports: title, description, status, leading_user_id (assignee), assisting_user1/2/3_id, ' +
|
|
867
|
-
'radar_item_id (initiative), category_id, priority (0-4), size (S/M/L), tags, and closing_comment. ' +
|
|
872
|
+
'radar_item_id (initiative), category_id, priority (0-4), size (S/M/L), work_pool_id, tags, and closing_comment. ' +
|
|
868
873
|
'STATUS WORKFLOW: "pending" (backlog) → "new" (to do) → "doing" (in progress) → "review" (work done) → "ready" (awaiting deployment) → "completed" (deployed). ' +
|
|
869
874
|
'Use "blocked" when work cannot proceed. For "pending" items use pull_work_item first. ' +
|
|
870
875
|
'When moving to "review", add a completion comment. When moving to "blocked", add a comment explaining the blocker.',
|
|
@@ -931,6 +936,10 @@ class WolfpackMCPServer {
|
|
|
931
936
|
type: ['string', 'null'],
|
|
932
937
|
description: 'User ID for third assisting user, or null to remove',
|
|
933
938
|
},
|
|
939
|
+
work_pool_id: {
|
|
940
|
+
type: ['string', 'null'],
|
|
941
|
+
description: 'Work pool to route the item to (pool ID or name), or null to remove it from its pool',
|
|
942
|
+
},
|
|
934
943
|
tags: {
|
|
935
944
|
type: 'array',
|
|
936
945
|
items: { type: 'string' },
|
|
@@ -2160,6 +2169,8 @@ class WolfpackMCPServer {
|
|
|
2160
2169
|
fields.assistingUser2Id = parsed.assisting_user2_id;
|
|
2161
2170
|
if (parsed.assisting_user3_id !== undefined)
|
|
2162
2171
|
fields.assistingUser3Id = parsed.assisting_user3_id;
|
|
2172
|
+
if (parsed.work_pool_id !== undefined)
|
|
2173
|
+
fields.workPoolId = parsed.work_pool_id;
|
|
2163
2174
|
if (parsed.tags !== undefined)
|
|
2164
2175
|
fields.tags = parsed.tags;
|
|
2165
2176
|
if (parsed.closing_comment !== undefined)
|
|
@@ -2208,6 +2219,10 @@ class WolfpackMCPServer {
|
|
|
2208
2219
|
changes.push(parsed.assisting_user3_id
|
|
2209
2220
|
? `assisting user 3 updated`
|
|
2210
2221
|
: 'assisting user 3 removed');
|
|
2222
|
+
if (parsed.work_pool_id !== undefined)
|
|
2223
|
+
changes.push(parsed.work_pool_id
|
|
2224
|
+
? `work pool → ${workItem.workPool?.name || parsed.work_pool_id}`
|
|
2225
|
+
: 'removed from work pool');
|
|
2211
2226
|
if (parsed.tags !== undefined)
|
|
2212
2227
|
changes.push('tags updated');
|
|
2213
2228
|
if (parsed.closing_comment !== undefined)
|