@toolbeltai/skills 0.1.1 → 0.1.3
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 +3 -2
- package/bin/install.js +37 -8
- package/data-blend/SKILL.md +10 -13
- package/geo-analyst/SKILL.md +10 -12
- package/knowledge-graph/SKILL.md +10 -13
- package/multi-agent-workspace/SKILL.md +9 -12
- package/package.json +1 -1
- package/run-toolbelt/SKILL.md +7 -10
- package/sql-analyst/SKILL.md +10 -11
- package/streaming-analyst/SKILL.md +9 -13
- package/vector-search/SKILL.md +10 -12
package/README.md
CHANGED
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
npx @toolbeltai/skills install
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
Copies every skill to `~/.claude/skills
|
|
13
|
-
you'll see them as slash commands: `/run-toolbelt`,
|
|
12
|
+
Copies every skill to `~/.claude/skills/` (flat, per the AgentSkills spec).
|
|
13
|
+
Restart Claude Code and you'll see them as slash commands: `/run-toolbelt`,
|
|
14
|
+
`/geo-analyst`, …
|
|
14
15
|
|
|
15
16
|
No account required; no network calls to Toolbelt. Skills work against any
|
|
16
17
|
Toolbelt MCP server (cloud or self-hosted).
|
package/bin/install.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* toolbelt-skills — install Toolbelt's
|
|
3
|
+
* toolbelt-skills — install Toolbelt's skills into ~/.claude/skills/
|
|
4
4
|
*
|
|
5
5
|
* Usage:
|
|
6
6
|
* npx @toolbeltai/skills install # copy skills (default)
|
|
@@ -11,6 +11,11 @@
|
|
|
11
11
|
* The @toolbeltai/cli package wraps this for its own install flow; this
|
|
12
12
|
* CLI exists so the skills package stands on its own — anyone can install
|
|
13
13
|
* without needing the Toolbelt CLI or hitting any Toolbelt-hosted service.
|
|
14
|
+
*
|
|
15
|
+
* Layout: skills install FLAT under ~/.claude/skills/ per AgentSkills spec
|
|
16
|
+
* (agentskills.io) and Claude Code docs. An earlier version nested them
|
|
17
|
+
* under ~/.claude/skills/toolbelt/; that broke discovery in OpenClaw and
|
|
18
|
+
* was non-standard for Claude Code. We clean up the legacy dir on install.
|
|
14
19
|
*/
|
|
15
20
|
import { cpSync, existsSync, mkdirSync, readdirSync, rmSync, statSync } from 'node:fs';
|
|
16
21
|
import { homedir } from 'node:os';
|
|
@@ -18,7 +23,8 @@ import { dirname, join } from 'node:path';
|
|
|
18
23
|
import { fileURLToPath } from 'node:url';
|
|
19
24
|
|
|
20
25
|
const PKG_ROOT = join(dirname(fileURLToPath(import.meta.url)), '..');
|
|
21
|
-
const TARGET = join(homedir(), '.claude', 'skills'
|
|
26
|
+
const TARGET = join(homedir(), '.claude', 'skills');
|
|
27
|
+
const LEGACY_NESTED_DIR = join(TARGET, 'toolbelt');
|
|
22
28
|
|
|
23
29
|
/** Any top-level directory containing a SKILL.md is a skill. */
|
|
24
30
|
function listSkills() {
|
|
@@ -28,6 +34,13 @@ function listSkills() {
|
|
|
28
34
|
.filter((name) => existsSync(join(PKG_ROOT, name, 'SKILL.md')));
|
|
29
35
|
}
|
|
30
36
|
|
|
37
|
+
function cleanupLegacy() {
|
|
38
|
+
if (existsSync(LEGACY_NESTED_DIR)) {
|
|
39
|
+
rmSync(LEGACY_NESTED_DIR, { recursive: true, force: true });
|
|
40
|
+
console.log(` migrated: removed legacy ~/.claude/skills/toolbelt/`);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
31
44
|
function cmdInstall() {
|
|
32
45
|
const skills = listSkills();
|
|
33
46
|
if (skills.length === 0) {
|
|
@@ -36,12 +49,14 @@ function cmdInstall() {
|
|
|
36
49
|
}
|
|
37
50
|
|
|
38
51
|
mkdirSync(TARGET, { recursive: true });
|
|
52
|
+
cleanupLegacy();
|
|
53
|
+
|
|
39
54
|
for (const name of skills) {
|
|
40
55
|
const src = join(PKG_ROOT, name);
|
|
41
56
|
const dst = join(TARGET, name);
|
|
42
57
|
rmSync(dst, { recursive: true, force: true });
|
|
43
58
|
cpSync(src, dst, { recursive: true });
|
|
44
|
-
console.log(`
|
|
59
|
+
console.log(` ✓ ${name}`);
|
|
45
60
|
}
|
|
46
61
|
// Optional assets (icons, tapes) — copy if present so popups render right.
|
|
47
62
|
const assetsSrc = join(PKG_ROOT, 'assets');
|
|
@@ -57,12 +72,26 @@ function cmdInstall() {
|
|
|
57
72
|
}
|
|
58
73
|
|
|
59
74
|
function cmdUninstall() {
|
|
60
|
-
|
|
75
|
+
// Remove installed skills and legacy nested dir.
|
|
76
|
+
cleanupLegacy();
|
|
77
|
+
const skills = listSkills();
|
|
78
|
+
let removed = 0;
|
|
79
|
+
for (const name of skills) {
|
|
80
|
+
const dst = join(TARGET, name);
|
|
81
|
+
if (existsSync(dst)) {
|
|
82
|
+
rmSync(dst, { recursive: true, force: true });
|
|
83
|
+
removed++;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
const assetsDst = join(TARGET, 'assets');
|
|
87
|
+
if (existsSync(assetsDst)) {
|
|
88
|
+
rmSync(assetsDst, { recursive: true, force: true });
|
|
89
|
+
}
|
|
90
|
+
if (removed === 0) {
|
|
61
91
|
console.log(' (nothing to remove)');
|
|
62
|
-
|
|
92
|
+
} else {
|
|
93
|
+
console.log(` Removed ${removed} skills from ${TARGET}`);
|
|
63
94
|
}
|
|
64
|
-
rmSync(TARGET, { recursive: true, force: true });
|
|
65
|
-
console.log(` Removed ${TARGET}`);
|
|
66
95
|
}
|
|
67
96
|
|
|
68
97
|
function cmdList() {
|
|
@@ -74,7 +103,7 @@ function cmdPath() {
|
|
|
74
103
|
}
|
|
75
104
|
|
|
76
105
|
function usage() {
|
|
77
|
-
console.log(`toolbelt-skills — install Toolbelt skills into ~/.claude/skills/
|
|
106
|
+
console.log(`toolbelt-skills — install Toolbelt skills into ~/.claude/skills/
|
|
78
107
|
|
|
79
108
|
Usage:
|
|
80
109
|
npx @toolbeltai/skills install Install skills (default)
|
package/data-blend/SKILL.md
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: data-blend
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
Upload two or more CSV tables into one Toolbelt namespace and run cross-table
|
|
5
|
+
JOIN queries to correlate them. Use when an agent has related datasets that
|
|
6
|
+
need to be combined — orders + customers, sensors + metadata, events +
|
|
7
|
+
dimensions, transactions + accounts — and questions span multiple tables that
|
|
8
|
+
share a key. NOT for single-table analysis (use sql-analyst), unstructured
|
|
9
|
+
text (use knowledge-graph), or entity-level relationship mapping across free
|
|
10
|
+
text (use knowledge-graph).
|
|
11
11
|
license: MIT
|
|
12
12
|
compatibility: >
|
|
13
13
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
14
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
15
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
14
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
15
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
16
16
|
before invocation.
|
|
17
17
|
metadata:
|
|
18
18
|
author: toolbeltai
|
|
19
19
|
version: "1.0"
|
|
20
|
-
|
|
21
|
-
emoji: "🔀"
|
|
22
|
-
homepage: "https://toolbelt.ai/docs/sql"
|
|
23
|
-
skillKey: "data-blend"
|
|
20
|
+
homepage: "https://toolbelt.ai/docs/sql"
|
|
24
21
|
---
|
|
25
22
|
|
|
26
23
|
Upload multiple tables and run cross-table JOIN queries using Toolbelt MCP tools.
|
package/geo-analyst/SKILL.md
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: geo-analyst
|
|
3
3
|
description: >
|
|
4
|
-
GPU-accelerated geospatial analytics
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
GPU-accelerated geospatial analytics on Toolbelt — distance, point-in-polygon
|
|
5
|
+
containment, nearest-neighbor, track creation, spatial joins. Upload lat/lon
|
|
6
|
+
sensor readings or WKT geometries, then run spatial SQL queries. Use when an
|
|
7
|
+
agent needs to answer geographic questions — how close is X to Y, which points
|
|
8
|
+
fall inside a region, along which route, coverage overlap, or movement tracks
|
|
9
|
+
from raw GPS. NOT for non-spatial tabular analysis (use sql-analyst) or
|
|
10
|
+
document content (use vector-search).
|
|
10
11
|
license: MIT
|
|
11
12
|
compatibility: >
|
|
12
13
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
13
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
14
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
14
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
15
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
15
16
|
before invocation.
|
|
16
17
|
metadata:
|
|
17
18
|
author: toolbeltai
|
|
18
19
|
version: "1.0"
|
|
19
|
-
|
|
20
|
-
emoji: "🌍"
|
|
21
|
-
homepage: "https://toolbelt.ai/docs/geospatial"
|
|
22
|
-
skillKey: "geo-analyst"
|
|
20
|
+
homepage: "https://toolbelt.ai/docs/geospatial"
|
|
23
21
|
---
|
|
24
22
|
|
|
25
23
|
Execute GPU-accelerated geospatial analytics end-to-end using Toolbelt MCP tools.
|
package/knowledge-graph/SKILL.md
CHANGED
|
@@ -1,26 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: knowledge-graph
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
Upload a document; Toolbelt automatically extracts entities (people, orgs,
|
|
5
|
+
places, concepts) and their relationships into a knowledge graph — no schema
|
|
6
|
+
or ontology required. Query the graph with Cypher or natural language to
|
|
7
|
+
trace connections. Use when an agent needs to map who-relates-to-whom, surface
|
|
8
|
+
hidden links across documents, answer multi-hop relationship questions, or
|
|
9
|
+
identify central entities in a corpus. NOT for flat semantic passage retrieval
|
|
10
|
+
(use vector-search) or tabular analytics (use sql-analyst).
|
|
11
11
|
license: MIT
|
|
12
12
|
compatibility: >
|
|
13
13
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
14
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
15
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
14
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
15
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
16
16
|
before invocation.
|
|
17
17
|
metadata:
|
|
18
18
|
author: toolbeltai
|
|
19
19
|
version: "1.0"
|
|
20
|
-
|
|
21
|
-
emoji: "🕸️"
|
|
22
|
-
homepage: "https://toolbelt.ai/docs/knowledge-graph"
|
|
23
|
-
skillKey: "knowledge-graph"
|
|
20
|
+
homepage: "https://toolbelt.ai/docs/knowledge-graph"
|
|
24
21
|
---
|
|
25
22
|
|
|
26
23
|
Extract a knowledge graph from a document and explore it autonomously using
|
|
@@ -1,25 +1,22 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: multi-agent-workspace
|
|
3
3
|
description: >
|
|
4
|
-
Set up a
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
Set up a Toolbelt namespace that multiple agents can share. Uploads a document,
|
|
5
|
+
then emits a connection URL another agent can use to join the same workspace
|
|
6
|
+
without re-ingesting. Use when handing off context between agents or sessions,
|
|
7
|
+
when two agents need to collaborate on the same dataset, or when pre-staging
|
|
8
|
+
data for a downstream agent. NOT needed for single-agent workflows — use
|
|
9
|
+
run-toolbelt instead.
|
|
10
10
|
license: MIT
|
|
11
11
|
compatibility: >
|
|
12
12
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
13
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
14
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
13
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
14
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
15
15
|
before invocation.
|
|
16
16
|
metadata:
|
|
17
17
|
author: toolbeltai
|
|
18
18
|
version: "1.0"
|
|
19
|
-
|
|
20
|
-
emoji: "🤝"
|
|
21
|
-
homepage: "https://toolbelt.ai/docs/multi-agent"
|
|
22
|
-
skillKey: "multi-agent-workspace"
|
|
19
|
+
homepage: "https://toolbelt.ai/docs/multi-agent"
|
|
23
20
|
---
|
|
24
21
|
|
|
25
22
|
Set up a shared Toolbelt workspace and generate collaboration artifacts for a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolbeltai/skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Official Toolbelt skills for Claude Code and MCP agents — run-toolbelt, geo-analyst, knowledge-graph, sql-analyst, vector-search, streaming-analyst, multi-agent-workspace, data-blend.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://toolbelt.ai",
|
package/run-toolbelt/SKILL.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: run-toolbelt
|
|
3
3
|
description: >
|
|
4
|
-
Toolbelt
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
Provision a Toolbelt namespace, ingest a document or Kafka stream, and answer
|
|
5
|
+
a question end-to-end — autonomously, without human steps. Use when an agent
|
|
6
|
+
needs to set up a fresh Toolbelt workspace, add assets from scratch, connect a
|
|
7
|
+
streaming source, or run a complete ingest→query pipeline. NOT for querying
|
|
8
|
+
data that is already ingested — use sql-analyst, vector-search, or
|
|
9
|
+
knowledge-graph for that.
|
|
10
10
|
license: MIT
|
|
11
11
|
compatibility: >
|
|
12
12
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
@@ -16,10 +16,7 @@ compatibility: >
|
|
|
16
16
|
metadata:
|
|
17
17
|
author: toolbeltai
|
|
18
18
|
version: "2.0"
|
|
19
|
-
|
|
20
|
-
emoji: "🧰"
|
|
21
|
-
homepage: "https://toolbelt.ai/docs/mcp"
|
|
22
|
-
skillKey: "run-toolbelt"
|
|
19
|
+
homepage: "https://toolbelt.ai/docs/mcp"
|
|
23
20
|
---
|
|
24
21
|
|
|
25
22
|
Execute Toolbelt end-to-end autonomously using the Toolbelt MCP tools.
|
package/sql-analyst/SKILL.md
CHANGED
|
@@ -1,24 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: sql-analyst
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
Upload a CSV and answer natural-language questions by generating and executing
|
|
5
|
+
SQL. Covers totals, averages, group-by, filtering, and single-table joins on
|
|
6
|
+
tabular data. Use when an agent has structured rows/columns and needs analytical
|
|
7
|
+
answers — trends, breakdowns, comparisons, rankings. NOT for unstructured
|
|
8
|
+
documents (use knowledge-graph or vector-search), lat/lon or WKT data (use
|
|
9
|
+
geo-analyst), live streams (use streaming-analyst), or multi-table JOINs across
|
|
10
|
+
independent datasets (use data-blend).
|
|
9
11
|
license: MIT
|
|
10
12
|
compatibility: >
|
|
11
13
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
12
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
13
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
14
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
15
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
14
16
|
before invocation.
|
|
15
17
|
metadata:
|
|
16
18
|
author: toolbeltai
|
|
17
19
|
version: "1.0"
|
|
18
|
-
|
|
19
|
-
emoji: "📊"
|
|
20
|
-
homepage: "https://toolbelt.ai/docs/sql"
|
|
21
|
-
skillKey: "sql-analyst"
|
|
20
|
+
homepage: "https://toolbelt.ai/docs/sql"
|
|
22
21
|
---
|
|
23
22
|
|
|
24
23
|
Upload tabular data and answer natural language questions about it using
|
|
@@ -1,27 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: streaming-analyst
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
infrastructure code.
|
|
4
|
+
Connect a live Kafka topic (or use built-in simulated data) and run windowed
|
|
5
|
+
aggregations plus standard-deviation anomaly detection on the stream. Use when
|
|
6
|
+
an agent needs to analyze real-time or time-series data — IoT sensor readings,
|
|
7
|
+
event logs, security events, fleet telemetry, transaction feeds — and answer
|
|
8
|
+
questions about rates, trends, and outliers over time windows. NOT for static
|
|
9
|
+
tabular files (use sql-analyst) or document content (use vector-search).
|
|
11
10
|
license: MIT
|
|
12
11
|
compatibility: >
|
|
13
12
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
14
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
15
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
13
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
14
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
16
15
|
before invocation. Kafka parameters are optional — omit them to run with
|
|
17
16
|
simulated stream data.
|
|
18
17
|
metadata:
|
|
19
18
|
author: toolbeltai
|
|
20
19
|
version: "1.0"
|
|
21
|
-
|
|
22
|
-
emoji: "📡"
|
|
23
|
-
homepage: "https://toolbelt.ai/docs/streaming"
|
|
24
|
-
skillKey: "streaming-analyst"
|
|
20
|
+
homepage: "https://toolbelt.ai/docs/streaming"
|
|
25
21
|
---
|
|
26
22
|
|
|
27
23
|
Connect a Kafka topic (or simulate one) and run real-time aggregation and
|
package/vector-search/SKILL.md
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vector-search
|
|
3
3
|
description: >
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
4
|
+
Upload a document and retrieve passages by semantic similarity to a
|
|
5
|
+
natural-language query. Ranks content by meaning, not keyword overlap. Use
|
|
6
|
+
when an agent needs to ground answers in source documents (RAG), find related
|
|
7
|
+
content, retrieve passages by concept, or answer "what does this doc say
|
|
8
|
+
about X" where X isn't a verbatim phrase. NOT for exact keyword/regex search,
|
|
9
|
+
structured table queries (use sql-analyst), or entity-relationship extraction
|
|
10
|
+
(use knowledge-graph).
|
|
10
11
|
license: MIT
|
|
11
12
|
compatibility: >
|
|
12
13
|
Requires a Toolbelt account (provision free at https://toolbelt.ai) and an
|
|
13
|
-
MCP-compatible AI agent (Claude Code, Claude Desktop, or any client
|
|
14
|
-
supports MCP server connections). MCP connection must be pre-established
|
|
14
|
+
MCP-compatible AI agent (Claude Code, Claude Desktop, OpenClaw, or any client
|
|
15
|
+
that supports MCP server connections). MCP connection must be pre-established
|
|
15
16
|
before invocation.
|
|
16
17
|
metadata:
|
|
17
18
|
author: toolbeltai
|
|
18
19
|
version: "1.0"
|
|
19
|
-
|
|
20
|
-
emoji: "🔍"
|
|
21
|
-
homepage: "https://toolbelt.ai/docs/vectors"
|
|
22
|
-
skillKey: "vector-search"
|
|
20
|
+
homepage: "https://toolbelt.ai/docs/vectors"
|
|
23
21
|
---
|
|
24
22
|
|
|
25
23
|
Upload a document and retrieve semantically similar passages using Toolbelt MCP
|