clawmoney 0.15.55 → 0.15.57

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.
@@ -11,7 +11,6 @@ import { setupCommand } from "./setup.js";
11
11
  import { API_PRICES, PLATFORM_FEE } from "../relay/pricing.js";
12
12
  import { hasClaudeFingerprint, bootstrapClaudeFingerprint, } from "../relay/upstream/claude-bootstrap.js";
13
13
  import { hasGeminiFingerprint, bootstrapGeminiFingerprint, } from "../relay/upstream/gemini-bootstrap.js";
14
- import { hasCodexFingerprint, bootstrapCodexFingerprint, } from "../relay/upstream/codex-bootstrap.js";
15
14
  // ── Per-cli_type model catalogs ──
16
15
  //
17
16
  // `RECOMMENDED_MODELS` is what gets registered when the user picks "all
@@ -207,94 +206,42 @@ export async function relaySetupCommand() {
207
206
  process.exit(0);
208
207
  }
209
208
  const selectedClis = familyChoice;
210
- // Per-cli inline fingerprint bootstrap helper. Called from Step 3
211
- // right after the "cli: N models" line so the capture flow is
212
- // visually grouped with its owning cli family.
213
- //
214
- // The daemon needs a fingerprint file per cli_type
215
- // (~/.clawmoney/<cli>-fingerprint.json) to mimic the real CLI's
216
- // device identity on every upstream request. Without it, the
217
- // daemon fails at execution time and buyers see 502s. We
218
- // previously required a manual two-terminal capture dance; now
219
- // it's inlined into the wizard.
220
- //
221
- // claude uses a plain HTTP proxy (in-process TS), same for gemini.
222
- // codex uses the existing mjs capture script via subprocess
223
- // because Codex CLI 0.118+ talks WebSocket.
224
- //
225
- // antigravity is handled separately via `clawmoney antigravity
226
- // login` and doesn't need a fingerprint file.
227
- const runCliBootstrap = async (cli) => {
228
- let startLabel;
229
- let run;
230
- let check;
231
- if (cli === "claude") {
232
- if (hasClaudeFingerprint())
233
- return;
234
- startLabel = "Capturing Claude fingerprint (runs `claude -p hi` once, ~5-15s)";
235
- check = hasClaudeFingerprint;
236
- run = async () => {
237
- const fp = await bootstrapClaudeFingerprint({ timeoutMs: 45_000 });
238
- return `device=${fp.device_id.slice(0, 8)}… cc_version=${fp.cc_version || "?"}`;
239
- };
240
- }
241
- else if (cli === "gemini") {
242
- if (hasGeminiFingerprint())
243
- return;
244
- startLabel = "Capturing Gemini fingerprint (runs `gemini -p hi` once, ~10-20s)";
245
- check = hasGeminiFingerprint;
246
- run = async () => {
247
- const fp = await bootstrapGeminiFingerprint({ timeoutMs: 60_000 });
248
- return `project=${fp.project_id} cli_version=${fp.cli_version}`;
249
- };
250
- }
251
- else if (cli === "codex") {
252
- if (hasCodexFingerprint())
253
- return;
254
- startLabel = "Capturing Codex fingerprint (runs `codex -p hi` once, ~15-30s)";
255
- check = hasCodexFingerprint;
256
- run = async () => {
257
- await bootstrapCodexFingerprint({ timeoutMs: 60_000 });
258
- return "from chatgpt.com WS handshake";
259
- };
260
- }
261
- else {
262
- // antigravity or unknown — skip, no fingerprint needed.
263
- return;
264
- }
265
- // In-place line replacement: print start line without a newline,
266
- // then clear it on completion and print the result over the top.
267
- // Uses readline.cursorTo/clearLine for terminal portability.
268
- const startLine = `${chalk.gray("◇")} ${chalk.bold(startLabel)}`;
269
- process.stdout.write(startLine);
270
- const clearStartLine = () => {
271
- try {
272
- readline.cursorTo(process.stdout, 0);
273
- readline.clearLine(process.stdout, 0);
274
- }
275
- catch {
276
- process.stdout.write("\n");
277
- }
278
- };
279
- try {
280
- const summary = await run();
281
- clearStartLine();
282
- process.stdout.write(`${chalk.green("◆")} ${chalk.bold(cli)} fingerprint captured ` +
283
- chalk.dim(`(${summary})`) +
284
- "\n");
285
- }
286
- catch (err) {
287
- clearStartLine();
288
- process.stdout.write(`${chalk.yellow("⚠")} ${chalk.bold(cli)} fingerprint capture failed: ${err.message}\n`);
289
- log.message(chalk.dim(`${cli} providers will be registered but the daemon won't be able ` +
290
- "to serve them until the fingerprint is bootstrapped. " +
291
- `Make sure \`${cli}\` is installed and logged in, then re-run setup.`));
209
+ const runAllBootstraps = async () => {
210
+ const tasks = [];
211
+ if (selectedClis.includes("claude") && !hasClaudeFingerprint()) {
212
+ tasks.push(bootstrapClaudeFingerprint({ timeoutMs: 45_000 })
213
+ .then((fp) => ({
214
+ cli: "claude",
215
+ ok: true,
216
+ summary: `device=${fp.device_id.slice(0, 8)}… cc_version=${fp.cc_version || "?"}`,
217
+ }))
218
+ .catch((err) => ({
219
+ cli: "claude",
220
+ ok: false,
221
+ error: err.message,
222
+ })));
292
223
  }
293
- // Defensive: if the bootstrap somehow resolved without writing
294
- // the file, warn so the user isn't surprised later.
295
- if (!check()) {
296
- log.message(chalk.dim(`(${cli} fingerprint file still missing daemon preflight will fail for this cli)`));
224
+ if (selectedClis.includes("gemini") && !hasGeminiFingerprint()) {
225
+ // Shorter timeout on gemini recent CLI versions are flaky
226
+ // under our subprocess-intercept approach. 25s is enough for
227
+ // a working capture; beyond that we fall through to the
228
+ // manual instruction path cleanly.
229
+ tasks.push(bootstrapGeminiFingerprint({ timeoutMs: 25_000 })
230
+ .then((fp) => ({
231
+ cli: "gemini",
232
+ ok: true,
233
+ summary: `project=${fp.project_id} cli_version=${fp.cli_version}`,
234
+ }))
235
+ .catch((err) => ({
236
+ cli: "gemini",
237
+ ok: false,
238
+ error: err.message,
239
+ })));
297
240
  }
241
+ // Codex intentionally omitted — codex-api.ts has safe defaults.
242
+ if (tasks.length === 0)
243
+ return [];
244
+ return Promise.all(tasks);
298
245
  };
299
246
  const registrations = [];
300
247
  for (const cli of selectedClis) {
@@ -305,10 +252,6 @@ export async function relaySetupCommand() {
305
252
  continue;
306
253
  }
307
254
  log.success(`${chalk.bold(cli)}: ${recommended.length} models ${chalk.dim("— " + recommended.join(", "))}`);
308
- // Bootstrap the fingerprint for this cli right after its model
309
- // line so the ◆ "fingerprint captured" message sits visually
310
- // under its owning family (claude / codex / gemini / antigravity).
311
- await runCliBootstrap(cli);
312
255
  for (const model of recommended) {
313
256
  const p = API_PRICES[model];
314
257
  registrations.push({
@@ -323,6 +266,55 @@ export async function relaySetupCommand() {
323
266
  cancel("No models selected — nothing to register");
324
267
  process.exit(0);
325
268
  }
269
+ // ── Step 3b: parallel fingerprint bootstrap for selected clis ──
270
+ //
271
+ // One "Configuring providers..." line that gets overwritten with
272
+ // the consolidated result. Claude and gemini run concurrently;
273
+ // codex is skipped (defaults OK); antigravity doesn't use a
274
+ // fingerprint file.
275
+ const startLine = `${chalk.gray("◇")} Configuring providers`;
276
+ process.stdout.write(startLine);
277
+ const tickEvery = 500;
278
+ const ticker = setInterval(() => {
279
+ process.stdout.write(chalk.dim("."));
280
+ }, tickEvery);
281
+ const results = await runAllBootstraps();
282
+ clearInterval(ticker);
283
+ try {
284
+ readline.cursorTo(process.stdout, 0);
285
+ readline.clearLine(process.stdout, 0);
286
+ }
287
+ catch {
288
+ process.stdout.write("\n");
289
+ }
290
+ if (results.length === 0) {
291
+ // No bootstraps needed — everything was already in place.
292
+ process.stdout.write(`${chalk.green("◆")} Providers configured ${chalk.dim("(fingerprints already in place)")}\n`);
293
+ }
294
+ else {
295
+ const okCount = results.filter((r) => r.ok).length;
296
+ const failCount = results.length - okCount;
297
+ if (failCount === 0) {
298
+ process.stdout.write(`${chalk.green("◆")} Providers configured ` +
299
+ chalk.dim(`(${okCount} fingerprint${okCount === 1 ? "" : "s"} captured: ${results
300
+ .map((r) => r.cli)
301
+ .join(", ")})`) +
302
+ "\n");
303
+ }
304
+ else {
305
+ process.stdout.write(`${chalk.yellow("⚠")} Providers configured with warnings ` +
306
+ chalk.dim(`(${okCount} ok / ${failCount} failed)`) +
307
+ "\n");
308
+ for (const r of results) {
309
+ if (r.ok)
310
+ continue;
311
+ log.warn(`${chalk.bold(r.cli)} fingerprint capture failed: ${r.error ?? "unknown"}`);
312
+ log.message(chalk.dim(`${r.cli} providers will be registered but the daemon won't serve them until you ` +
313
+ `run \`node $(npm root -g)/clawmoney/scripts/capture-${r.cli}-request.mjs\` in one terminal ` +
314
+ `and \`<CLI env vars> ${r.cli} -p hi\` in another.`));
315
+ }
316
+ }
317
+ }
326
318
  // ── Step 4: per-provider daily quota share ──
327
319
  //
328
320
  // We deliberately don't show USD earnings projections in this prompt
@@ -1,25 +1,15 @@
1
1
  /**
2
2
  * Programmatic Gemini fingerprint capture.
3
3
  *
4
- * Mirrors scripts/capture-gemini-request.mjs but runs inline so the
5
- * setup wizard can bootstrap ~/.clawmoney/gemini-fingerprint.json
6
- * without the two-terminal dance.
4
+ * Spawns the existing scripts/capture-gemini-request.mjs as a
5
+ * subprocess and runs `gemini -p hi` against it, rather than
6
+ * reimplementing the proxy in TypeScript. The TS port I tried
7
+ * first timed out at 25s even though the mjs script captures in
8
+ * ~4s on the same machine — the mjs path is proven and reused
9
+ * code, so keep the pattern consistent with codex-bootstrap.
7
10
  *
8
- * Flow:
9
- * 1. Listen on a random localhost port.
10
- * 2. Spawn `gemini -p "hi"` with CODE_ASSIST_ENDPOINT pointing at us.
11
- * 3. When the first POST hits a /v1internal:generateContent (or
12
- * similar) path, extract project_id / user_agent / cli_version /
13
- * x_goog_api_client from the body + headers, persist to
14
- * ~/.clawmoney/gemini-fingerprint.json, and forward the request
15
- * to cloudcode-pa.googleapis.com so the gemini CLI still sees a
16
- * valid response.
17
- * 4. Clean up proxy server + gemini subprocess.
18
- *
19
- * Note: the :loadCodeAssist bootstrap request that Gemini CLI fires
20
- * first carries only `{metadata}` without a project — we skip it and
21
- * wait for a subsequent v1internal request that actually carries a
22
- * project field. Mirrors the mjs script's extractFingerprint guard.
11
+ * Note: the mjs script hardcodes port 8789. A collision surfaces
12
+ * as a spawn error we forward to the caller.
23
13
  */
24
14
  export interface GeminiFingerprint {
25
15
  project_id: string;
@@ -1,124 +1,61 @@
1
1
  /**
2
2
  * Programmatic Gemini fingerprint capture.
3
3
  *
4
- * Mirrors scripts/capture-gemini-request.mjs but runs inline so the
5
- * setup wizard can bootstrap ~/.clawmoney/gemini-fingerprint.json
6
- * without the two-terminal dance.
4
+ * Spawns the existing scripts/capture-gemini-request.mjs as a
5
+ * subprocess and runs `gemini -p hi` against it, rather than
6
+ * reimplementing the proxy in TypeScript. The TS port I tried
7
+ * first timed out at 25s even though the mjs script captures in
8
+ * ~4s on the same machine — the mjs path is proven and reused
9
+ * code, so keep the pattern consistent with codex-bootstrap.
7
10
  *
8
- * Flow:
9
- * 1. Listen on a random localhost port.
10
- * 2. Spawn `gemini -p "hi"` with CODE_ASSIST_ENDPOINT pointing at us.
11
- * 3. When the first POST hits a /v1internal:generateContent (or
12
- * similar) path, extract project_id / user_agent / cli_version /
13
- * x_goog_api_client from the body + headers, persist to
14
- * ~/.clawmoney/gemini-fingerprint.json, and forward the request
15
- * to cloudcode-pa.googleapis.com so the gemini CLI still sees a
16
- * valid response.
17
- * 4. Clean up proxy server + gemini subprocess.
18
- *
19
- * Note: the :loadCodeAssist bootstrap request that Gemini CLI fires
20
- * first carries only `{metadata}` without a project — we skip it and
21
- * wait for a subsequent v1internal request that actually carries a
22
- * project field. Mirrors the mjs script's extractFingerprint guard.
11
+ * Note: the mjs script hardcodes port 8789. A collision surfaces
12
+ * as a spawn error we forward to the caller.
23
13
  */
24
- import { createServer } from "node:http";
25
- import { existsSync, mkdirSync, readdirSync, unlinkSync, writeFileSync, } from "node:fs";
26
- import { homedir } from "node:os";
27
- import { join } from "node:path";
28
14
  import { spawn } from "node:child_process";
29
- import { fetch as undiciFetch, ProxyAgent } from "undici";
15
+ import { existsSync } from "node:fs";
16
+ import { homedir } from "node:os";
17
+ import { dirname, join } from "node:path";
18
+ import { fileURLToPath } from "node:url";
19
+ import { readFileSync } from "node:fs";
30
20
  const CONFIG_DIR = join(homedir(), ".clawmoney");
31
21
  const FINGERPRINT_PATH = join(CONFIG_DIR, "gemini-fingerprint.json");
22
+ const CAPTURE_PORT = 8789;
23
+ const CAPTURE_SCRIPT = "capture-gemini-request.mjs";
32
24
  export function hasGeminiFingerprint() {
33
25
  return existsSync(FINGERPRINT_PATH);
34
26
  }
35
- const HOP_BY_HOP = new Set([
36
- "host",
37
- "connection",
38
- "content-length",
39
- "transfer-encoding",
40
- "accept-encoding",
41
- ]);
42
- function cloneHeaders(src) {
43
- const out = {};
44
- for (const [k, v] of Object.entries(src)) {
45
- if (v == null)
46
- continue;
47
- if (HOP_BY_HOP.has(k.toLowerCase()))
48
- continue;
49
- out[k] = Array.isArray(v) ? v.join(", ") : v;
50
- }
51
- return out;
52
- }
53
- // /v1beta and /v1alpha go to generativelanguage (AI Studio).
54
- // Everything else (notably /v1internal for Code Assist) goes to
55
- // cloudcode-pa. Matches the manual script's routing.
56
- function resolveUpstreamURL(path) {
57
- if (path.startsWith("/v1beta") ||
58
- path.startsWith("/v1/beta") ||
59
- path.startsWith("/v1alpha")) {
60
- return `https://generativelanguage.googleapis.com${path}`;
61
- }
62
- return `https://cloudcode-pa.googleapis.com${path}`;
63
- }
64
- function extractFingerprint(body, headers) {
65
- if (!body || typeof body !== "object")
66
- return null;
67
- const projectRaw = body.project;
68
- const projectId = typeof projectRaw === "string" ? projectRaw.trim() : "";
69
- // :loadCodeAssist carries {metadata} without a project — wait for
70
- // the next request that does.
71
- if (!projectId)
72
- return null;
73
- const uaRaw = headers["user-agent"];
74
- const ua = (Array.isArray(uaRaw) ? uaRaw.join(", ") : (uaRaw ?? "")).trim();
75
- const versionMatch = ua.match(/GeminiCLI\/(\d+\.\d+[.\d]*)/i);
76
- const cliVersion = versionMatch ? versionMatch[1] : "unknown";
77
- const xGoogRaw = headers["x-goog-api-client"];
78
- const xGoog = (Array.isArray(xGoogRaw) ? xGoogRaw.join(", ") : (xGoogRaw ?? "")).trim();
79
- return {
80
- project_id: projectId,
81
- cli_version: cliVersion,
82
- user_agent: ua || `GeminiCLI/${cliVersion}`,
83
- x_goog_api_client: xGoog || "gl-node/unknown",
84
- };
85
- }
86
- function scrubCaptureFiles() {
87
- try {
88
- for (const f of readdirSync(CONFIG_DIR)) {
89
- if (/^capture-gemini-\d+\.json$/.test(f)) {
90
- unlinkSync(join(CONFIG_DIR, f));
91
- }
92
- }
93
- }
94
- catch {
95
- // ignore — best-effort
27
+ function findCaptureScript() {
28
+ const thisFile = fileURLToPath(import.meta.url);
29
+ const thisDir = dirname(thisFile);
30
+ const candidates = [
31
+ join(thisDir, "..", "..", "..", "scripts", CAPTURE_SCRIPT),
32
+ join(thisDir, "..", "..", "scripts", CAPTURE_SCRIPT),
33
+ join(thisDir, "..", "scripts", CAPTURE_SCRIPT),
34
+ ];
35
+ for (const c of candidates) {
36
+ if (existsSync(c))
37
+ return c;
96
38
  }
39
+ return null;
97
40
  }
98
41
  export async function bootstrapGeminiFingerprint(opts = {}) {
99
42
  const timeoutMs = opts.timeoutMs ?? 45_000;
100
- mkdirSync(CONFIG_DIR, { recursive: true });
101
43
  if (hasGeminiFingerprint()) {
102
44
  throw new Error("gemini-fingerprint.json already exists — delete it to re-bootstrap");
103
45
  }
104
- // Gemini talks to Google — Google is reachable only through a
105
- // proxy from GFW-side networks, so we DO honor HTTPS_PROXY for the
106
- // upstream forward. The child subprocess gets no proxy env because
107
- // it's talking to 127.0.0.1 (us), and routing 127.0.0.1 through
108
- // http_proxy tends to wedge.
109
- const proxyUrl = process.env.HTTPS_PROXY ||
110
- process.env.https_proxy ||
111
- process.env.HTTP_PROXY ||
112
- process.env.http_proxy;
113
- let upstreamDispatcher;
114
- if (proxyUrl && /^https?:\/\//.test(proxyUrl)) {
115
- upstreamDispatcher = new ProxyAgent(proxyUrl);
46
+ const scriptPath = findCaptureScript();
47
+ if (!scriptPath) {
48
+ throw new Error("capture-gemini-request.mjs not found in the installed clawmoney package");
116
49
  }
117
- let server = null;
50
+ let proxyChild = null;
118
51
  let geminiChild = null;
119
- let resolved = false;
120
- let capturedFp = null;
52
+ let pollInterval = null;
53
+ let done = false;
121
54
  const cleanup = () => {
55
+ if (pollInterval) {
56
+ clearInterval(pollInterval);
57
+ pollInterval = null;
58
+ }
122
59
  if (geminiChild && !geminiChild.killed) {
123
60
  try {
124
61
  geminiChild.kill("SIGTERM");
@@ -127,146 +64,99 @@ export async function bootstrapGeminiFingerprint(opts = {}) {
127
64
  // ignore
128
65
  }
129
66
  }
130
- if (server) {
67
+ if (proxyChild && !proxyChild.killed) {
131
68
  try {
132
- server.close();
69
+ // SIGINT lets the mjs script scrub its capture-gemini-*.json
70
+ // stragglers (they contain OAuth bearer tokens).
71
+ proxyChild.kill("SIGINT");
133
72
  }
134
73
  catch {
135
74
  // ignore
136
75
  }
137
- server = null;
138
76
  }
139
77
  };
140
78
  return new Promise((resolve, reject) => {
141
79
  const timer = setTimeout(() => {
142
- if (resolved)
80
+ if (done)
143
81
  return;
144
- resolved = true;
82
+ done = true;
145
83
  cleanup();
146
84
  reject(new Error(`gemini fingerprint capture timed out after ${timeoutMs}ms`));
147
85
  }, timeoutMs);
148
- server = createServer((req, res) => {
149
- const chunks = [];
150
- req.on("data", (c) => chunks.push(c));
151
- req.on("end", async () => {
152
- const bodyBuf = Buffer.concat(chunks);
153
- const bodyText = bodyBuf.toString("utf-8");
154
- let parsedBody;
155
- try {
156
- parsedBody = JSON.parse(bodyText);
157
- }
158
- catch {
159
- parsedBody = bodyText;
160
- }
161
- const isGenerate = req.method === "POST" &&
162
- typeof req.url === "string" &&
163
- (req.url.includes("generateContent") || req.url.includes("v1internal"));
164
- if (!capturedFp &&
165
- isGenerate &&
166
- parsedBody &&
167
- typeof parsedBody === "object") {
168
- const fp = extractFingerprint(parsedBody, req.headers);
169
- if (fp) {
170
- capturedFp = fp;
171
- try {
172
- writeFileSync(FINGERPRINT_PATH, JSON.stringify(fp, null, 2), "utf-8");
173
- scrubCaptureFiles();
174
- }
175
- catch (writeErr) {
176
- if (!resolved) {
177
- resolved = true;
178
- clearTimeout(timer);
179
- cleanup();
180
- reject(new Error(`failed to write gemini fingerprint: ${writeErr.message}`));
181
- return;
182
- }
183
- }
184
- }
185
- }
186
- // Forward to real Google upstream.
187
- const upstreamURL = resolveUpstreamURL(req.url || "/");
188
- const targetHost = new URL(upstreamURL).host;
189
- try {
190
- const upstreamHeaders = cloneHeaders(req.headers);
191
- upstreamHeaders["host"] = targetHost;
192
- const upstreamResp = await undiciFetch(upstreamURL, {
193
- method: req.method,
194
- headers: upstreamHeaders,
195
- body: req.method === "GET" || req.method === "HEAD"
196
- ? undefined
197
- : bodyBuf,
198
- dispatcher: upstreamDispatcher,
199
- });
200
- const respHeaders = {};
201
- upstreamResp.headers.forEach((v, k) => {
202
- const lower = k.toLowerCase();
203
- if (lower === "content-encoding" ||
204
- lower === "content-length" ||
205
- lower === "transfer-encoding")
206
- return;
207
- respHeaders[k] = v;
208
- });
209
- res.writeHead(upstreamResp.status, respHeaders);
210
- if (upstreamResp.body) {
211
- const reader = upstreamResp.body.getReader();
212
- while (true) {
213
- const { done: rDone, value } = await reader.read();
214
- if (rDone)
215
- break;
216
- res.write(Buffer.from(value));
217
- }
218
- }
219
- res.end();
220
- }
221
- catch (err) {
222
- try {
223
- res.writeHead(502);
224
- res.end();
225
- }
226
- catch {
227
- // ignore
228
- }
229
- if (!resolved && !capturedFp) {
230
- resolved = true;
231
- clearTimeout(timer);
232
- cleanup();
233
- reject(new Error(`upstream google request failed: ${err.message}`));
234
- return;
235
- }
236
- }
237
- if (capturedFp && !resolved) {
238
- resolved = true;
239
- clearTimeout(timer);
240
- cleanup();
241
- resolve(capturedFp);
242
- }
243
- });
86
+ // 1. Spawn the capture proxy (mjs script). It needs HTTPS_PROXY
87
+ // to reach cloudcode-pa.googleapis.com from a GFW egress.
88
+ proxyChild = spawn("node", [scriptPath], {
89
+ env: { ...process.env },
90
+ stdio: ["ignore", "pipe", "pipe"],
91
+ });
92
+ let proxyStderr = "";
93
+ proxyChild.stderr?.on("data", (c) => {
94
+ proxyStderr += c.toString();
95
+ if (proxyStderr.length > 4_000) {
96
+ proxyStderr = proxyStderr.slice(-4_000);
97
+ }
98
+ });
99
+ proxyChild.stdout?.on("data", () => {
100
+ // drain the mjs prints a banner we ignore
244
101
  });
245
- server.on("error", (err) => {
246
- if (resolved)
102
+ proxyChild.on("error", (err) => {
103
+ if (done)
247
104
  return;
248
- resolved = true;
105
+ done = true;
249
106
  clearTimeout(timer);
250
107
  cleanup();
251
- reject(new Error(`gemini bootstrap proxy error: ${err.message}`));
108
+ reject(new Error(`failed to spawn capture proxy: ${err.message}`));
252
109
  });
253
- server.listen(0, "127.0.0.1", () => {
254
- const addr = server.address();
255
- if (!addr || typeof addr === "string") {
256
- if (resolved)
257
- return;
258
- resolved = true;
110
+ proxyChild.on("exit", (code) => {
111
+ if (done)
112
+ return;
113
+ if (!hasGeminiFingerprint()) {
114
+ done = true;
259
115
  clearTimeout(timer);
260
116
  cleanup();
261
- reject(new Error("failed to bind gemini capture proxy"));
262
- return;
117
+ const tail = proxyStderr.trim().slice(-400);
118
+ const detail = tail ? ` stderr: ${tail}` : "";
119
+ reject(new Error(`capture proxy exited (code ${code ?? "unknown"}) before fingerprint.${detail}`));
263
120
  }
264
- const port = addr.port;
265
- // Strip upstream proxy env vars from the child so it hits our
266
- // local 127.0.0.1 listener directly. NO_PROXY is belt-and-braces.
121
+ });
122
+ // Give the mjs proxy a moment to bind port 8789, then spawn
123
+ // gemini. 1.5s is enough on every machine I've tested.
124
+ setTimeout(() => {
125
+ if (done)
126
+ return;
127
+ // Poll the fingerprint file — the mjs script writes it as
128
+ // soon as the first v1internal request with a project field
129
+ // comes through.
130
+ pollInterval = setInterval(() => {
131
+ if (done) {
132
+ if (pollInterval) {
133
+ clearInterval(pollInterval);
134
+ pollInterval = null;
135
+ }
136
+ return;
137
+ }
138
+ if (hasGeminiFingerprint()) {
139
+ done = true;
140
+ if (pollInterval) {
141
+ clearInterval(pollInterval);
142
+ pollInterval = null;
143
+ }
144
+ clearTimeout(timer);
145
+ cleanup();
146
+ try {
147
+ const raw = JSON.parse(readFileSync(FINGERPRINT_PATH, "utf-8"));
148
+ resolve(raw);
149
+ }
150
+ catch (err) {
151
+ reject(new Error(`fingerprint file written but unreadable: ${err.message}`));
152
+ }
153
+ }
154
+ }, 500);
155
+ // Strip upstream proxy vars from the gemini subprocess so it
156
+ // talks to 127.0.0.1:8789 directly. Also set NO_PROXY.
267
157
  const childEnv = {
268
158
  ...process.env,
269
- CODE_ASSIST_ENDPOINT: `http://127.0.0.1:${port}`,
159
+ CODE_ASSIST_ENDPOINT: `http://127.0.0.1:${CAPTURE_PORT}`,
270
160
  NO_PROXY: "127.0.0.1,localhost",
271
161
  no_proxy: "127.0.0.1,localhost",
272
162
  };
@@ -281,36 +171,36 @@ export async function bootstrapGeminiFingerprint(opts = {}) {
281
171
  stdio: ["ignore", "pipe", "pipe"],
282
172
  shell: process.platform === "win32",
283
173
  });
284
- let stderrBuf = "";
285
- geminiChild.stderr?.on("data", (chunk) => {
286
- stderrBuf += chunk.toString();
287
- if (stderrBuf.length > 4_000) {
288
- stderrBuf = stderrBuf.slice(-4_000);
174
+ let geminiStderr = "";
175
+ geminiChild.stderr?.on("data", (c) => {
176
+ geminiStderr += c.toString();
177
+ if (geminiStderr.length > 4_000) {
178
+ geminiStderr = geminiStderr.slice(-4_000);
289
179
  }
290
180
  });
291
181
  geminiChild.stdout?.on("data", () => {
292
182
  // drain
293
183
  });
294
184
  geminiChild.on("error", (err) => {
295
- if (resolved)
185
+ if (done)
296
186
  return;
297
- resolved = true;
187
+ done = true;
298
188
  clearTimeout(timer);
299
189
  cleanup();
300
190
  reject(new Error(`failed to spawn gemini: ${err.message} (is the gemini CLI installed and in PATH?)`));
301
191
  });
302
192
  geminiChild.on("exit", (code) => {
303
193
  setTimeout(() => {
304
- if (capturedFp || resolved)
194
+ if (done || hasGeminiFingerprint())
305
195
  return;
306
- resolved = true;
196
+ done = true;
307
197
  clearTimeout(timer);
308
198
  cleanup();
309
- const tail = stderrBuf.trim().slice(-400);
199
+ const tail = geminiStderr.trim().slice(-400);
310
200
  const detail = tail ? ` stderr: ${tail}` : "";
311
- reject(new Error(`gemini -p hi exited with code ${code ?? "unknown"} before sending a v1internal request.${detail}`));
312
- }, 500);
201
+ reject(new Error(`gemini -p hi exited with code ${code ?? "unknown"} before the capture proxy saw a v1internal request with a project field.${detail}`));
202
+ }, 800);
313
203
  });
314
- });
204
+ }, 1500);
315
205
  });
316
206
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.15.55",
3
+ "version": "0.15.57",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {