@vruum/skills 0.4.4 → 0.4.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/README.md +19 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,11 +6,29 @@ Pairs with the Vruum MCP server at [https://api.vruum.ai/mcp](https://api.vruum.
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
+
### Claude Code / Cursor / VS Code Copilot / Cline
|
|
10
|
+
|
|
11
|
+
Add the Vruum MCP server as a connector. Slash commands appear automatically — you don't need this npm package.
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
claude mcp add --transport http --scope user vruum https://api.vruum.ai/mcp
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Claude Desktop / Claude.ai (Cowork)
|
|
18
|
+
|
|
19
|
+
Install the Vruum plugin via the official plugin directory — bundles the connector and slash commands in one step:
|
|
20
|
+
|
|
21
|
+
[github.com/vruum-gtm/skills/releases/latest/download/vruum-plugin.zip](https://github.com/vruum-gtm/skills/releases/latest/download/vruum-plugin.zip)
|
|
22
|
+
|
|
23
|
+
Download and upload via **Settings → Customize → Plugins → "+"**.
|
|
24
|
+
|
|
25
|
+
### Codex CLI / ChatGPT / other harnesses
|
|
26
|
+
|
|
9
27
|
```bash
|
|
10
28
|
npx @vruum/skills install
|
|
11
29
|
```
|
|
12
30
|
|
|
13
|
-
Detects
|
|
31
|
+
Detects Codex CLI (`~/.codex/skills/`). For other harnesses:
|
|
14
32
|
|
|
15
33
|
```bash
|
|
16
34
|
npx @vruum/skills install --target /path/to/skills/dir
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vruum/skills",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "Vruum AI skills for Claude Code, Codex CLI, and any AI assistant with a skill directory. Pairs with the Vruum MCP server at https://api.vruum.ai/mcp.",
|
|
3
|
+
"version": "0.4.5",
|
|
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": {
|
|
7
7
|
"type": "git",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"outreach",
|
|
37
37
|
"gtm"
|
|
38
38
|
],
|
|
39
|
-
"contentHash": "
|
|
39
|
+
"contentHash": "b0e043a4560fc5d2eda1f7238a08f58d8d1865c97b28442574d6c509eb74e53a"
|
|
40
40
|
}
|