@vruum/skills 0.6.3 → 0.6.5
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/.claude-plugin/plugin.json +20 -0
- package/.codex-plugin/plugin.json +19 -0
- package/.mcp.json +8 -0
- package/README.md +5 -5
- package/install.js +12 -13
- package/package.json +6 -3
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vruum",
|
|
3
|
+
"version": "0.6.5",
|
|
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
|
+
"author": {
|
|
6
|
+
"name": "Vruum AI",
|
|
7
|
+
"url": "https://vruum.ai"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://vruum.ai",
|
|
10
|
+
"repository": "https://github.com/vruum-gtm/skills",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"vruum",
|
|
14
|
+
"mcp",
|
|
15
|
+
"sales",
|
|
16
|
+
"outbound",
|
|
17
|
+
"gtm",
|
|
18
|
+
"sales-intelligence"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vruum",
|
|
3
|
+
"version": "0.6.5",
|
|
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
|
+
"author": {
|
|
6
|
+
"name": "Vruum AI",
|
|
7
|
+
"url": "https://vruum.ai"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"homepage": "https://vruum.ai",
|
|
11
|
+
"repository": "https://github.com/vruum-gtm/skills",
|
|
12
|
+
"skills": "./skills/",
|
|
13
|
+
"mcpServers": "./.mcp.json",
|
|
14
|
+
"interface": {
|
|
15
|
+
"displayName": "Vruum",
|
|
16
|
+
"shortDescription": "Vruum sales skills + remote MCP server",
|
|
17
|
+
"category": "Productivity"
|
|
18
|
+
}
|
|
19
|
+
}
|
package/.mcp.json
ADDED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Vruum AI skills for Claude Code, Codex CLI, and any AI assistant with a skill directory.
|
|
4
4
|
|
|
5
|
-
Pairs with the Vruum MCP server at [https://api.vruum.ai/mcp](https://api.vruum.ai/mcp).
|
|
5
|
+
Pairs with the Vruum MCP server at [https://api.vruum.ai/mcp](https://api.vruum.ai/mcp). The MCP server exposes the `invoke_skill` tool (alongside `list_skills` / `get_skill` / `publish_skill`) 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).
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -18,7 +18,7 @@ Add to `~/.claude.json`:
|
|
|
18
18
|
}
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
Install the skills via the Claude Code plugin / marketplace (below); the MCP server provides the `invoke_skill` tool. You don't need this npm package for Claude Code.
|
|
22
22
|
|
|
23
23
|
### Codex CLI
|
|
24
24
|
|
|
@@ -45,17 +45,17 @@ npx @vruum/skills install --target /path/to/skills/dir # any other harness
|
|
|
45
45
|
|
|
46
46
|
### Cursor / VS Code Copilot / Cline
|
|
47
47
|
|
|
48
|
-
Register the MCP server via your editor's MCP setup (each one has its own UI / config path). Connect to `https://api.vruum.ai/mcp` (HTTP, OAuth via standard MCP flow).
|
|
48
|
+
Register the MCP server via your editor's MCP setup (each one has its own UI / config path). Connect to `https://api.vruum.ai/mcp` (HTTP, OAuth via standard MCP flow). The `invoke_skill` tool becomes available — to also install the skill files locally, use this npm package's `install --target` below.
|
|
49
49
|
|
|
50
50
|
### Claude Desktop / Claude.ai (Cowork)
|
|
51
51
|
|
|
52
|
-
Install the Vruum plugin via the official plugin directory — bundles the connector and
|
|
52
|
+
Install the Vruum plugin via the official plugin directory — bundles the connector and the skills in one step:
|
|
53
53
|
|
|
54
54
|
[github.com/vruum-gtm/skills/releases/latest/download/vruum-plugin.zip](https://github.com/vruum-gtm/skills/releases/latest/download/vruum-plugin.zip)
|
|
55
55
|
|
|
56
56
|
Download and upload via **Settings → Customize → Plugins → "+"**.
|
|
57
57
|
|
|
58
|
-
### ChatGPT / Windsurf / other harnesses without
|
|
58
|
+
### ChatGPT / Windsurf / other harnesses without plugin support
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
61
|
npx @vruum/skills install --target /path/to/skills/dir
|
package/install.js
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* @vruum/skills installer.
|
|
4
4
|
*
|
|
5
|
-
* For AI assistants
|
|
5
|
+
* For AI assistants without Claude Code plugin support (Codex CLI,
|
|
6
6
|
* ChatGPT, Windsurf) — installs SKILL.md files into the target harness's
|
|
7
|
-
* skill directory so
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
7
|
+
* skill directory so the skills are available locally. For Claude Code,
|
|
8
|
+
* install the skills via the plugin / marketplace instead; in every case
|
|
9
|
+
* the Vruum MCP server at https://api.vruum.ai/mcp provides the
|
|
10
|
+
* `invoke_skill` tool to run a skill on demand.
|
|
11
11
|
*
|
|
12
12
|
* Zero runtime dependencies — stdlib Node only.
|
|
13
13
|
*
|
|
@@ -123,9 +123,9 @@ Usage:
|
|
|
123
123
|
npx @vruum/skills uninstall Remove previously-installed symlinks
|
|
124
124
|
npx @vruum/skills list Show detected targets + what's installed
|
|
125
125
|
|
|
126
|
-
Pairs with the Vruum MCP server at https://api.vruum.ai/mcp
|
|
127
|
-
|
|
128
|
-
|
|
126
|
+
Pairs with the Vruum MCP server at https://api.vruum.ai/mcp, which provides
|
|
127
|
+
the invoke_skill tool. This installer puts the SKILL.md files into a harness's
|
|
128
|
+
local skill directory so the skills are available there too.
|
|
129
129
|
|
|
130
130
|
Supported auto-detection:
|
|
131
131
|
- Claude Code ~/.claude/skills/
|
|
@@ -133,11 +133,10 @@ Supported auto-detection:
|
|
|
133
133
|
|
|
134
134
|
Any other harness: pass --target <its skills directory>.
|
|
135
135
|
|
|
136
|
-
Note: Claude Code,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
other assistants that don't yet support MCP prompts.`);
|
|
136
|
+
Note: for Claude Code, install the skills via the Vruum plugin / marketplace
|
|
137
|
+
instead of this installer. This installer is for Codex CLI, ChatGPT, Windsurf,
|
|
138
|
+
and other assistants without plugin support. In every case the MCP server's
|
|
139
|
+
invoke_skill tool can run a skill on demand.`);
|
|
141
140
|
}
|
|
142
141
|
|
|
143
142
|
function listAvailableSkills() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vruum/skills",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
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": {
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"LICENSE",
|
|
22
22
|
"skills/",
|
|
23
23
|
"agents/",
|
|
24
|
-
"bin/"
|
|
24
|
+
"bin/",
|
|
25
|
+
".mcp.json",
|
|
26
|
+
".claude-plugin/",
|
|
27
|
+
".codex-plugin/"
|
|
25
28
|
],
|
|
26
29
|
"engines": {
|
|
27
30
|
"node": ">=18"
|
|
@@ -39,5 +42,5 @@
|
|
|
39
42
|
"outreach",
|
|
40
43
|
"gtm"
|
|
41
44
|
],
|
|
42
|
-
"contentHash": "
|
|
45
|
+
"contentHash": "e63027e852c80ac642ff78aa10fc43c4efe9ec020ee4feeaa6270d4ba76fbe40"
|
|
43
46
|
}
|