@smithery/cli 3.15.0 → 3.17.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithery/cli",
3
- "version": "3.15.0",
3
+ "version": "3.17.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "homepage": "https://smithery.ai/",
@@ -1,25 +1,5 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- // Skip in CI environments
4
- if (process.env.CI || process.env.SMITHERY_SUPPRESS_POSTINSTALL) {
5
- process.exit(0)
6
- }
7
-
8
- const line = "=".repeat(60)
9
-
10
- console.log(`
11
- ${line}
12
- Smithery CLI installed!
13
- ${line}
14
-
15
- Get started:
16
- smithery --help Show all commands
17
- smithery servers search Browse MCP servers
18
- smithery skills search Browse skills
19
-
20
- For agents: you should install the Smithery skill to learn how to use this CLI:
21
- smithery skills install smithery-ai/cli --agent <agent-name>
22
-
23
- Explore 100K+ tools and skills at https://smithery.ai
24
- ${line}
25
- `)
3
+ // Postinstall is intentionally empty.
4
+ // npm v7+ suppresses postinstall output, so we show the welcome message
5
+ // when users run `smithery` or `npx @smithery/cli` without arguments instead.