wolfpack-mcp 1.0.76 → 1.0.77

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 +15 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -876,7 +876,10 @@ class WolfpackMCPServer {
876
876
  'Supports: title, description, status, leading_user_id (assignee), assisting_user1/2/3_id, ' +
877
877
  'radar_item_id (initiative), category_id, priority (0-4), size (S/M/L), work_pool_id, tags, and closing_comment. ' +
878
878
  'STATUS WORKFLOW: "pending" (backlog) → "new" (to do) → "doing" (in progress) → "review" (work done) → "ready" (awaiting deployment) → "completed" (deployed). ' +
879
- 'Use "blocked" when work cannot proceed. For "pending" items use pull_work_item first. ' +
879
+ 'Use "blocked" when work cannot proceed. AGENTS: you cannot start un-started work here — ' +
880
+ 'a status change on a "pending" or "new" item that is not assigned to you is refused. ' +
881
+ 'Take it with pull_work_item, which assigns it to you and puts it in "doing"; that is ' +
882
+ 'what makes the board show who is working on what. ' +
880
883
  'When moving to "review", add a completion comment via create_work_item_comment. When moving to "blocked", add a comment explaining the blocker. ' +
881
884
  'closing_comment is only accepted together with status "closed" — never use it for progress or completion notes.',
882
885
  inputSchema: {
@@ -911,7 +914,7 @@ class WolfpackMCPServer {
911
914
  },
912
915
  leading_user_id: {
913
916
  type: ['string', 'null'],
914
- description: 'User ID to assign as leading user, or null to unassign',
917
+ description: "User ID to assign as leading user, or null to unassign. Agents may not assign work to themselves — that is the product owner's decision.",
915
918
  },
916
919
  radar_item_id: {
917
920
  type: ['string', 'null'],
@@ -966,15 +969,17 @@ class WolfpackMCPServer {
966
969
  },
967
970
  {
968
971
  name: 'pull_work_item',
969
- description: 'Pull a specific work item from the backlog to the board. ' +
970
- 'REQUIRED: Use this when starting work on a "pending" (backlog) item. ' +
971
- 'This claims the item (assigns to you) and sets status to "new". ' +
972
+ description: 'Pull a specific work item from the backlog to the board, or claim one already on it. ' +
973
+ 'REQUIRED: Use this when starting work on a "pending" (backlog) item, and to claim an ' +
974
+ 'unassigned "new" (board) item approved board work is picked up just like approved ' +
975
+ 'backlog work. This claims the item (assigns to you); a backlog item also moves to "new". ' +
972
976
  'AGENTS: an item already assigned to you is always pullable, approved or not. An item ' +
973
977
  'that is NOT assigned to you is pullable only if it is routed to a work pool you belong ' +
974
978
  'to AND a human has approved it (approved=true) — pool membership grants the access, ' +
975
979
  'approval grants the go-ahead. An unassigned item in no work pool cannot be pulled by an ' +
976
980
  'agent and will return 403: ask a human to route it to your pool or assign it to you. ' +
977
- 'After pulling, move to "doing" to indicate active work, then "review" when done. ' +
981
+ 'AGENTS: pulling puts the item straight into "doing" you are taking it to start on it ' +
982
+ 'now — so there is no separate "move it to doing" step. Move it to "review" when done. ' +
978
983
  'If no assignee is specified, assigns to the API key owner. ' +
979
984
  'In personal projects, items are always assigned to the owner.',
980
985
  inputSchema: {
@@ -982,7 +987,7 @@ class WolfpackMCPServer {
982
987
  properties: {
983
988
  work_item_id: {
984
989
  type: 'string',
985
- description: 'The ID of the work item to pull from backlog',
990
+ description: 'The ID of the work item to pull or claim',
986
991
  },
987
992
  leading_user_id: {
988
993
  type: 'string',
@@ -1209,6 +1214,7 @@ class WolfpackMCPServer {
1209
1214
  {
1210
1215
  name: 'create_work_item',
1211
1216
  description: 'Create a new work item in your current project (auto-selected for single-project users, or use list_projects first for multi-project). Requires mcp:work_items:create permission. ' +
1217
+ 'Agents: work you file lands unassigned in the backlog, whatever status you ask for, and waits there for the product owner to approve and assign it. ' +
1212
1218
  CONTENT_LINKING_HELP,
1213
1219
  inputSchema: {
1214
1220
  type: 'object',
@@ -1248,7 +1254,7 @@ class WolfpackMCPServer {
1248
1254
  },
1249
1255
  leading_user_id: {
1250
1256
  type: 'string',
1251
- description: 'User ID to assign as leading user',
1257
+ description: "User ID to assign as leading user. Agents may not assign work to themselves — that is the product owner's decision.",
1252
1258
  },
1253
1259
  category_id: {
1254
1260
  type: 'string',
@@ -2265,7 +2271,7 @@ class WolfpackMCPServer {
2265
2271
  content: [
2266
2272
  {
2267
2273
  type: 'text',
2268
- text: `Pulled "${workItem.title}" from backlog to board (status: new)\n\n${JSON.stringify(stripUuids(workItem), null, 2)}`,
2274
+ text: `Claimed "${workItem.title}" (status: ${workItem.status})\n\n${JSON.stringify(stripUuids(workItem), null, 2)}`,
2269
2275
  },
2270
2276
  ],
2271
2277
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.76",
3
+ "version": "1.0.77",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",