@smithery/cli 3.9.0 → 3.10.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.
Files changed (3) hide show
  1. package/README.md +20 -9
  2. package/dist/index.js +272 -271
  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,22 @@ 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 upvote <skill> # Upvote a skill
35
+ smithery skills downvote <skill> # Downvote a skill
36
+
37
+ # Reviews
38
+ smithery skills review list <skill> # List reviews
39
+ smithery skills review add <skill> "text" --up # Add review + vote
40
+ smithery skills review remove <skill> # Remove your review
41
+ smithery skills review upvote <skill> <review-id> # Upvote a review
42
+ smithery skills review downvote <skill> <review-id> # Downvote a review
37
43
  ```
38
44
 
39
- Options for `search`: `--json` for JSON output, `--limit <n>` for max results, `--namespace <ns>` to filter.
40
-
41
45
  ### Namespaces
42
46
 
43
47
  Discover public namespaces on Smithery.
@@ -73,6 +77,7 @@ smithery connect call <id> [args] # Call a tool (format: server/tool-name)
73
77
 
74
78
  ```bash
75
79
  smithery login # Set API key
80
+ smithery login --print-link # Print auth URL only (agent-friendly)
76
81
  smithery dev [entry] # Dev server with hot-reload and tunnel
77
82
  smithery build [entry] # Build for production
78
83
  smithery playground # Open interactive testing UI
@@ -85,10 +90,16 @@ smithery playground # Open interactive testing UI
85
90
  smithery install exa --client cursor
86
91
 
87
92
  # Browse and install skills
88
- smithery skills search "frontend" --json
93
+ smithery skills search "frontend" --json --page 2 # Paginated results
89
94
  smithery skills search --namespace anthropics --json # Filter by namespace
90
95
  smithery skills install anthropics/frontend-design --agent claude-code
91
96
 
97
+ # Review and vote on skills
98
+ smithery skills review list anthropics/frontend-design
99
+ smithery skills review add anthropics/frontend-design "Handles responsive layouts well" --up
100
+ smithery skills review upvote anthropics/frontend-design 550e8400-e29b-41d4-a716-446655440000
101
+ smithery skills upvote anthropics/frontend-design
102
+
92
103
  # Discover namespaces
93
104
  smithery namespace search --has-skills # Find namespaces with skills
94
105