rcwctl 0.1.3 → 0.1.5
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/README.md +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -40,4 +40,4 @@ MCP 客户端可以直接用 `npx` 启动 stdio MCP 服务器,不需要自己
|
|
|
40
40
|
}
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
MCP 进程内存保存远控 session 和后台传输任务状态,不读写普通 CLI 的本地 session
|
|
43
|
+
MCP 进程内存保存远控 session 和后台传输任务状态,不读写普通 CLI 的本地 session 文件。`exec` 默认远端运行上限为 24 小时,单次 tool call 默认等待 90 秒;未完成时返回 server-owned `task_id`,后续用 `exec_status` 查询或 `exec_cancel` 取消。agent 发送或接收文件使用 `upload` / `download` 路径型工具;文件主体走流式 WebSocket binary frame,不走 base64 参数。`upload` / `download` 默认等待 60 秒,未完成就返回 MCP 进程内 `task_id`,后续用 `transfer_status` 查询。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rcwctl",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Meta package for the Remote Control for Windows CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"rcwctl": "bin/rcwctl.js"
|
|
17
17
|
},
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"rcwctl-darwin-arm64": "0.1.
|
|
20
|
-
"rcwctl-darwin-x64": "0.1.
|
|
21
|
-
"rcwctl-linux-arm64": "0.1.
|
|
22
|
-
"rcwctl-linux-x64": "0.1.
|
|
23
|
-
"rcwctl-windows-arm64": "0.1.
|
|
24
|
-
"rcwctl-win32-x64": "0.1.
|
|
19
|
+
"rcwctl-darwin-arm64": "0.1.5",
|
|
20
|
+
"rcwctl-darwin-x64": "0.1.5",
|
|
21
|
+
"rcwctl-linux-arm64": "0.1.5",
|
|
22
|
+
"rcwctl-linux-x64": "0.1.5",
|
|
23
|
+
"rcwctl-windows-arm64": "0.1.5",
|
|
24
|
+
"rcwctl-win32-x64": "0.1.5"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"test": "node --check bin/rcwctl.js && node scripts/check.js",
|