clishop 1.5.9 → 1.5.10
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/dist/index.js +3 -3
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/skills/clishop/SKILL.md +18 -0
package/dist/index.js
CHANGED
|
@@ -1114,8 +1114,8 @@ async function runSetupWizard(emailArg, { json = false } = {}) {
|
|
|
1114
1114
|
console.log();
|
|
1115
1115
|
console.log(chalk4.bold.cyan(" W E L C O M E T O C L I S H O P"));
|
|
1116
1116
|
console.log(chalk4.dim(" Order anything from your terminal."));
|
|
1117
|
-
console.log(chalk4.dim(` npm: v${"1.5.
|
|
1118
|
-
console.log(chalk4.dim(` Build: ${"2026-04-06T11:
|
|
1117
|
+
console.log(chalk4.dim(` npm: v${"1.5.10"}`));
|
|
1118
|
+
console.log(chalk4.dim(` Build: ${"2026-04-06T11:38:51.755Z"}`));
|
|
1119
1119
|
console.log();
|
|
1120
1120
|
divider(chalk4.cyan);
|
|
1121
1121
|
console.log();
|
|
@@ -4261,7 +4261,7 @@ function registerDoctorCommand(program2) {
|
|
|
4261
4261
|
|
|
4262
4262
|
// src/index.ts
|
|
4263
4263
|
var program = new Command();
|
|
4264
|
-
program.name("clishop").version("1.5.
|
|
4264
|
+
program.name("clishop").version("1.5.10").description(
|
|
4265
4265
|
chalk16.bold("CLISHOP") + ` \u2014 Order anything from your terminal.
|
|
4266
4266
|
|
|
4267
4267
|
Run 'clishop setup <email>' or 'clishop setup start --email <email> --json' to create your account.
|
package/dist/mcp.js
CHANGED
|
@@ -13815,7 +13815,7 @@ function safeCall(fn) {
|
|
|
13815
13815
|
var server = new McpServer(
|
|
13816
13816
|
{
|
|
13817
13817
|
name: "clishop",
|
|
13818
|
-
version: "1.5.
|
|
13818
|
+
version: "1.5.10"
|
|
13819
13819
|
},
|
|
13820
13820
|
{
|
|
13821
13821
|
capabilities: {
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/DavooxBv2/CLISHOP",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.5.
|
|
9
|
+
"version": "1.5.10",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "clishop",
|
|
14
|
-
"version": "1.5.
|
|
14
|
+
"version": "1.5.10",
|
|
15
15
|
"runtime": "node",
|
|
16
16
|
"args": ["--mcp"],
|
|
17
17
|
"transport": {
|
package/skills/clishop/SKILL.md
CHANGED
|
@@ -67,6 +67,24 @@ Optional fields:
|
|
|
67
67
|
- `instructions`
|
|
68
68
|
- `setDefault`
|
|
69
69
|
|
|
70
|
+
Example `add_address` payload for a US home address in San Francisco:
|
|
71
|
+
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"label": "Home",
|
|
75
|
+
"firstName": "Alex",
|
|
76
|
+
"lastName": "Johnson",
|
|
77
|
+
"line1": "1234 Hayes Street",
|
|
78
|
+
"city": "San Francisco",
|
|
79
|
+
"region": "CA",
|
|
80
|
+
"postalCode": "94117",
|
|
81
|
+
"country": "United States",
|
|
82
|
+
"phone": "+14155550123",
|
|
83
|
+
"instructions": "Leave at front door",
|
|
84
|
+
"setDefault": true
|
|
85
|
+
}
|
|
86
|
+
```
|
|
87
|
+
|
|
70
88
|
## Tools
|
|
71
89
|
|
|
72
90
|
| Tool | Description | Read-only |
|