@toolbeltai/skills 0.2.1 → 0.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolbeltai/skills",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Official Toolbelt skills — named /toolbelt-* flows (start, analyze, find, entities, geo, stream, invite) that teach any MCP-capable agent to orchestrate Toolbelt's MCP tools end-to-end.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://toolbelt.ai",
|
package/toolbelt-find/SKILL.md
CHANGED
package/toolbelt-geo/SKILL.md
CHANGED
|
@@ -16,7 +16,7 @@ compatibility: >
|
|
|
16
16
|
before invocation.
|
|
17
17
|
metadata:
|
|
18
18
|
author: toolbeltai
|
|
19
|
-
version: "1.0"
|
|
19
|
+
version: "1.0.0"
|
|
20
20
|
homepage: "https://toolbelt.ai/docs/geospatial"
|
|
21
21
|
---
|
|
22
22
|
|
|
@@ -139,7 +139,7 @@ uploaded asset. Store it as `sensor_table` for use in Phase 3.
|
|
|
139
139
|
|
|
140
140
|
## Phase 3: Run Geospatial Queries
|
|
141
141
|
|
|
142
|
-
Run all three queries using `
|
|
142
|
+
Run all three queries using `toolbelt_sql`. Pass `namespace_id` and `query`
|
|
143
143
|
for each call. Collect results.
|
|
144
144
|
|
|
145
145
|
**Note:** `ST_DISTANCE`, `ST_CONTAINS`, and `ST_MAKELINE` are Kinetica-native geospatial
|
|
@@ -235,5 +235,5 @@ and continue with remaining queries. Only halt on Phase 0–2 failures.
|
|
|
235
235
|
| 0. Verify connection | `toolbelt_list_namespaces` |
|
|
236
236
|
| 1. Resolve namespace | (from Phase 0 result) |
|
|
237
237
|
| 2. Upload sensor data | `toolbelt_save`, `toolbelt_jobs`, `toolbelt_context` |
|
|
238
|
-
| 3. Run geospatial queries | `
|
|
238
|
+
| 3. Run geospatial queries | `toolbelt_sql` × 3 |
|
|
239
239
|
| 4. Emit result | (structured output) |
|
package/toolbelt-invite/SKILL.md
CHANGED
package/toolbelt-start/SKILL.md
CHANGED
|
@@ -15,7 +15,7 @@ compatibility: >
|
|
|
15
15
|
before invocation.
|
|
16
16
|
metadata:
|
|
17
17
|
author: toolbeltai
|
|
18
|
-
version: "2.0"
|
|
18
|
+
version: "2.0.0"
|
|
19
19
|
homepage: "https://toolbelt.ai/docs/mcp"
|
|
20
20
|
---
|
|
21
21
|
|
|
@@ -173,7 +173,7 @@ Call `toolbelt_connect`:
|
|
|
173
173
|
|
|
174
174
|
Omit `extra_options` if `kafka_group_id` was not provided.
|
|
175
175
|
|
|
176
|
-
Verify the table is queryable with `
|
|
176
|
+
Verify the table is queryable with `toolbelt_sql`:
|
|
177
177
|
```json
|
|
178
178
|
{
|
|
179
179
|
"namespace_id": "<namespace_id>",
|
|
@@ -231,5 +231,5 @@ RESULT:
|
|
|
231
231
|
| 1. Resolve namespace | (from Phase 0 result) |
|
|
232
232
|
| 2. Inspect state | `toolbelt_context` |
|
|
233
233
|
| 3. Add document | `toolbelt_save`, `toolbelt_jobs`, `toolbelt_context` |
|
|
234
|
-
| 4. Connect Kafka | `toolbelt_connect`, `
|
|
234
|
+
| 4. Connect Kafka | `toolbelt_connect`, `toolbelt_sql` |
|
|
235
235
|
| 5. Ask a question | `toolbelt_search` |
|
package/toolbelt-stream/SKILL.md
CHANGED
|
@@ -16,7 +16,7 @@ compatibility: >
|
|
|
16
16
|
simulated stream data.
|
|
17
17
|
metadata:
|
|
18
18
|
author: toolbeltai
|
|
19
|
-
version: "1.0"
|
|
19
|
+
version: "1.0.0"
|
|
20
20
|
homepage: "https://toolbelt.ai/docs/streaming"
|
|
21
21
|
---
|
|
22
22
|
|
|
@@ -181,7 +181,7 @@ Call `toolbelt_context` to get the table name. Store as `stream_table`.
|
|
|
181
181
|
|
|
182
182
|
## Phase 3: Confirm Data Arrival
|
|
183
183
|
|
|
184
|
-
Call `
|
|
184
|
+
Call `toolbelt_sql` to verify the stream table is queryable and report
|
|
185
185
|
the initial row count:
|
|
186
186
|
|
|
187
187
|
```sql
|
|
@@ -209,7 +209,7 @@ Record `final_row_count`. If `final_row_count > initial_row_count`, set
|
|
|
209
209
|
|
|
210
210
|
## Phase 4: Aggregation Queries
|
|
211
211
|
|
|
212
|
-
Run the following aggregation queries via `
|
|
212
|
+
Run the following aggregation queries via `toolbelt_sql`. Substitute
|
|
213
213
|
`<stream_table>` with the resolved table name throughout.
|
|
214
214
|
|
|
215
215
|
### Query 1 — Per-sensor stats
|
|
@@ -264,7 +264,7 @@ Record `window_rows` (number of rows returned).
|
|
|
264
264
|
## Phase 5: Anomaly Detection
|
|
265
265
|
|
|
266
266
|
Detect readings that deviate more than `anomaly_threshold` standard deviations
|
|
267
|
-
from the per-sensor mean. Run via `
|
|
267
|
+
from the per-sensor mean. Run via `toolbelt_sql`:
|
|
268
268
|
|
|
269
269
|
```sql
|
|
270
270
|
SELECT
|
|
@@ -341,7 +341,7 @@ section and continue. Only halt on Phase 0–2 failures.
|
|
|
341
341
|
| 0. Verify connection | `toolbelt_list_namespaces` |
|
|
342
342
|
| 1. Resolve namespace | (from Phase 0 result) |
|
|
343
343
|
| 2. Connect stream | `toolbelt_connect` (Kafka) or `toolbelt_save` + `toolbelt_jobs` + `toolbelt_context` (simulated) |
|
|
344
|
-
| 3. Confirm data arrival | `
|
|
345
|
-
| 4. Aggregation queries | `
|
|
346
|
-
| 5. Anomaly detection | `
|
|
344
|
+
| 3. Confirm data arrival | `toolbelt_sql` × 1–2 |
|
|
345
|
+
| 4. Aggregation queries | `toolbelt_sql` × 2 |
|
|
346
|
+
| 5. Anomaly detection | `toolbelt_sql` × 1 |
|
|
347
347
|
| 6. Emit result | (structured output) |
|