wolfpack-mcp 1.0.49 → 1.0.51
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/client.js +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('/
|
|
707
|
+
return this.api.get('/agents/org-skills');
|
|
708
708
|
}
|
|
709
709
|
async getOrgSkill(name) {
|
|
710
710
|
try {
|
|
711
|
-
return await this.api.get(`/
|
|
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)
|