clishop 1.5.4 → 1.5.7

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.
@@ -5,4 +5,4 @@
5
5
  "args": ["-y", "clishop", "--mcp"]
6
6
  }
7
7
  }
8
- }
8
+ }
package/README.md CHANGED
@@ -50,6 +50,16 @@ npm install -g clishop
50
50
 
51
51
  This gives you two commands: `clishop` (the CLI) and `clishop-mcp` (the MCP server for AI agents).
52
52
 
53
+ ### OpenClaw
54
+
55
+ Once the ClawHub package is published, install CLISHOP into an OpenClaw workspace with:
56
+
57
+ ```bash
58
+ openclaw plugins install clawhub:clishop
59
+ ```
60
+
61
+ The bundle exposes the CLISHOP skill under `skills/clishop/SKILL.md` and merges the packaged MCP defaults from `.mcp.json` so OpenClaw can launch `clishop --mcp` automatically.
62
+
53
63
  ### Linux / WSL
54
64
 
55
65
  CLISHOP works out of the box on Linux and WSL. On systems without a native keychain, tokens are stored in a local file (`~/.config/clishop/auth.json`) with restricted permissions.
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.4"}`));
1118
- console.log(chalk4.dim(` Build: ${"2026-04-05T11:19:52.708Z"}`));
1117
+ console.log(chalk4.dim(` npm: v${"1.5.7"}`));
1118
+ console.log(chalk4.dim(` Build: ${"2026-04-06T08:53:16.476Z"}`));
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.4").description(
4264
+ program.name("clishop").version("1.5.7").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
@@ -13813,7 +13813,7 @@ function safeCall(fn) {
13813
13813
  var server = new McpServer(
13814
13814
  {
13815
13815
  name: "clishop",
13816
- version: "1.5.4"
13816
+ version: "1.5.7"
13817
13817
  },
13818
13818
  {
13819
13819
  capabilities: {
@@ -0,0 +1,3 @@
1
+ {
2
+ "hostTargets": ["openclaw"]
3
+ }
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "clishop",
3
- "version": "1.5.4",
3
+ "displayName": "CLISHOP",
4
+ "version": "1.5.7",
4
5
  "mcpName": "io.github.StefDCL/clishop",
5
6
  "description": "CLISHOP — Order anything from your terminal",
6
7
  "main": "dist/index.js",
7
8
  "files": [
8
9
  "dist",
9
- "openclaw",
10
+ "skills",
11
+ ".mcp.json",
12
+ "openclaw.bundle.json",
10
13
  "server.json"
11
14
  ],
12
15
  "bin": {
@@ -30,6 +33,8 @@
30
33
  "cli",
31
34
  "shopping",
32
35
  "ordering",
36
+ "openclaw",
37
+ "clawhub",
33
38
  "mcp",
34
39
  "model-context-protocol",
35
40
  "ai",
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.4",
9
+ "version": "1.5.7",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "clishop",
14
- "version": "1.5.4",
14
+ "version": "1.5.7",
15
15
  "runtime": "node",
16
16
  "args": ["--mcp"],
17
17
  "transport": {
@@ -147,4 +147,4 @@ This skill is designed for autonomous invocation by AI agents via the Model Cont
147
147
  - 📖 [Docs](https://clishop.ai/docs)
148
148
  - 💬 [Discord](https://discord.gg/vwXMbzD4bx)
149
149
  - 🏪 [Dark Store template](https://github.com/DavooxBv2/CLISHOP-DARKSTORE)
150
- - 📦 [npm](https://www.npmjs.com/package/clishop)
150
+ - 📦 [npm](https://www.npmjs.com/package/clishop)