wolfpack-mcp 1.0.83 → 1.0.84

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.
@@ -88,7 +88,6 @@ export const AGENT_BUILDER_TOOLS = [
88
88
  type: 'string',
89
89
  description: 'LLM model family (e.g. "sonnet"). Agent auto-upgrades to latest in family.',
90
90
  },
91
- scheduling_enabled: { type: 'boolean', description: 'Whether scheduled tasks are enabled' },
92
91
  api_key_permissions: {
93
92
  type: 'array',
94
93
  items: { type: 'string' },
@@ -819,7 +818,6 @@ export async function handleAgentBuilderTool(name, args, client) {
819
818
  llm_provider: z.string().nullable().optional(),
820
819
  llm_model: z.string().nullable().optional(),
821
820
  llm_family: z.string().nullable().optional(),
822
- scheduling_enabled: z.boolean().optional(),
823
821
  api_key_permissions: z.array(z.string()).optional(),
824
822
  org_slug: orgSlugField,
825
823
  })
@@ -842,8 +840,6 @@ export async function handleAgentBuilderTool(name, args, client) {
842
840
  fields.llmModel = rest.llm_model;
843
841
  if (rest.llm_family !== undefined)
844
842
  fields.llmFamily = rest.llm_family;
845
- if (rest.scheduling_enabled !== undefined)
846
- fields.schedulingEnabled = rest.scheduling_enabled;
847
843
  if (rest.api_key_permissions !== undefined)
848
844
  fields.apiKeyPermissions = rest.api_key_permissions;
849
845
  const agent = await client.updateAgent(agent_id, fields, resolveOrg(parsed));
package/dist/index.js CHANGED
@@ -1029,6 +1029,9 @@ class WolfpackMCPServer {
1029
1029
  'you: bug fixes first, then higher priority, then oldest. ' +
1030
1030
  'AGENTS: an item waiting on unfinished work it depends on is not claimable and will return ' +
1031
1031
  '403 naming what to take first — see dependsOn on get_work_item. ' +
1032
+ 'AGENTS: one item at a time — while you lead an item in "doing" (for example one a ' +
1033
+ 'reviewer sent back), pulling another returns 403 naming it; resume that item and move it ' +
1034
+ 'to "review" (or "blocked") first. ' +
1032
1035
  'If no assignee is specified, assigns to the API key owner. ' +
1033
1036
  'In personal projects, items are always assigned to the owner.',
1034
1037
  inputSchema: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.83",
3
+ "version": "1.0.84",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",