agent-ssh-cli 0.3.0 → 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 +3 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -12,7 +12,7 @@
12
12
  <a href="https://nodejs.org/"><img src="https://img.shields.io/badge/Node.js-%3E%3D18-339933?logo=node.js&logoColor=white" alt="Node.js >=18"></a>
13
13
  <a href="https://www.npmjs.com/"><img src="https://img.shields.io/badge/npm-%3E%3D8-CB3837?logo=npm&logoColor=white" alt="npm >=8"></a>
14
14
  <a href="https://github.com/sleepinginsummer/agent-ssh-cli"><img src="https://img.shields.io/badge/sys-win%2Fmac%2Flinux-0078D6" alt="sys win/mac/linux"></a>
15
- <a href="https://github.com/sleepinginsummer/agent-ssh-cli/releases"><img src="https://img.shields.io/badge/release-v0.3.0-blue" alt="release v0.3.0"></a>
15
+ <a href="https://github.com/sleepinginsummer/agent-ssh-cli/releases"><img src="https://img.shields.io/badge/release-v0.3.1-blue" alt="release v0.3.1"></a>
16
16
  <a href="https://github.com/sleepinginsummer/agent-ssh-cli/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen" alt="PRs welcome"></a>
17
17
  </p>
18
18
 
@@ -162,6 +162,8 @@ agentsshcli exec 密码服务器 --command-file ./script.sh --timeout 60000
162
162
  npm install -g agent-ssh-cli@latest
163
163
  ```
164
164
 
165
+ 卸载:
166
+
165
167
  ```bash
166
168
  npm uninstall -g agent-ssh-cli
167
169
  npm cache clean --force
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-ssh-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "基于 CLI 的 SSH 代理工具,按 ssh-mcp-server 的能力一一映射",
5
5
  "type": "module",
6
6
  "engines": {
@@ -27,10 +27,10 @@
27
27
  "build:native-package": "npm run build:native-bin && node scripts/build-native-package.js"
28
28
  },
29
29
  "optionalDependencies": {
30
- "@agent-ssh-cli/darwin-arm64": "0.3.0",
31
- "@agent-ssh-cli/darwin-x64": "0.3.0",
32
- "@agent-ssh-cli/linux-arm64": "0.3.0",
33
- "@agent-ssh-cli/linux-x64": "0.3.0",
34
- "@agent-ssh-cli/win32-x64": "0.3.0"
30
+ "@agent-ssh-cli/darwin-arm64": "0.3.2",
31
+ "@agent-ssh-cli/darwin-x64": "0.3.2",
32
+ "@agent-ssh-cli/linux-arm64": "0.3.2",
33
+ "@agent-ssh-cli/linux-x64": "0.3.2",
34
+ "@agent-ssh-cli/win32-x64": "0.3.2"
35
35
  }
36
36
  }