ring-skills-mcp 1.2.1 → 1.2.2

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -391,8 +391,8 @@ server.tool("install_skill", "Install skill to local project by gitUrl. Uses npx
391
391
  }
392
392
  });
393
393
  // Register tool: Install Skill Group
394
- server.tool("install_skill_group", "Install all skills from a skill group to local project. Fetches the group details by ID and installs all skills that have gitUrl.", {
395
- groupId: z.string().describe("The ID of the skill group to install (e.g., '697190fc88f4e586fb1a7114')"),
394
+ server.tool("install_skill_group", "Install ALL skills from a skill group to local project at once. When user wants to install an entire skill group (shown in list_skills results with group ID), use this tool instead of install_skill. This will fetch the group details by ID and install all skills that have gitUrl.", {
395
+ groupId: z.string().describe("The ID of the skill group to install. You can get this ID from list_skills results (e.g., '697190fc88f4e586fb1a7114')"),
396
396
  host: z
397
397
  .string()
398
398
  .optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ring-skills-mcp",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "MCP service for fetching and installing company Skills",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",