@ultracart/bq-skill 0.1.2 → 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 +18 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -38,10 +38,28 @@ UltraCart streams e-commerce data (orders, customers, items, analytics, etc.) in
|
|
|
38
38
|
|
|
39
39
|
## Installation
|
|
40
40
|
|
|
41
|
+
### Global install (recommended)
|
|
42
|
+
|
|
41
43
|
```bash
|
|
42
44
|
npm install -g @ultracart/bq-skill
|
|
43
45
|
```
|
|
44
46
|
|
|
47
|
+
This makes `uc-bq` available as a command everywhere. All examples in this README assume a global install.
|
|
48
|
+
|
|
49
|
+
### Local install
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
npm install @ultracart/bq-skill
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
With a local install, prefix commands with `npx`:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npx uc-bq init
|
|
59
|
+
npx uc-bq schema --list
|
|
60
|
+
npx uc-bq run revenue-by-category
|
|
61
|
+
```
|
|
62
|
+
|
|
45
63
|
All LLM provider SDKs (Anthropic, OpenAI, Google Gemini, AWS Bedrock) are bundled — no extra installs needed.
|
|
46
64
|
|
|
47
65
|
## Authentication
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultracart/bq-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "UltraCart BigQuery reporting skill for Claude Code — CLI + skill prompt for creating and replaying e-commerce reports",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"author": "UltraCart",
|
|
28
28
|
"license": "Apache-2.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@anthropic-ai/sdk": "^0.
|
|
30
|
+
"@anthropic-ai/sdk": "^0.85.0",
|
|
31
31
|
"@aws-sdk/client-bedrock-runtime": "^3.0.0",
|
|
32
32
|
"@google-cloud/bigquery": "^8.0.0",
|
|
33
33
|
"@google/generative-ai": "^0.24.0",
|