@vruum/skills 0.6.45 → 0.6.46

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vruum",
3
- "version": "0.6.45",
3
+ "version": "0.6.46",
4
4
  "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
5
  "author": {
6
6
  "name": "Vruum AI",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vruum",
3
- "version": "0.6.45",
3
+ "version": "0.6.46",
4
4
  "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
5
  "author": {
6
6
  "name": "Vruum AI",
package/README.md CHANGED
@@ -4,7 +4,11 @@ Vruum AI skills for Claude Code, Codex CLI, and any AI assistant with a skill di
4
4
 
5
5
  Once installed, run `/vruum-guide` in your harness — it takes you from an empty account to your first reviewed outreach draft, then keeps recommending the next most valuable action.
6
6
 
7
- 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).
7
+ 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.
8
+
9
+ You do not need `@vruum/cli` to use Vruum. Connect the Vruum MCP and install
10
+ this skills package; the CLI is optional for local files, scripting, CI, auth
11
+ debugging, and the convenience `vruum init` command.
8
12
 
9
13
  ## Install
10
14
 
@@ -20,7 +24,15 @@ Add to `~/.claude.json`:
20
24
  }
21
25
  ```
22
26
 
23
- 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.
27
+ Install through the Claude Code plugin / marketplace when available. Otherwise
28
+ install the skills directly:
29
+
30
+ ```sh
31
+ npx --yes @vruum/skills@latest install
32
+ ```
33
+
34
+ Restart Claude Code afterward. On Windows, the installer uses directory
35
+ junctions and does not require Administrator access or Developer Mode.
24
36
 
25
37
  ### Codex CLI
26
38
 
@@ -41,8 +53,8 @@ url = "https://api.vruum.ai/mcp"
41
53
  ```
42
54
 
43
55
  ```bash
44
- npx @vruum/skills install # detects ~/.agents/skills/
45
- npx @vruum/skills install --target /path/to/skills/dir # any other harness
56
+ npx --yes @vruum/skills@latest install # detects ~/.agents/skills/
57
+ npx --yes @vruum/skills@latest install --target /path/to/skills/dir # any other harness
46
58
  ```
47
59
 
48
60
  ### Cursor / VS Code Copilot / Cline
@@ -60,7 +72,7 @@ Download and upload via **Settings → Customize → Plugins → "+"**.
60
72
  ### ChatGPT / Windsurf / other harnesses without plugin support
61
73
 
62
74
  ```bash
63
- npx @vruum/skills install --target /path/to/skills/dir
75
+ npx --yes @vruum/skills@latest install --target /path/to/skills/dir
64
76
  ```
65
77
 
66
78
  ## Coexisting with operator skills
@@ -99,16 +111,16 @@ the public skill instead of leaving a broken link.
99
111
  Skills auto-prompt to upgrade via the preamble. To upgrade explicitly:
100
112
 
101
113
  ```bash
102
- npx @vruum/skills install
114
+ npx --yes @vruum/skills@latest install
103
115
  ```
104
116
 
105
117
  ## Uninstall
106
118
 
107
119
  ```bash
108
- npx @vruum/skills uninstall
120
+ npx --yes @vruum/skills@latest uninstall
109
121
  ```
110
122
 
111
- Removes all symlinks this installer created. Does not touch `~/.vruum/auth.json` or other co-resident tool state.
123
+ Removes all links or Windows junctions this installer created. Does not touch `~/.vruum/auth.json` or other co-resident tool state.
112
124
 
113
125
  ## Links
114
126
 
package/install.js CHANGED
@@ -119,15 +119,15 @@ function printHelp() {
119
119
  console.log(`@vruum/skills v${VERSION}
120
120
 
121
121
  Usage:
122
- npx @vruum/skills install Install into every detected harness
123
- npx @vruum/skills install --target <dir> Add an extra target (repeatable)
124
- npx @vruum/skills install --dry-run Preview changes, don't touch disk
125
- npx @vruum/skills uninstall Remove previously-installed symlinks
126
- npx @vruum/skills list Show detected targets + what's installed
122
+ npx --yes @vruum/skills@latest install Install into every detected harness
123
+ npx --yes @vruum/skills@latest install --target <dir> Add an extra target (repeatable)
124
+ npx --yes @vruum/skills@latest install --dry-run Preview changes, don't touch disk
125
+ npx --yes @vruum/skills@latest uninstall Remove installed links or junctions
126
+ npx --yes @vruum/skills@latest list Show detected targets + what's installed
127
127
 
128
128
  Pairs with the Vruum MCP server at https://api.vruum.ai/mcp, which provides
129
- the invoke_skill tool. This installer puts the SKILL.md files into a harness's
130
- local skill directory so the skills are available there too.
129
+ the skill tool (action=invoke). This installer puts the SKILL.md files into a
130
+ harness's local skill directory so the skills are available there too.
131
131
 
132
132
  Supported auto-detection:
133
133
  - Claude Code ~/.claude/skills/
@@ -135,10 +135,9 @@ Supported auto-detection:
135
135
 
136
136
  Any other harness: pass --target <its skills directory>.
137
137
 
138
- Note: for Claude Code, install the skills via the Vruum plugin / marketplace
139
- instead of this installer. This installer is for Codex CLI, ChatGPT, Windsurf,
140
- and other assistants without plugin support. In every case the MCP server's
141
- invoke_skill tool can run a skill on demand.`);
138
+ For Claude Code, prefer the Vruum plugin / marketplace when available;
139
+ otherwise this installer auto-detects ~/.claude/skills. The Vruum CLI is not
140
+ required. Restart the harness after installation so it discovers the skills.`);
142
141
  }
143
142
 
144
143
  function listAvailableSkills() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vruum/skills",
3
- "version": "0.6.45",
3
+ "version": "0.6.46",
4
4
  "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.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,5 +41,5 @@
41
41
  "outreach",
42
42
  "gtm"
43
43
  ],
44
- "contentHash": "843a119196d95663bc210d5543eb53a5f48a2a2780d425afce7c713577d4b1ac"
44
+ "contentHash": "642c88b2d663edb9fc50184409cd7f569f412bc8e64bed2961c1802e85d19246"
45
45
  }