@zokizuan/satori-cli 0.1.1 → 0.2.0

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 CHANGED
@@ -14,10 +14,10 @@ Shell CLI for Satori installation, skill packaging, and direct tool invocation w
14
14
  ## Install / Uninstall
15
15
 
16
16
  ```bash
17
- npx -y @zokizuan/satori-cli@0.1.1 install --client codex
18
- npx -y @zokizuan/satori-cli@0.1.1 install --client claude
19
- npx -y @zokizuan/satori-cli@0.1.1 install --client all --dry-run
20
- npx -y @zokizuan/satori-cli@0.1.1 uninstall --client codex
17
+ npx -y @zokizuan/satori-cli@0.2.0 install --client codex
18
+ npx -y @zokizuan/satori-cli@0.2.0 install --client claude
19
+ npx -y @zokizuan/satori-cli@0.2.0 install --client all --dry-run
20
+ npx -y @zokizuan/satori-cli@0.2.0 uninstall --client codex
21
21
  ```
22
22
 
23
23
  Managed install writes MCP config that launches:
@@ -25,7 +25,7 @@ Managed install writes MCP config that launches:
25
25
  ```toml
26
26
  [mcp_servers.satori]
27
27
  command = "npx"
28
- args = ["-y", "@zokizuan/satori-mcp@4.4.1"]
28
+ args = ["-y", "@zokizuan/satori-mcp@4.8.0"]
29
29
  startup_timeout_ms = 180000
30
30
  ```
31
31
 
@@ -54,7 +54,7 @@ function assertPublishedVersion(packageName, version, ownerPackageName, ownerPac
54
54
  stdio: ["ignore", "pipe", "pipe"],
55
55
  });
56
56
  }
57
- catch (error) {
57
+ catch {
58
58
  if (relation === "self") {
59
59
  throw new CliError("E_USAGE", `Cannot install ${ownerPackageName}@${ownerPackageVersion} because that package version is not published on npm. Publish ${ownerPackageName}@${ownerPackageVersion} first or use a local dev server config instead.`, 2);
60
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zokizuan/satori-cli",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "description": "Shell CLI for Satori MCP installation and skill-based workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@modelcontextprotocol/sdk": "^1.12.1",
13
- "@zokizuan/satori-mcp": "4.4.1"
13
+ "@zokizuan/satori-mcp": "4.8.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^20.0.0",