@evident-ai/cli 3.1.1-dev.a4167a6 → 3.1.1-dev.b48b24c
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 +4 -0
- package/dist/index.js +242 -50
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,6 +94,10 @@ Options:
|
|
|
94
94
|
- `-c, --conversation <id>` — Process only this specific conversation.
|
|
95
95
|
- `--idle-timeout <seconds>` — Exit after N seconds with no pending work (useful
|
|
96
96
|
in CI to avoid polling indefinitely).
|
|
97
|
+
- `--opencode-start-timeout <seconds>` — How long to wait for OpenCode to become
|
|
98
|
+
healthy when the runner starts it itself (default: `180`). On expiry the runner
|
|
99
|
+
warns and comes online anyway rather than failing. Env:
|
|
100
|
+
`EVIDENT_OPENCODE_START_TIMEOUT` (seconds).
|
|
97
101
|
- `--json` — Output in JSON format (forces non-interactive mode).
|
|
98
102
|
|
|
99
103
|
## Global flags
|
package/dist/index.js
CHANGED
|
@@ -267,16 +267,28 @@ async function getToken() {
|
|
|
267
267
|
}
|
|
268
268
|
return null;
|
|
269
269
|
}
|
|
270
|
+
function toError(err) {
|
|
271
|
+
return err instanceof Error ? err : new Error(String(err));
|
|
272
|
+
}
|
|
270
273
|
async function deleteToken(options = {}) {
|
|
271
274
|
const keytar = await getKeytar();
|
|
275
|
+
const failures = [];
|
|
272
276
|
if (keytar) {
|
|
273
277
|
if (options.all) {
|
|
274
|
-
|
|
278
|
+
let accounts = [];
|
|
279
|
+
try {
|
|
280
|
+
accounts = await keytar.findCredentials(SERVICE_NAME);
|
|
281
|
+
} catch (err) {
|
|
282
|
+
failures.push({ type: "enumerate", error: toError(err) });
|
|
283
|
+
}
|
|
275
284
|
await Promise.all(
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
285
|
+
accounts.map(async (entry) => {
|
|
286
|
+
try {
|
|
287
|
+
await keytar.deletePassword(SERVICE_NAME, entry.account);
|
|
288
|
+
} catch (err) {
|
|
289
|
+
failures.push({ type: "delete", account: entry.account, error: toError(err) });
|
|
290
|
+
}
|
|
291
|
+
})
|
|
280
292
|
);
|
|
281
293
|
} else {
|
|
282
294
|
await keytar.deletePassword(SERVICE_NAME, keychainAccount());
|
|
@@ -287,6 +299,7 @@ async function deleteToken(options = {}) {
|
|
|
287
299
|
} else {
|
|
288
300
|
clearCredentials();
|
|
289
301
|
}
|
|
302
|
+
return { failures };
|
|
290
303
|
}
|
|
291
304
|
|
|
292
305
|
// src/utils/ui.ts
|
|
@@ -404,8 +417,10 @@ async function deviceFlowLogin(options) {
|
|
|
404
417
|
}
|
|
405
418
|
async function tokenLogin() {
|
|
406
419
|
console.log("Token login mode.");
|
|
407
|
-
console.log("
|
|
408
|
-
console.log(
|
|
420
|
+
console.log("Create a token under Settings \u2192 CLI tokens in the dashboard, then paste it below.");
|
|
421
|
+
console.log(
|
|
422
|
+
"(Alternatively, run `evident login` on a machine with a browser, or set EVIDENT_TOKEN for CI.)"
|
|
423
|
+
);
|
|
409
424
|
blank();
|
|
410
425
|
process.stdout.write("Paste token: ");
|
|
411
426
|
const token = await new Promise((resolve3) => {
|
|
@@ -429,13 +444,22 @@ async function tokenLogin() {
|
|
|
429
444
|
printError("No token provided.");
|
|
430
445
|
process.exit(1);
|
|
431
446
|
}
|
|
447
|
+
await validateAndStoreToken(token);
|
|
448
|
+
}
|
|
449
|
+
async function validateAndStoreToken(token) {
|
|
432
450
|
const spinner = ora("Validating token...").start();
|
|
433
451
|
try {
|
|
434
|
-
const result = await api.
|
|
452
|
+
const result = await api.get("/me", {
|
|
453
|
+
headers: { Authorization: `Bearer ${token}` }
|
|
454
|
+
});
|
|
455
|
+
if (!result.user) {
|
|
456
|
+
throw new Error(
|
|
457
|
+
"This token is not a user login (e.g. a runner key). Paste a CLI token instead."
|
|
458
|
+
);
|
|
459
|
+
}
|
|
435
460
|
await storeToken({
|
|
436
461
|
token,
|
|
437
|
-
user: result.user
|
|
438
|
-
expiresAt: result.expires_at
|
|
462
|
+
user: { email: result.user.email }
|
|
439
463
|
});
|
|
440
464
|
spinner.stop();
|
|
441
465
|
printSuccess(`Logged in as ${chalk2.bold(result.user.email)}`);
|
|
@@ -455,9 +479,22 @@ async function login(options) {
|
|
|
455
479
|
}
|
|
456
480
|
|
|
457
481
|
// src/commands/logout.ts
|
|
482
|
+
function describeFailure(failure) {
|
|
483
|
+
if (failure.type === "enumerate") {
|
|
484
|
+
return `could not list stored keychain entries (${failure.error.message})`;
|
|
485
|
+
}
|
|
486
|
+
return `${failure.account} (${failure.error.message})`;
|
|
487
|
+
}
|
|
458
488
|
async function logout(options = {}) {
|
|
459
489
|
if (options.all) {
|
|
460
|
-
await deleteToken({ all: true });
|
|
490
|
+
const result = await deleteToken({ all: true });
|
|
491
|
+
if (result.failures.length > 0) {
|
|
492
|
+
printError(
|
|
493
|
+
`Failed to fully clear your keychain: ${result.failures.map(describeFailure).join("; ")}. Your local credentials file was cleared, but stale keychain entries may remain \u2014 run \`evident logout --all\` again, or remove them manually from your OS keychain / credential manager.`
|
|
494
|
+
);
|
|
495
|
+
process.exitCode = 1;
|
|
496
|
+
return;
|
|
497
|
+
}
|
|
461
498
|
printSuccess("Logged out of all endpoints.");
|
|
462
499
|
return;
|
|
463
500
|
}
|
|
@@ -482,7 +519,9 @@ async function whoami() {
|
|
|
482
519
|
blank();
|
|
483
520
|
console.log(keyValue("Endpoint", apiUrl));
|
|
484
521
|
console.log(keyValue("User", chalk3.bold(credentials2.user.email)));
|
|
485
|
-
|
|
522
|
+
if (credentials2.user.id) {
|
|
523
|
+
console.log(keyValue("User ID", credentials2.user.id));
|
|
524
|
+
}
|
|
486
525
|
if (credentials2.expiresAt) {
|
|
487
526
|
const expiresAt = new Date(credentials2.expiresAt);
|
|
488
527
|
const now = /* @__PURE__ */ new Date();
|
|
@@ -510,7 +549,10 @@ var TelemetryEventTypes = {
|
|
|
510
549
|
AGENT_DISCONNECTED: "agent.disconnected",
|
|
511
550
|
AGENT_MESSAGE_PROCESSING: "agent.message_processing",
|
|
512
551
|
AGENT_MESSAGE_DONE: "agent.message_done",
|
|
513
|
-
AGENT_MESSAGE_FAILED: "agent.message_failed"
|
|
552
|
+
AGENT_MESSAGE_FAILED: "agent.message_failed",
|
|
553
|
+
// A `warn`/`error` runner-side log line forwarded server-side for
|
|
554
|
+
// observability (issue #916) — see `apps/cli/src/lib/runner-activity-telemetry.ts`.
|
|
555
|
+
RUNNER_ACTIVITY: "runner.activity"
|
|
514
556
|
};
|
|
515
557
|
|
|
516
558
|
// ../../packages/types/src/tunnel/index.ts
|
|
@@ -565,6 +607,13 @@ var isShuttingDown = false;
|
|
|
565
607
|
var FLUSH_INTERVAL_MS = 5e3;
|
|
566
608
|
var MAX_BUFFER_SIZE = 50;
|
|
567
609
|
var FLUSH_TIMEOUT_MS = 3e3;
|
|
610
|
+
var authProvider = null;
|
|
611
|
+
function setTelemetryAuthProvider(provider) {
|
|
612
|
+
authProvider = provider;
|
|
613
|
+
}
|
|
614
|
+
var FLUSH_FAILURE_LOG_INTERVAL_MS = 6e4;
|
|
615
|
+
var lastFlushFailureLoggedAt = 0;
|
|
616
|
+
var suppressedFlushFailureCount = 0;
|
|
568
617
|
function logEvent(eventType, options = {}) {
|
|
569
618
|
const event = {
|
|
570
619
|
event_type: eventType,
|
|
@@ -599,9 +648,16 @@ async function flushEvents() {
|
|
|
599
648
|
flushTimeout = null;
|
|
600
649
|
}
|
|
601
650
|
try {
|
|
602
|
-
const
|
|
603
|
-
|
|
604
|
-
|
|
651
|
+
const providerContext = authProvider?.();
|
|
652
|
+
let authHeader;
|
|
653
|
+
if (providerContext?.authHeader) {
|
|
654
|
+
authHeader = providerContext.authHeader;
|
|
655
|
+
} else {
|
|
656
|
+
const credentials2 = await getToken();
|
|
657
|
+
if (!credentials2) {
|
|
658
|
+
return;
|
|
659
|
+
}
|
|
660
|
+
authHeader = `Bearer ${credentials2.token}`;
|
|
605
661
|
}
|
|
606
662
|
const apiUrl = getApiUrlConfig();
|
|
607
663
|
const controller = new AbortController();
|
|
@@ -616,7 +672,7 @@ async function flushEvents() {
|
|
|
616
672
|
method: "POST",
|
|
617
673
|
headers: {
|
|
618
674
|
"Content-Type": "application/json",
|
|
619
|
-
Authorization:
|
|
675
|
+
Authorization: authHeader
|
|
620
676
|
},
|
|
621
677
|
body: JSON.stringify(request),
|
|
622
678
|
signal: controller.signal
|
|
@@ -628,8 +684,15 @@ async function flushEvents() {
|
|
|
628
684
|
clearTimeout(timeout);
|
|
629
685
|
}
|
|
630
686
|
} catch (error2) {
|
|
631
|
-
|
|
632
|
-
|
|
687
|
+
const now = Date.now();
|
|
688
|
+
if (now - lastFlushFailureLoggedAt >= FLUSH_FAILURE_LOG_INTERVAL_MS) {
|
|
689
|
+
const message = error2 instanceof Error ? error2.message : String(error2);
|
|
690
|
+
const suffix = suppressedFlushFailureCount > 0 ? ` (${suppressedFlushFailureCount} more suppressed in the last ${FLUSH_FAILURE_LOG_INTERVAL_MS / 1e3}s)` : "";
|
|
691
|
+
console.error(`Telemetry flush error: ${message}${suffix}`);
|
|
692
|
+
lastFlushFailureLoggedAt = now;
|
|
693
|
+
suppressedFlushFailureCount = 0;
|
|
694
|
+
} else {
|
|
695
|
+
suppressedFlushFailureCount++;
|
|
633
696
|
}
|
|
634
697
|
}
|
|
635
698
|
}
|
|
@@ -698,6 +761,69 @@ var EventTypes = {
|
|
|
698
761
|
DEPRECATED_AGENT_KEY_ENV_USED: "cli.deprecated_agent_key_env_used"
|
|
699
762
|
};
|
|
700
763
|
|
|
764
|
+
// src/lib/runner-activity-telemetry.ts
|
|
765
|
+
var FORWARDED_LEVELS = /* @__PURE__ */ new Set(["warn", "error"]);
|
|
766
|
+
var SEVERITY_BY_LEVEL = {
|
|
767
|
+
warn: "warning",
|
|
768
|
+
error: "error"
|
|
769
|
+
};
|
|
770
|
+
var MAX_MESSAGE_LENGTH = 500;
|
|
771
|
+
var TRUNCATION_MARKER = "\u2026";
|
|
772
|
+
function redact(message) {
|
|
773
|
+
return message.replace(/esk_[A-Za-z0-9_-]+/g, "esk_***").replace(/ct_[A-Za-z0-9_-]+/g, "ct_***").replace(/https?:\/\/\S+/g, "<url>");
|
|
774
|
+
}
|
|
775
|
+
function truncate(message) {
|
|
776
|
+
if (message.length <= MAX_MESSAGE_LENGTH) return message;
|
|
777
|
+
return message.slice(0, MAX_MESSAGE_LENGTH - TRUNCATION_MARKER.length) + TRUNCATION_MARKER;
|
|
778
|
+
}
|
|
779
|
+
var RATE_LIMIT_WINDOW_MS = 6e4;
|
|
780
|
+
var RATE_LIMIT_MAX_EVENTS = 30;
|
|
781
|
+
var windowStartedAt = 0;
|
|
782
|
+
var windowCount = 0;
|
|
783
|
+
var windowDroppedCount = 0;
|
|
784
|
+
function admitUnderRateLimit(now) {
|
|
785
|
+
if (now - windowStartedAt >= RATE_LIMIT_WINDOW_MS) {
|
|
786
|
+
if (windowDroppedCount > 0) {
|
|
787
|
+
console.error(
|
|
788
|
+
`[runner-activity-telemetry] rate cap reached: dropped ${windowDroppedCount} ${windowDroppedCount === 1 ? "entry" : "entries"} in the last ${RATE_LIMIT_WINDOW_MS / 1e3}s (cap ${RATE_LIMIT_MAX_EVENTS}/min)`
|
|
789
|
+
);
|
|
790
|
+
}
|
|
791
|
+
windowStartedAt = now;
|
|
792
|
+
windowCount = 0;
|
|
793
|
+
windowDroppedCount = 0;
|
|
794
|
+
}
|
|
795
|
+
if (windowCount >= RATE_LIMIT_MAX_EVENTS) {
|
|
796
|
+
windowDroppedCount++;
|
|
797
|
+
if (windowDroppedCount === 1) {
|
|
798
|
+
console.error(
|
|
799
|
+
`[runner-activity-telemetry] rate cap reached (${RATE_LIMIT_MAX_EVENTS} per ${RATE_LIMIT_WINDOW_MS / 1e3}s) \u2014 dropping further entries this window`
|
|
800
|
+
);
|
|
801
|
+
}
|
|
802
|
+
return false;
|
|
803
|
+
}
|
|
804
|
+
windowCount++;
|
|
805
|
+
return true;
|
|
806
|
+
}
|
|
807
|
+
function forwardRunnerActivity(entry, context) {
|
|
808
|
+
try {
|
|
809
|
+
if (!FORWARDED_LEVELS.has(entry.level)) return;
|
|
810
|
+
if (!context.agentId || !context.authHeader) return;
|
|
811
|
+
if (!admitUnderRateLimit(Date.now())) return;
|
|
812
|
+
const rawMessage = entry.error ?? entry.message ?? "";
|
|
813
|
+
const message = truncate(redact(rawMessage));
|
|
814
|
+
logEvent(TelemetryEventTypes.RUNNER_ACTIVITY, {
|
|
815
|
+
severity: SEVERITY_BY_LEVEL[entry.level],
|
|
816
|
+
message,
|
|
817
|
+
metadata: { source: "cli.run" },
|
|
818
|
+
agentId: context.agentId
|
|
819
|
+
});
|
|
820
|
+
} catch (err) {
|
|
821
|
+
console.error(
|
|
822
|
+
`[runner-activity-telemetry] failed to forward runner activity: ${err instanceof Error ? err.message : String(err)}`
|
|
823
|
+
);
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
|
|
701
827
|
// src/lib/auth.ts
|
|
702
828
|
async function getAuthCredentials() {
|
|
703
829
|
const runnerKey = process.env.EVIDENT_RUNNER_KEY;
|
|
@@ -5212,10 +5338,16 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
5212
5338
|
import chalk5 from "chalk";
|
|
5213
5339
|
import ora2 from "ora";
|
|
5214
5340
|
import { select as select2 } from "@inquirer/prompts";
|
|
5341
|
+
var INTERACTIVE_START_TIMEOUT_MS = 3e4;
|
|
5215
5342
|
async function ensureOpenCodeRunning(ctx) {
|
|
5216
5343
|
const healthCheck = await checkOpenCodeHealth(ctx.port);
|
|
5217
5344
|
if (healthCheck.healthy) {
|
|
5218
|
-
return {
|
|
5345
|
+
return {
|
|
5346
|
+
port: ctx.port,
|
|
5347
|
+
process: null,
|
|
5348
|
+
version: healthCheck.version ?? null,
|
|
5349
|
+
notReadyReason: null
|
|
5350
|
+
};
|
|
5219
5351
|
}
|
|
5220
5352
|
const runningInstances = await findHealthyOpenCodeInstances();
|
|
5221
5353
|
if (runningInstances.length > 0) {
|
|
@@ -5256,14 +5388,22 @@ async function ensureOpenCodeRunning(ctx) {
|
|
|
5256
5388
|
if (!ctx.interactive) {
|
|
5257
5389
|
ctx.log(`OpenCode is not running on port ${ctx.port}. Starting it automatically...`);
|
|
5258
5390
|
const proc = await startOpenCode(ctx.port);
|
|
5259
|
-
const health = await waitForOpenCodeHealth(ctx.port,
|
|
5391
|
+
const health = await waitForOpenCodeHealth(ctx.port, ctx.startTimeoutMs);
|
|
5260
5392
|
if (!health.healthy) {
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5393
|
+
return {
|
|
5394
|
+
port: ctx.port,
|
|
5395
|
+
process: proc,
|
|
5396
|
+
version: null,
|
|
5397
|
+
notReadyReason: `it did not become healthy within ${Math.round(ctx.startTimeoutMs / 1e3)}s`
|
|
5398
|
+
};
|
|
5264
5399
|
}
|
|
5265
5400
|
ctx.log(`OpenCode started on port ${ctx.port}${health.version ? ` (v${health.version})` : ""}`);
|
|
5266
|
-
return {
|
|
5401
|
+
return {
|
|
5402
|
+
port: ctx.port,
|
|
5403
|
+
process: proc,
|
|
5404
|
+
version: health.version ?? null,
|
|
5405
|
+
notReadyReason: null
|
|
5406
|
+
};
|
|
5267
5407
|
}
|
|
5268
5408
|
let port = ctx.port;
|
|
5269
5409
|
if (isPortInUse(port)) {
|
|
@@ -5316,15 +5456,15 @@ Port ${port} is already in use.`));
|
|
|
5316
5456
|
if (action === "start") {
|
|
5317
5457
|
const spinner = ora2("Starting OpenCode...").start();
|
|
5318
5458
|
const proc = await startOpenCode(port);
|
|
5319
|
-
const health = await waitForOpenCodeHealth(port,
|
|
5459
|
+
const health = await waitForOpenCodeHealth(port, INTERACTIVE_START_TIMEOUT_MS);
|
|
5320
5460
|
if (!health.healthy) {
|
|
5321
5461
|
spinner.fail("Failed to start OpenCode");
|
|
5322
5462
|
throw new Error("OpenCode failed to start");
|
|
5323
5463
|
}
|
|
5324
5464
|
spinner.stop();
|
|
5325
|
-
return { port, process: proc, version: health.version ?? null };
|
|
5465
|
+
return { port, process: proc, version: health.version ?? null, notReadyReason: null };
|
|
5326
5466
|
}
|
|
5327
|
-
return { port, process: null, version: null };
|
|
5467
|
+
return { port, process: null, version: null, notReadyReason: "you chose to continue without it" };
|
|
5328
5468
|
}
|
|
5329
5469
|
|
|
5330
5470
|
// src/commands/agent-lookup.ts
|
|
@@ -5521,6 +5661,35 @@ function resolveFileSyncDirectories(raw, homeDir) {
|
|
|
5521
5661
|
}
|
|
5522
5662
|
return directories;
|
|
5523
5663
|
}
|
|
5664
|
+
var DEFAULT_OPENCODE_START_TIMEOUT_SECONDS = 180;
|
|
5665
|
+
var MAX_OPENCODE_START_TIMEOUT_SECONDS = 3600;
|
|
5666
|
+
var OPENCODE_START_TIMEOUT_ENV = "EVIDENT_OPENCODE_START_TIMEOUT";
|
|
5667
|
+
function resolveOpenCodeStartTimeoutMs(options, env = process.env) {
|
|
5668
|
+
const defaultMs = DEFAULT_OPENCODE_START_TIMEOUT_SECONDS * 1e3;
|
|
5669
|
+
let raw;
|
|
5670
|
+
let source;
|
|
5671
|
+
if (options.opencodeStartTimeout !== void 0) {
|
|
5672
|
+
raw = options.opencodeStartTimeout;
|
|
5673
|
+
source = "--opencode-start-timeout";
|
|
5674
|
+
} else if (env[OPENCODE_START_TIMEOUT_ENV] !== void 0 && env[OPENCODE_START_TIMEOUT_ENV] !== "") {
|
|
5675
|
+
raw = env[OPENCODE_START_TIMEOUT_ENV];
|
|
5676
|
+
source = OPENCODE_START_TIMEOUT_ENV;
|
|
5677
|
+
} else {
|
|
5678
|
+
return { timeoutMs: defaultMs, warnings: [] };
|
|
5679
|
+
}
|
|
5680
|
+
const trimmed = raw.trim();
|
|
5681
|
+
const seconds = Number(trimmed);
|
|
5682
|
+
const isPositiveInteger = /^\d+$/.test(trimmed) && Number.isInteger(seconds) && seconds > 0;
|
|
5683
|
+
if (!isPositiveInteger || seconds > MAX_OPENCODE_START_TIMEOUT_SECONDS) {
|
|
5684
|
+
return {
|
|
5685
|
+
timeoutMs: defaultMs,
|
|
5686
|
+
warnings: [
|
|
5687
|
+
`Ignoring invalid ${source} "${raw}": expected a positive integer number of seconds (at most ${MAX_OPENCODE_START_TIMEOUT_SECONDS}); using the default ${DEFAULT_OPENCODE_START_TIMEOUT_SECONDS}s`
|
|
5688
|
+
]
|
|
5689
|
+
};
|
|
5690
|
+
}
|
|
5691
|
+
return { timeoutMs: seconds * 1e3, warnings: [] };
|
|
5692
|
+
}
|
|
5524
5693
|
function meetsThreshold(state, level) {
|
|
5525
5694
|
return LOG_LEVELS[level] >= LOG_LEVELS[state.logLevel];
|
|
5526
5695
|
}
|
|
@@ -5542,6 +5711,10 @@ function log2(state, message, level = "info") {
|
|
|
5542
5711
|
function logActivity(state, entry) {
|
|
5543
5712
|
const level = entry.level ?? (entry.type === "error" ? "error" : "info");
|
|
5544
5713
|
if (!meetsThreshold(state, level)) return;
|
|
5714
|
+
forwardRunnerActivity(
|
|
5715
|
+
{ level, message: entry.message, error: entry.error },
|
|
5716
|
+
{ agentId: state.agentId, authHeader: state.authHeader }
|
|
5717
|
+
);
|
|
5545
5718
|
const fullEntry = {
|
|
5546
5719
|
...entry,
|
|
5547
5720
|
level,
|
|
@@ -5896,6 +6069,7 @@ async function run(options) {
|
|
|
5896
6069
|
sessionCleanupTimers: [],
|
|
5897
6070
|
authHeader: ""
|
|
5898
6071
|
};
|
|
6072
|
+
setTelemetryAuthProvider(() => ({ authHeader: state.authHeader, agentId: state.agentId }));
|
|
5899
6073
|
if (fileSyncDirectories.length > 0) {
|
|
5900
6074
|
log2(state, `File sync enabled for: ${fileSyncDirectories.join(", ")}`);
|
|
5901
6075
|
} else {
|
|
@@ -6084,40 +6258,52 @@ async function run(options) {
|
|
|
6084
6258
|
} else {
|
|
6085
6259
|
log2(state, "Not running in a MicroVM (MICROVM_ID unset) \u2014 nothing to report", "debug");
|
|
6086
6260
|
}
|
|
6261
|
+
const { timeoutMs: opencodeStartTimeoutMs, warnings: opencodeStartTimeoutWarnings } = resolveOpenCodeStartTimeoutMs(options, process.env);
|
|
6262
|
+
for (const warning2 of opencodeStartTimeoutWarnings) {
|
|
6263
|
+
logActivity(state, { type: "info", level: "warn", message: warning2 });
|
|
6264
|
+
}
|
|
6087
6265
|
const ocSpinner = interactive && !state.json ? ora3("Checking OpenCode...").start() : null;
|
|
6088
6266
|
try {
|
|
6089
6267
|
const oc = await ensureOpenCodeRunning({
|
|
6090
6268
|
port: state.port,
|
|
6091
6269
|
interactive: state.interactive,
|
|
6092
6270
|
agentId: state.agentId,
|
|
6093
|
-
log: (message) => log2(state, message)
|
|
6271
|
+
log: (message) => log2(state, message),
|
|
6272
|
+
startTimeoutMs: opencodeStartTimeoutMs
|
|
6094
6273
|
});
|
|
6095
6274
|
state.port = oc.port;
|
|
6096
6275
|
state.opencodeProcess = oc.process;
|
|
6097
6276
|
state.opencodeVersion = oc.version;
|
|
6098
|
-
state.opencodeConnected = oc.
|
|
6277
|
+
state.opencodeConnected = oc.notReadyReason === null;
|
|
6099
6278
|
const version2 = state.opencodeVersion ? ` (v${state.opencodeVersion})` : "";
|
|
6100
6279
|
ocSpinner?.succeed(`OpenCode running on port ${state.port}${version2}`);
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6280
|
+
if (!state.interactive && oc.notReadyReason !== null) {
|
|
6281
|
+
const message = `OpenCode is not ready on port ${state.port}: ${oc.notReadyReason}. The runner will still come online, but messages will fail until opencode answers \u2014 raise the wait with --opencode-start-timeout <seconds> (env ${OPENCODE_START_TIMEOUT_ENV}).`;
|
|
6282
|
+
logActivity(state, { type: "info", level: "warn", message });
|
|
6283
|
+
} else {
|
|
6284
|
+
const versionWarning = buildOpenCodeVersionWarning(state.opencodeVersion);
|
|
6285
|
+
if (versionWarning) {
|
|
6286
|
+
log2(state, versionWarning, "warn");
|
|
6287
|
+
if (state.interactive && !state.json) {
|
|
6288
|
+
logActivity(state, { type: "info", level: "warn", message: versionWarning });
|
|
6289
|
+
}
|
|
6106
6290
|
}
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6112
|
-
|
|
6113
|
-
|
|
6114
|
-
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
|
|
6291
|
+
const noProviderWarning = buildNoProviderWarning(
|
|
6292
|
+
await hasAnyConfiguredProvider(state.port)
|
|
6293
|
+
);
|
|
6294
|
+
if (noProviderWarning) {
|
|
6295
|
+
log2(state, noProviderWarning, "warn");
|
|
6296
|
+
if (state.interactive && !state.json) {
|
|
6297
|
+
logActivity(state, { type: "info", level: "warn", message: noProviderWarning });
|
|
6298
|
+
blank();
|
|
6299
|
+
console.log(chalk6.yellow("\u26A0 No OpenCode model provider is configured."));
|
|
6300
|
+
console.log(
|
|
6301
|
+
chalk6.dim(
|
|
6302
|
+
`Run ${chalk6.cyan("opencode auth login")} to set one up \u2014 messages will fail until then.`
|
|
6303
|
+
)
|
|
6304
|
+
);
|
|
6305
|
+
blank();
|
|
6306
|
+
}
|
|
6121
6307
|
}
|
|
6122
6308
|
}
|
|
6123
6309
|
} catch (error2) {
|
|
@@ -6324,7 +6510,10 @@ program.command("run").description("Connect to Evident and process messages").op
|
|
|
6324
6510
|
).option("-p, --port <port>", "OpenCode port (default: 4096)", "4096").option(
|
|
6325
6511
|
"--log-level <level>",
|
|
6326
6512
|
"Log verbosity: debug | info | warn | error (default: info). Env: EVIDENT_LOG_LEVEL"
|
|
6327
|
-
).option("-v, --verbose", "Alias for --log-level debug (ignored if --log-level is set)").option("-c, --conversation <id>", "Process only this specific conversation").option("--idle-timeout <seconds>", "Exit after N seconds idle").option(
|
|
6513
|
+
).option("-v, --verbose", "Alias for --log-level debug (ignored if --log-level is set)").option("-c, --conversation <id>", "Process only this specific conversation").option("--idle-timeout <seconds>", "Exit after N seconds idle").option(
|
|
6514
|
+
"--opencode-start-timeout <seconds>",
|
|
6515
|
+
"Seconds to wait for OpenCode to become healthy when the runner starts it (default: 180). Env: EVIDENT_OPENCODE_START_TIMEOUT"
|
|
6516
|
+
).option("--json", "Output in JSON format").option(
|
|
6328
6517
|
"--session-cleanup-max-age <duration>",
|
|
6329
6518
|
"Delete OpenCode sessions idle longer than this (e.g. 7d, 24h). Enables cleanup. Env: EVIDENT_SESSION_CLEANUP_MAX_AGE"
|
|
6330
6519
|
).option(
|
|
@@ -6353,6 +6542,9 @@ program.command("run").description("Connect to Evident and process messages").op
|
|
|
6353
6542
|
verbose: options.verbose,
|
|
6354
6543
|
conversation: options.conversation,
|
|
6355
6544
|
idleTimeout: options.idleTimeout ? parseInt(options.idleTimeout, 10) : void 0,
|
|
6545
|
+
// Raw string — validation/precedence is single-sourced in run.ts's
|
|
6546
|
+
// resolveOpenCodeStartTimeoutMs (flag > EVIDENT_OPENCODE_START_TIMEOUT > 180s default).
|
|
6547
|
+
opencodeStartTimeout: options.opencodeStartTimeout,
|
|
6356
6548
|
json: options.json,
|
|
6357
6549
|
// Raw strings — the resolver in run.ts single-sources parsing (M1).
|
|
6358
6550
|
sessionCleanupMaxAge: options.sessionCleanupMaxAge,
|