@vruum/skills
Advanced tools
| { | ||
| "name": "vruum", | ||
| "version": "0.6.45", | ||
| "version": "0.6.46", | ||
| "description": "Vruum AI skills + remote MCP server for B2B GTM teams. Slash commands for outreach triage, engagement triage, pipeline filling, prospect enrichment, and reply diagnosis, paired with the full Vruum MCP tool surface over OAuth 2.1.", | ||
@@ -5,0 +5,0 @@ "author": { |
| { | ||
| "name": "vruum", | ||
| "version": "0.6.45", | ||
| "version": "0.6.46", | ||
| "description": "Vruum AI skills + remote MCP server for B2B GTM teams. Skills for outreach triage, engagement triage, pipeline filling, prospect enrichment, and reply diagnosis, paired with the full Vruum MCP tool surface over OAuth 2.1.", | ||
@@ -5,0 +5,0 @@ "author": { |
+10
-11
@@ -122,11 +122,11 @@ #!/usr/bin/env node | ||
| Usage: | ||
| npx @vruum/skills install Install into every detected harness | ||
| npx @vruum/skills install --target <dir> Add an extra target (repeatable) | ||
| npx @vruum/skills install --dry-run Preview changes, don't touch disk | ||
| npx @vruum/skills uninstall Remove previously-installed symlinks | ||
| npx @vruum/skills list Show detected targets + what's installed | ||
| npx --yes @vruum/skills@latest install Install into every detected harness | ||
| npx --yes @vruum/skills@latest install --target <dir> Add an extra target (repeatable) | ||
| npx --yes @vruum/skills@latest install --dry-run Preview changes, don't touch disk | ||
| npx --yes @vruum/skills@latest uninstall Remove installed links or junctions | ||
| npx --yes @vruum/skills@latest list Show detected targets + what's installed | ||
| Pairs with the Vruum MCP server at https://api.vruum.ai/mcp, which provides | ||
| the invoke_skill tool. This installer puts the SKILL.md files into a harness's | ||
| local skill directory so the skills are available there too. | ||
| the skill tool (action=invoke). This installer puts the SKILL.md files into a | ||
| harness's local skill directory so the skills are available there too. | ||
@@ -139,6 +139,5 @@ Supported auto-detection: | ||
| Note: for Claude Code, install the skills via the Vruum plugin / marketplace | ||
| instead of this installer. This installer is for Codex CLI, ChatGPT, Windsurf, | ||
| and other assistants without plugin support. In every case the MCP server's | ||
| invoke_skill tool can run a skill on demand.`); | ||
| For Claude Code, prefer the Vruum plugin / marketplace when available; | ||
| otherwise this installer auto-detects ~/.claude/skills. The Vruum CLI is not | ||
| required. Restart the harness after installation so it discovers the skills.`); | ||
| } | ||
@@ -145,0 +144,0 @@ |
+2
-2
| { | ||
| "name": "@vruum/skills", | ||
| "version": "0.6.45", | ||
| "version": "0.6.46", | ||
| "description": "Vruum AI skills for Claude Code, Claude Desktop, Codex CLI, and any AI assistant with a skill directory. Slash commands for outreach triage, engagement triage, pipeline filling, prospect enrichment, and reply diagnosis. Pairs with the Vruum MCP server at https://api.vruum.ai/mcp.", | ||
@@ -44,3 +44,3 @@ "license": "MIT", | ||
| ], | ||
| "contentHash": "843a119196d95663bc210d5543eb53a5f48a2a2780d425afce7c713577d4b1ac" | ||
| "contentHash": "642c88b2d663edb9fc50184409cd7f569f412bc8e64bed2961c1802e85d19246" | ||
| } |
+20
-8
@@ -7,4 +7,8 @@ # @vruum/skills | ||
| Pairs with the Vruum MCP server at [https://api.vruum.ai/mcp](https://api.vruum.ai/mcp). The MCP server exposes the `skill` tool (action=invoke to run a skill, action=publish to publish one), with `search` type=skills and `fetch` type=skill for discovery, so any connected client can run these skills. Skills themselves are distributed via the Claude Code plugin / marketplace; this npm package installs them into the agent-standard skills directory for harnesses without plugin support (Codex CLI, ChatGPT, Windsurf). | ||
| Pairs with the Vruum MCP server at [https://api.vruum.ai/mcp](https://api.vruum.ai/mcp). The MCP server exposes the `skill` tool (action=invoke to run a skill, action=publish to publish one), with `search` type=skills and `fetch` type=skill for discovery, so any connected client can run these skills. This package installs Vruum-shipped skills into the standard skill directories used by Claude Code, Codex CLI, and other compatible harnesses. | ||
| You do not need `@vruum/cli` to use Vruum. Connect the Vruum MCP and install | ||
| this skills package; the CLI is optional for local files, scripting, CI, auth | ||
| debugging, and the convenience `vruum init` command. | ||
| ## Install | ||
@@ -24,4 +28,12 @@ | ||
| Install the skills via the Claude Code plugin / marketplace (below); the MCP server provides the `skill` tool (action=invoke). You don't need this npm package for Claude Code. | ||
| Install through the Claude Code plugin / marketplace when available. Otherwise | ||
| install the skills directly: | ||
| ```sh | ||
| npx --yes @vruum/skills@latest install | ||
| ``` | ||
| Restart Claude Code afterward. On Windows, the installer uses directory | ||
| junctions and does not require Administrator access or Developer Mode. | ||
| ### Codex CLI | ||
@@ -46,4 +58,4 @@ | ||
| ```bash | ||
| npx @vruum/skills install # detects ~/.agents/skills/ | ||
| npx @vruum/skills install --target /path/to/skills/dir # any other harness | ||
| npx --yes @vruum/skills@latest install # detects ~/.agents/skills/ | ||
| npx --yes @vruum/skills@latest install --target /path/to/skills/dir # any other harness | ||
| ``` | ||
@@ -66,3 +78,3 @@ | ||
| ```bash | ||
| npx @vruum/skills install --target /path/to/skills/dir | ||
| npx --yes @vruum/skills@latest install --target /path/to/skills/dir | ||
| ``` | ||
@@ -106,3 +118,3 @@ | ||
| ```bash | ||
| npx @vruum/skills install | ||
| npx --yes @vruum/skills@latest install | ||
| ``` | ||
@@ -113,6 +125,6 @@ | ||
| ```bash | ||
| npx @vruum/skills uninstall | ||
| npx --yes @vruum/skills@latest uninstall | ||
| ``` | ||
| Removes all symlinks this installer created. Does not touch `~/.vruum/auth.json` or other co-resident tool state. | ||
| Removes all links or Windows junctions this installer created. Does not touch `~/.vruum/auth.json` or other co-resident tool state. | ||
@@ -119,0 +131,0 @@ ## Links |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
353637
0.1%130
10.17%1296
-0.08%