autowonder 0.2.117 → 0.2.119
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 +6 -6
- package/bin/cli.js +21 -5
- package/package.json +1 -1
- package/vendor/autowonder-daemon-darwin-amd64 +0 -0
- package/vendor/autowonder-daemon-darwin-arm64 +0 -0
- package/vendor/autowonder-daemon-linux-amd64 +0 -0
- package/vendor/autowonder-daemon-linux-arm64 +0 -0
- package/vendor/autowonder-daemon-win32-amd64.exe +0 -0
- package/vendor/autowonder-daemon-win32-arm64.exe +0 -0
package/README.md
CHANGED
|
@@ -6,13 +6,13 @@ AutoWonder 本地 agent runtime。安装后启动 daemon,持续轮询本地 as
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Qoder CLI(模型使用 provider model ID;Context Window 使用固定档位)
|
|
9
|
-
npx -y autowonder@0.2.
|
|
9
|
+
npx -y autowonder@0.2.119 connect --ws-url <wss-endpoint> --token <executor-token> --executor-id <executor-id> --provider qoder --model qmodel_latest --reasoning-effort medium --context-window 260000
|
|
10
10
|
|
|
11
11
|
# Claude Code
|
|
12
|
-
npx -y autowonder@0.2.
|
|
12
|
+
npx -y autowonder@0.2.119 connect --ws-url <wss-endpoint> --token <executor-token> --executor-id <executor-id> --provider claude
|
|
13
13
|
|
|
14
14
|
# Codex CLI
|
|
15
|
-
npx -y autowonder@0.2.
|
|
15
|
+
npx -y autowonder@0.2.119 connect --ws-url <wss-endpoint> --token <executor-token> --executor-id <executor-id> --provider codex --model gpt-5.5 --reasoning-effort medium
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
`connect` 会安装当前 npm 包内置的 daemon,并使用页面生成的 WebSocket endpoint、Token 和执行器 ID 建立连接。选择 Qoder 时需要 Node.js 20+;runtime 会在缺少 `qodercli` 时自动通过 npm 安装,并在尚未登录时打开 Qoder 浏览器登录。Claude Code 和 Codex CLI 仍需提前安装并登录。runtime 会继承当前用户的 HOME、环境变量和 CLI 登录状态。
|
|
@@ -57,14 +57,14 @@ mv "$queue/.assignment.tmp" "$queue/assignment.json"
|
|
|
57
57
|
也可以直接提交到本地 API:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx -y autowonder@0.2.
|
|
60
|
+
npx -y autowonder@0.2.119 dispatch ./assignment.json
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
## 管理 daemon
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
npx -y autowonder@0.2.
|
|
67
|
-
npx -y autowonder@0.2.
|
|
66
|
+
npx -y autowonder@0.2.119 status
|
|
67
|
+
npx -y autowonder@0.2.119 stop
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
默认 API 是 `http://127.0.0.1:34989`,日志位于 `~/.autowonder/daemon.log`。npm 包不包含任何 agent、MCP 或服务端凭证。
|
package/bin/cli.js
CHANGED
|
@@ -13,7 +13,10 @@ const VERSION = require("../package.json").version;
|
|
|
13
13
|
const AUTOWONDER_HOME = path.join(os.homedir(), ".autowonder");
|
|
14
14
|
const BIN_DIR = path.join(AUTOWONDER_HOME, "bin");
|
|
15
15
|
function daemonBinPath() {
|
|
16
|
-
|
|
16
|
+
if (process.platform === "win32") {
|
|
17
|
+
return path.join(BIN_DIR, `v${VERSION}`, "autowonder-daemon.exe");
|
|
18
|
+
}
|
|
19
|
+
return path.join(BIN_DIR, "autowonder-daemon");
|
|
17
20
|
}
|
|
18
21
|
const DAEMON_BIN = daemonBinPath();
|
|
19
22
|
const CONFIG_PATH = path.join(AUTOWONDER_HOME, "config.json");
|
|
@@ -99,11 +102,22 @@ function qoderAuthenticated(executable) {
|
|
|
99
102
|
|
|
100
103
|
function installQoderCLI() {
|
|
101
104
|
log("Qoder CLI is not installed. Installing @qoder-ai/qodercli...");
|
|
102
|
-
const
|
|
105
|
+
const args = [
|
|
103
106
|
"install", "--prefix", MANAGED_QODER_DIR, "@qoder-ai/qodercli@latest", "--no-audit", "--no-fund",
|
|
104
|
-
]
|
|
107
|
+
];
|
|
108
|
+
// npm is a .cmd shim on Windows. When launched by npx, npm_execpath points
|
|
109
|
+
// at npm-cli.js, which Node can execute directly without cmd.exe quoting.
|
|
110
|
+
const runNpm = (npmArgs) => IS_WIN32 && process.env.npm_execpath
|
|
111
|
+
? spawnSync(process.execPath, [process.env.npm_execpath, ...npmArgs], { stdio: "inherit" })
|
|
112
|
+
: spawnSync("npm", npmArgs, { stdio: "inherit" });
|
|
113
|
+
let result = runNpm(args);
|
|
114
|
+
if (result.status !== 0 && IS_WIN32) {
|
|
115
|
+
log("Default npm registry failed; retrying Qoder CLI installation with npmmirror...");
|
|
116
|
+
result = runNpm([...args, "--registry", "https://registry.npmmirror.com"]);
|
|
117
|
+
}
|
|
105
118
|
if (result.status !== 0) {
|
|
106
|
-
error(`
|
|
119
|
+
const detail = result.error?.message || (result.signal ? `signal ${result.signal}` : `exit status ${result.status}`);
|
|
120
|
+
error(`Failed to install Qoder CLI into ${MANAGED_QODER_DIR}: ${detail}`);
|
|
107
121
|
return "";
|
|
108
122
|
}
|
|
109
123
|
const executable = findExecutable("qodercli");
|
|
@@ -484,7 +498,9 @@ async function cmdConnect(args) {
|
|
|
484
498
|
if (provider === "qoder" && !(await ensureQoderReady())) process.exit(1);
|
|
485
499
|
|
|
486
500
|
// A version-pinned npx command must always run the binary bundled with that package.
|
|
487
|
-
|
|
501
|
+
// Windows locks a running .exe. Its versioned path is immutable, so another
|
|
502
|
+
// Executor using the same package can safely reuse it instead of replacing it.
|
|
503
|
+
const installed = await installBinary({ force: !IS_WIN32 });
|
|
488
504
|
if (!installed) process.exit(1);
|
|
489
505
|
|
|
490
506
|
const hasProviderSettings = Boolean(flags.model || flags["reasoning-effort"]);
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|