@zokizuan/satori-cli 0.3.1 → 0.3.2

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.
Files changed (2) hide show
  1. package/README.md +22 -27
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,54 +1,49 @@
1
1
  # @zokizuan/satori-cli
2
2
 
3
- Shell CLI for Satori installation, skill packaging, and direct tool invocation without a resident MCP client.
3
+ Shell CLI for installing Satori MCP config, copying first-party skills, checking setup, and calling Satori tools without a resident MCP client.
4
4
 
5
- ## What It Does
6
-
7
- - installs and removes Satori MCP client config for supported clients
8
- - copies packaged first-party skills:
9
- - `satori-search`
10
- - `satori-navigation`
11
- - `satori-indexing`
12
- - starts a local stdio session against `@zokizuan/satori-mcp` for direct shell workflows
13
-
14
- ## Install / Uninstall
5
+ ## Install Satori for a Client
15
6
 
16
7
  ```bash
17
- npx -y @zokizuan/satori-cli@0.3.1 install --client codex
18
- npx -y @zokizuan/satori-cli@0.3.1 install --client claude
19
- npx -y @zokizuan/satori-cli@0.3.1 install --client all --dry-run
20
- npx -y @zokizuan/satori-cli@0.3.1 uninstall --client codex
21
- npx -y @zokizuan/satori-cli@0.3.1 doctor
8
+ npx -y @zokizuan/satori-cli@0.3.2 install --client codex
9
+ npx -y @zokizuan/satori-cli@0.3.2 install --client claude
10
+ npx -y @zokizuan/satori-cli@0.3.2 install --client all --dry-run
11
+ npx -y @zokizuan/satori-cli@0.3.2 uninstall --client codex
12
+ npx -y @zokizuan/satori-cli@0.3.2 doctor
22
13
  ```
23
14
 
24
- Managed install writes MCP config that launches:
15
+ Managed installs write config that launches:
25
16
 
26
17
  ```toml
27
18
  [mcp_servers.satori]
28
19
  command = "npx"
29
- args = ["-y", "@zokizuan/satori-mcp@4.9.1"]
20
+ args = ["-y", "@zokizuan/satori-mcp@4.10.1"]
30
21
  startup_timeout_ms = 180000
31
22
  ```
32
23
 
33
- ## Commands
24
+ The installer only manages Satori-owned config and skills:
25
+
26
+ - `satori-search`
27
+ - `satori-navigation`
28
+ - `satori-indexing`
29
+
30
+ ## Direct Tool Calls
34
31
 
35
32
  ```bash
36
- satori-cli doctor
37
33
  satori-cli tools list
38
- satori-cli tool call <toolName> --args-json '{"path":"/abs/repo","query":"auth"}'
39
- satori-cli tool call <toolName> --args-file ./args.json
40
- satori-cli tool call <toolName> --args-json @-
41
- satori-cli <toolName> [schema-subset flags]
34
+ satori-cli tool call search_codebase --args-json '{"path":"/abs/repo","query":"auth flow"}'
35
+ satori-cli tool call search_codebase --args-file ./args.json
36
+ satori-cli tool call search_codebase --args-json @-
37
+ satori-cli search_codebase --path /abs/repo --query "auth flow"
42
38
  ```
43
39
 
44
- Global flags (`--startup-timeout-ms`, `--call-timeout-ms`, `--format`, `--debug`) must appear before the command token.
40
+ Global flags such as `--startup-timeout-ms`, `--call-timeout-ms`, `--format`, and `--debug` must appear before the command token.
45
41
 
46
- `doctor` checks local setup without starting an MCP client: Node version, npm package visibility, provider env, and Milvus env.
42
+ `doctor` checks Node, package visibility, provider env, and Milvus env without starting an MCP client.
47
43
 
48
44
  ## Development
49
45
 
50
46
  ```bash
51
47
  pnpm --filter @zokizuan/satori-cli build
52
48
  pnpm --filter @zokizuan/satori-cli test
53
- pnpm --filter @zokizuan/satori-cli release:smoke
54
49
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zokizuan/satori-cli",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
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.9.1"
13
+ "@zokizuan/satori-mcp": "4.10.1"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^20.0.0",