-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathcli.ts
More file actions
450 lines (430 loc) · 16.2 KB
/
cli.ts
File metadata and controls
450 lines (430 loc) · 16.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
import { parseArgs, toDaemonFlags, usage, usageForCommand } from './utils/args.ts';
import { asAppError, AppError, normalizeError } from './utils/errors.ts';
import { formatSnapshotDiffText, formatSnapshotText, printHumanError, printJson } from './utils/output.ts';
import { readVersion } from './utils/version.ts';
import { pathToFileURL } from 'node:url';
import { sendToDaemon } from './daemon-client.ts';
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import type { BatchStep } from './core/dispatch.ts';
import { parseBatchStepsJson } from './core/batch.ts';
import { createRequestId, emitDiagnostic, flushDiagnosticsToSessionFile, getDiagnosticsMeta, withDiagnosticsScope } from './utils/diagnostics.ts';
type CliDeps = {
sendToDaemon: typeof sendToDaemon;
};
const DEFAULT_CLI_DEPS: CliDeps = {
sendToDaemon,
};
export async function runCli(argv: string[], deps: CliDeps = DEFAULT_CLI_DEPS): Promise<void> {
const requestId = createRequestId();
const debugEnabled = argv.includes('--debug') || argv.includes('--verbose') || argv.includes('-v');
const jsonRequested = argv.includes('--json');
// Best-effort session guess used only for pre-parse diagnostics scope.
// After parse succeeds, request dispatch uses parsed flags/session resolution.
const sessionGuess = guessSessionFromArgv(argv) ?? process.env.AGENT_DEVICE_SESSION ?? 'default';
await withDiagnosticsScope(
{
session: sessionGuess,
requestId,
command: argv[0],
debug: debugEnabled,
},
async () => {
let parsed: ReturnType<typeof parseArgs>;
try {
parsed = parseArgs(argv);
} catch (error) {
emitDiagnostic({
level: 'error',
phase: 'cli_parse_failed',
data: {
error: error instanceof Error ? error.message : String(error),
},
});
const normalized = normalizeError(error, {
diagnosticId: getDiagnosticsMeta().diagnosticId,
logPath: flushDiagnosticsToSessionFile({ force: true }) ?? undefined,
});
if (jsonRequested) {
printJson({ success: false, error: normalized });
} else {
printHumanError(normalized, { showDetails: debugEnabled });
}
process.exit(1);
return;
}
for (const warning of parsed.warnings) {
process.stderr.write(`Warning: ${warning}\n`);
}
if (parsed.flags.version) {
process.stdout.write(`${readVersion()}\n`);
process.exit(0);
}
const isHelpAlias = parsed.command === 'help';
const isHelpFlag = parsed.flags.help;
if (isHelpAlias || isHelpFlag) {
if (isHelpAlias && parsed.positionals.length > 1) {
printHumanError(new AppError('INVALID_ARGS', 'help accepts at most one command.'));
process.exit(1);
}
const helpTarget = isHelpAlias ? parsed.positionals[0] : parsed.command;
if (!helpTarget) {
process.stdout.write(`${usage()}\n`);
process.exit(0);
}
const commandHelp = usageForCommand(helpTarget);
if (commandHelp) {
process.stdout.write(commandHelp);
process.exit(0);
}
printHumanError(new AppError('INVALID_ARGS', `Unknown command: ${helpTarget}`));
process.stdout.write(`${usage()}\n`);
process.exit(1);
}
if (!parsed.command) {
process.stdout.write(`${usage()}\n`);
process.exit(1);
}
const { command, positionals, flags } = parsed;
const daemonFlags = toDaemonFlags(flags);
const sessionName = flags.session ?? process.env.AGENT_DEVICE_SESSION ?? 'default';
const logTailStopper = flags.verbose && !flags.json ? startDaemonLogTail() : null;
const sendDaemonRequest = async (payload: { command: string; positionals: string[]; flags?: Record<string, unknown> }) =>
await deps.sendToDaemon({
session: sessionName,
command: payload.command,
positionals: payload.positionals,
flags: payload.flags as any,
meta: {
requestId,
debug: Boolean(flags.verbose),
cwd: process.cwd(),
},
});
try {
if (command === 'batch') {
if (positionals.length > 0) {
throw new AppError('INVALID_ARGS', 'batch does not accept positional arguments.');
}
const batchSteps = readBatchSteps(flags);
const batchFlags = { ...daemonFlags, batchSteps };
delete (batchFlags as Record<string, unknown>).steps;
delete (batchFlags as Record<string, unknown>).stepsFile;
const response = await sendDaemonRequest({
command: 'batch',
positionals,
flags: batchFlags,
});
if (!response.ok) {
throw new AppError(response.error.code as any, response.error.message, {
...(response.error.details ?? {}),
hint: response.error.hint,
diagnosticId: response.error.diagnosticId,
logPath: response.error.logPath,
});
}
if (flags.json) {
printJson({ success: true, data: response.data ?? {} });
} else {
renderBatchSummary(response.data ?? {});
}
if (logTailStopper) logTailStopper();
return;
}
if (command === 'session') {
const sub = positionals[0] ?? 'list';
if (sub !== 'list') {
throw new AppError('INVALID_ARGS', 'session only supports list');
}
const response = await sendDaemonRequest({
command: 'session_list',
positionals: [],
flags: daemonFlags,
});
if (!response.ok) {
throw new AppError(response.error.code as any, response.error.message, {
...(response.error.details ?? {}),
hint: response.error.hint,
diagnosticId: response.error.diagnosticId,
logPath: response.error.logPath,
});
}
if (flags.json) printJson({ success: true, data: response.data ?? {} });
else process.stdout.write(`${JSON.stringify(response.data ?? {}, null, 2)}\n`);
if (logTailStopper) logTailStopper();
return;
}
const response = await sendDaemonRequest({
command: command!,
positionals,
flags: daemonFlags,
});
if (response.ok) {
if (flags.json) {
printJson({ success: true, data: response.data ?? {} });
if (logTailStopper) logTailStopper();
return;
}
if (command === 'snapshot') {
process.stdout.write(
formatSnapshotText((response.data ?? {}) as Record<string, unknown>, {
raw: flags.snapshotRaw,
flatten: flags.snapshotInteractiveOnly,
}),
);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'diff' && positionals[0]?.toLowerCase() === 'snapshot') {
process.stdout.write(formatSnapshotDiffText((response.data ?? {}) as Record<string, unknown>));
if (logTailStopper) logTailStopper();
return;
}
if (command === 'get') {
const sub = positionals[0];
if (sub === 'text') {
const text = (response.data as any)?.text ?? '';
process.stdout.write(`${text}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (sub === 'attrs') {
const node = (response.data as any)?.node ?? {};
process.stdout.write(`${JSON.stringify(node, null, 2)}\n`);
if (logTailStopper) logTailStopper();
return;
}
}
if (command === 'find') {
const data = response.data as any;
if (typeof data?.text === 'string') {
process.stdout.write(`${data.text}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (typeof data?.found === 'boolean') {
process.stdout.write(`Found: ${data.found}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (data?.node) {
process.stdout.write(`${JSON.stringify(data.node, null, 2)}\n`);
if (logTailStopper) logTailStopper();
return;
}
}
if (command === 'is') {
const predicate = (response.data as any)?.predicate ?? 'assertion';
process.stdout.write(`Passed: is ${predicate}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'boot') {
const platform = (response.data as any)?.platform ?? 'unknown';
const device = (response.data as any)?.device ?? (response.data as any)?.id ?? 'unknown';
process.stdout.write(`Boot ready: ${device} (${platform})\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'click' || command === 'press' || command === 'dblclick') {
const ref = (response.data as any)?.ref ?? '';
const x = (response.data as any)?.x;
const y = (response.data as any)?.y;
if (ref && typeof x === 'number' && typeof y === 'number') {
process.stdout.write(`Tapped @${ref} (${x}, ${y})\n`);
}
if (logTailStopper) logTailStopper();
return;
}
if (response.data && typeof response.data === 'object') {
const data = response.data as Record<string, unknown>;
if (command === 'devices') {
const devices = Array.isArray((data as any).devices) ? (data as any).devices : [];
const lines = devices.map((d: any) => {
const name = d?.name ?? d?.id ?? 'unknown';
const platform = d?.platform ?? 'unknown';
const kind = d?.kind ? ` ${d.kind}` : '';
const booted = typeof d?.booted === 'boolean' ? ` booted=${d.booted}` : '';
return `${name} (${platform}${kind})${booted}`;
});
process.stdout.write(`${lines.join('\n')}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'apps') {
const apps = Array.isArray((data as any).apps) ? (data as any).apps : [];
const lines = apps.map((app: any) => {
if (typeof app === 'string') return app;
if (app && typeof app === 'object') {
const bundleId = app.bundleId ?? app.package;
const name = app.name ?? app.label;
if (name && bundleId) return `${name} (${bundleId})`;
if (bundleId) return String(bundleId);
return JSON.stringify(app);
}
return String(app);
});
process.stdout.write(`${lines.join('\n')}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (command === 'appstate') {
const platform = (data as any)?.platform;
const appBundleId = (data as any)?.appBundleId;
const appName = (data as any)?.appName;
const source = (data as any)?.source;
const pkg = (data as any)?.package;
const activity = (data as any)?.activity;
if (platform === 'ios') {
process.stdout.write(`Foreground app: ${appName ?? appBundleId ?? 'unknown'}\n`);
if (appBundleId) process.stdout.write(`Bundle: ${appBundleId}\n`);
if (source) process.stdout.write(`Source: ${source}\n`);
if (logTailStopper) logTailStopper();
return;
}
if (platform === 'android') {
process.stdout.write(`Foreground app: ${pkg ?? 'unknown'}\n`);
if (activity) process.stdout.write(`Activity: ${activity}\n`);
if (logTailStopper) logTailStopper();
return;
}
}
}
if (logTailStopper) logTailStopper();
return;
}
throw new AppError(response.error.code as any, response.error.message, {
...(response.error.details ?? {}),
hint: response.error.hint,
diagnosticId: response.error.diagnosticId,
logPath: response.error.logPath,
});
} catch (err) {
const appErr = asAppError(err);
const normalized = normalizeError(appErr, {
diagnosticId: getDiagnosticsMeta().diagnosticId,
logPath: flushDiagnosticsToSessionFile({ force: true }) ?? undefined,
});
if (command === 'close' && isDaemonStartupFailure(appErr)) {
if (flags.json) {
printJson({ success: true, data: { closed: 'session', source: 'no-daemon' } });
}
if (logTailStopper) logTailStopper();
return;
}
if (flags.json) {
printJson({
success: false,
error: normalized,
});
} else {
printHumanError(normalized, { showDetails: flags.verbose });
if (flags.verbose) {
try {
const logPath = path.join(os.homedir(), '.agent-device', 'daemon.log');
if (fs.existsSync(logPath)) {
const content = fs.readFileSync(logPath, 'utf8');
const lines = content.split('\n');
const tail = lines.slice(Math.max(0, lines.length - 200)).join('\n');
if (tail.trim().length > 0) {
process.stderr.write(`\n[daemon log]\n${tail}\n`);
}
}
} catch {
// ignore
}
}
}
if (logTailStopper) logTailStopper();
process.exit(1);
}
},
);
}
function renderBatchSummary(data: Record<string, unknown>): void {
const total = typeof data.total === 'number' ? data.total : 0;
const executed = typeof data.executed === 'number' ? data.executed : 0;
const durationMs = typeof data.totalDurationMs === 'number' ? data.totalDurationMs : undefined;
process.stdout.write(
`Batch completed: ${executed}/${total} steps${durationMs !== undefined ? ` in ${durationMs}ms` : ''}\n`,
);
}
function readBatchSteps(flags: ReturnType<typeof parseArgs>['flags']): BatchStep[] {
let raw = '';
if (flags.steps) {
raw = flags.steps;
} else if (flags.stepsFile) {
try {
raw = fs.readFileSync(flags.stepsFile, 'utf8');
} catch (error) {
const message = error instanceof Error ? error.message : String(error);
throw new AppError('INVALID_ARGS', `Failed to read --steps-file ${flags.stepsFile}: ${message}`);
}
}
return parseBatchStepsJson(raw);
}
function isDaemonStartupFailure(error: AppError): boolean {
if (error.code !== 'COMMAND_FAILED') return false;
if (error.details?.kind === 'daemon_startup_failed') return true;
if (!error.message.toLowerCase().includes('failed to start daemon')) return false;
return typeof error.details?.infoPath === 'string' || typeof error.details?.lockPath === 'string';
}
function guessSessionFromArgv(argv: string[]): string | null {
for (let i = 0; i < argv.length; i += 1) {
const token = argv[i];
if (token.startsWith('--session=')) {
const inline = token.slice('--session='.length).trim();
return inline.length > 0 ? inline : null;
}
if (token === '--session') {
const value = argv[i + 1]?.trim();
if (value && !value.startsWith('-')) return value;
return null;
}
}
return null;
}
const isDirectRun = pathToFileURL(process.argv[1] ?? '').href === import.meta.url;
if (isDirectRun) {
runCli(process.argv.slice(2)).catch((err) => {
const appErr = asAppError(err);
printHumanError(normalizeError(appErr), { showDetails: true });
process.exit(1);
});
}
function startDaemonLogTail(): (() => void) | null {
try {
const logPath = path.join(os.homedir(), '.agent-device', 'daemon.log');
let offset = 0;
let stopped = false;
const interval = setInterval(() => {
if (stopped) return;
if (!fs.existsSync(logPath)) return;
try {
const stats = fs.statSync(logPath);
if (stats.size < offset) offset = 0;
if (stats.size <= offset) return;
const fd = fs.openSync(logPath, 'r');
try {
const buffer = Buffer.alloc(stats.size - offset);
fs.readSync(fd, buffer, 0, buffer.length, offset);
offset = stats.size;
if (buffer.length > 0) {
process.stdout.write(buffer.toString('utf8'));
}
} finally {
fs.closeSync(fd);
}
} catch {
// Best-effort tailing should not crash CLI flow.
}
}, 200);
return () => {
stopped = true;
clearInterval(interval);
};
} catch {
return null;
}
}