@smithery/cli 3.8.2 → 3.9.1

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 (3) hide show
  1. package/README.md +13 -9
  2. package/dist/index.js +271 -270
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -7,7 +7,6 @@ CLI for installing MCP servers and managing cloud connections via [Smithery](htt
7
7
  ```bash
8
8
  npm install -g @smithery/cli
9
9
  ```
10
-
11
10
  Requires Node.js 20+.
12
11
 
13
12
  ## Commands
@@ -27,17 +26,16 @@ Options: `--client <name>` to skip client selection, `--config <json>` to provid
27
26
 
28
27
  ### Skills
29
28
 
30
- Browse and install reusable prompt-based skills from the [Smithery Skills Registry](https://smithery.ai/skills). Installation uses the [Vercel Labs skills CLI](https://github.com/vercel-labs/skills).
29
+ Browse and install reusable prompt-based skills from the [Smithery Skills Registry](https://smithery.ai/skills).
31
30
 
32
31
  ```bash
33
- smithery skills search [query] # Interactive skill search and browsing
34
- smithery skills install <namespace/slug> --agent <name> # Install a skill
35
- smithery skills install <skill> --agent <name> --global # Install globally
36
- smithery skills agents # List available agents
32
+ smithery skills search [query] # Search skills
33
+ smithery skills install <skill> --agent <name> # Install a skill
34
+ smithery skills reviews <skill> # View reviews
35
+ smithery skills review <skill> "Handles edge cases well, good error messages"
36
+ smithery skills vote <skill> <id> --up # Vote on a review
37
37
  ```
38
38
 
39
- Options for `search`: `--json` for JSON output, `--limit <n>` for max results, `--namespace <ns>` to filter.
40
-
41
39
  ### Namespaces
42
40
 
43
41
  Discover public namespaces on Smithery.
@@ -73,6 +71,7 @@ smithery connect call <id> [args] # Call a tool (format: server/tool-name)
73
71
 
74
72
  ```bash
75
73
  smithery login # Set API key
74
+ smithery login --print-link # Print auth URL only (agent-friendly)
76
75
  smithery dev [entry] # Dev server with hot-reload and tunnel
77
76
  smithery build [entry] # Build for production
78
77
  smithery playground # Open interactive testing UI
@@ -85,10 +84,15 @@ smithery playground # Open interactive testing UI
85
84
  smithery install exa --client cursor
86
85
 
87
86
  # Browse and install skills
88
- smithery skills search "frontend" --json
87
+ smithery skills search "frontend" --json --page 2 # Paginated results
89
88
  smithery skills search --namespace anthropics --json # Filter by namespace
90
89
  smithery skills install anthropics/frontend-design --agent claude-code
91
90
 
91
+ # Review skills
92
+ smithery skills reviews anthropics/frontend-design # View reviews for a skill
93
+ smithery skills review anthropics/frontend-design "Handles responsive layouts and accessibility well. Saved hours on component scaffolding."
94
+ smithery skills vote anthropics/frontend-design 550e8400-e29b-41d4-a716-446655440000 --up
95
+
92
96
  # Discover namespaces
93
97
  smithery namespace search --has-skills # Find namespaces with skills
94
98