wolfpack-mcp 1.0.49 → 1.0.50

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/client.js +2 -2
  2. package/package.json +1 -1
package/dist/client.js CHANGED
@@ -704,11 +704,11 @@ export class WolfpackClient {
704
704
  }
705
705
  // ─── Agent Builder: Skills (read) ──────────────────────────────────────────
706
706
  async listOrgSkills() {
707
- return this.api.get('/skills/org');
707
+ return this.api.get('/agents/org-skills');
708
708
  }
709
709
  async getOrgSkill(name) {
710
710
  try {
711
- return await this.api.get(`/skills/org/${encodeURIComponent(name)}`);
711
+ return await this.api.get(`/agents/org-skills/${encodeURIComponent(name)}`);
712
712
  }
713
713
  catch (error) {
714
714
  if (error && typeof error === 'object' && 'status' in error && error.status === 404)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wolfpack-mcp",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "MCP server for Wolfpack AI-enhanced software delivery tools",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",