shopstack 0.3.4 → 0.3.5
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 +5 -5
- package/SKILL.md +3 -3
- package/package.json +1 -1
- package/specs/openapi.json +4 -0
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@ guest restaurant reservations.
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
npm install shopstack@0.3.
|
|
9
|
+
npm install shopstack@0.3.5
|
|
10
10
|
# or
|
|
11
|
-
npm install -g shopstack@0.3.
|
|
11
|
+
npm install -g shopstack@0.3.5
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Node.js 18 or newer is required.
|
|
@@ -18,7 +18,7 @@ WebSocket (Node.js 22 or newer). It reads the authenticated checkout resource
|
|
|
18
18
|
after each notification. Older runtimes, or a failed socket connection, use the
|
|
19
19
|
bounded HTTP update wait. The one-time socket token is never placed in a URL.
|
|
20
20
|
|
|
21
|
-
This preview release pairs `shopstack@0.3.
|
|
21
|
+
This preview release pairs `shopstack@0.3.5` with `shopstack-mcp@0.2.5`.
|
|
22
22
|
Both packages use the `preview` distribution tag. The `latest` versions are
|
|
23
23
|
unchanged. Use the exact versions above to install this release.
|
|
24
24
|
|
|
@@ -79,7 +79,7 @@ Configure any stdio MCP client to run:
|
|
|
79
79
|
"mcpServers": {
|
|
80
80
|
"shopstack": {
|
|
81
81
|
"command": "npx",
|
|
82
|
-
"args": ["-y", "shopstack-mcp@0.2.
|
|
82
|
+
"args": ["-y", "shopstack-mcp@0.2.5"],
|
|
83
83
|
"env": {
|
|
84
84
|
"SHOPSTACK_API_URL": "https://shopstack-release-preview.shopstack.workers.dev/v1",
|
|
85
85
|
"SHOPSTACK_CONFIG_FILE": "/absolute/private/path/shopstack-config.json"
|
|
@@ -110,7 +110,7 @@ one MCP server and three focused skills:
|
|
|
110
110
|
- `shopstack-checkout` for checkout creation and monitoring;
|
|
111
111
|
- `shopstack-onboarding` for verified signup and private local profiles.
|
|
112
112
|
|
|
113
|
-
The plugin pins `shopstack-mcp@0.2.
|
|
113
|
+
The plugin pins `shopstack-mcp@0.2.5`, which installs the matching
|
|
114
114
|
reservation-capable `shopstack` client. Configure the API address
|
|
115
115
|
before starting the plugin or use a profile already bound to that API. The existing top-level
|
|
116
116
|
`SKILL.md` remains in the npm client package for compatibility.
|
package/SKILL.md
CHANGED
|
@@ -19,8 +19,8 @@ chat to fix an environment mismatch.
|
|
|
19
19
|
For the JavaScript client and CLI:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npm install shopstack@0.3.
|
|
23
|
-
npm install -g shopstack@0.3.
|
|
22
|
+
npm install shopstack@0.3.5
|
|
23
|
+
npm install -g shopstack@0.3.5
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
For MCP clients, configure the local stdio server:
|
|
@@ -30,7 +30,7 @@ For MCP clients, configure the local stdio server:
|
|
|
30
30
|
"mcpServers": {
|
|
31
31
|
"shopstack": {
|
|
32
32
|
"command": "npx",
|
|
33
|
-
"args": ["-y", "shopstack-mcp@0.2.
|
|
33
|
+
"args": ["-y", "shopstack-mcp@0.2.5"]
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
}
|
package/package.json
CHANGED