@evident-ai/cli 3.1.1-dev.dd048b6 → 3.1.1-dev.df276eb
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/dist/index.js +760 -274
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -532,6 +532,343 @@ async function whoami() {
|
|
|
532
532
|
blank();
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
// src/lib/auth.ts
|
|
536
|
+
async function getAuthCredentials() {
|
|
537
|
+
const runnerKey = process.env.EVIDENT_RUNNER_KEY;
|
|
538
|
+
const agentKey = process.env.EVIDENT_AGENT_KEY;
|
|
539
|
+
if (runnerKey) {
|
|
540
|
+
return {
|
|
541
|
+
token: runnerKey,
|
|
542
|
+
authType: "agent_key",
|
|
543
|
+
keySource: "runner_key",
|
|
544
|
+
notice: agentKey ? "Both EVIDENT_RUNNER_KEY and EVIDENT_AGENT_KEY are set; using EVIDENT_RUNNER_KEY." : void 0
|
|
545
|
+
};
|
|
546
|
+
}
|
|
547
|
+
if (agentKey) {
|
|
548
|
+
return { token: agentKey, authType: "agent_key", keySource: "agent_key" };
|
|
549
|
+
}
|
|
550
|
+
const userToken = process.env.EVIDENT_TOKEN;
|
|
551
|
+
if (userToken) {
|
|
552
|
+
return { token: userToken, authType: "bearer" };
|
|
553
|
+
}
|
|
554
|
+
const keychainCreds = await getToken();
|
|
555
|
+
if (keychainCreds) {
|
|
556
|
+
return {
|
|
557
|
+
token: keychainCreds.token,
|
|
558
|
+
authType: "bearer",
|
|
559
|
+
user: keychainCreds.user
|
|
560
|
+
};
|
|
561
|
+
}
|
|
562
|
+
return null;
|
|
563
|
+
}
|
|
564
|
+
function getAuthHeader(credentials2) {
|
|
565
|
+
if (credentials2.authType === "agent_key") {
|
|
566
|
+
return `SandboxKey ${credentials2.token}`;
|
|
567
|
+
}
|
|
568
|
+
return `Bearer ${credentials2.token}`;
|
|
569
|
+
}
|
|
570
|
+
function isInteractive(jsonOutput) {
|
|
571
|
+
if (jsonOutput) return false;
|
|
572
|
+
if (process.env.CI) return false;
|
|
573
|
+
if (process.env.GITHUB_ACTIONS) return false;
|
|
574
|
+
if (!process.stdin.isTTY) return false;
|
|
575
|
+
return true;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// src/commands/agent-lookup.ts
|
|
579
|
+
async function readErrorMessage(response) {
|
|
580
|
+
const text = await response.text().catch(() => "");
|
|
581
|
+
if (!text) return response.statusText || void 0;
|
|
582
|
+
try {
|
|
583
|
+
const data = JSON.parse(text);
|
|
584
|
+
const message = data.message ?? data.error;
|
|
585
|
+
if (typeof message === "string" && message.trim()) {
|
|
586
|
+
return message;
|
|
587
|
+
}
|
|
588
|
+
} catch {
|
|
589
|
+
}
|
|
590
|
+
return text.trim() || response.statusText || void 0;
|
|
591
|
+
}
|
|
592
|
+
function authFailureHint(apiUrl, serverMessage) {
|
|
593
|
+
const reason = serverMessage ? `: ${serverMessage}` : "";
|
|
594
|
+
return `Authentication failed${reason}. Your credentials were rejected by ${apiUrl}. This usually means you logged in against a different environment, or your session expired \u2014 log in again pointing at this endpoint and retry.`;
|
|
595
|
+
}
|
|
596
|
+
async function resolveAgentIdFromKey(authHeader) {
|
|
597
|
+
const apiUrl = getApiUrlConfig();
|
|
598
|
+
try {
|
|
599
|
+
const response = await fetch(`${apiUrl}/me`, {
|
|
600
|
+
headers: { Authorization: authHeader }
|
|
601
|
+
});
|
|
602
|
+
if (response.status === 401) {
|
|
603
|
+
const serverMessage = await readErrorMessage(response);
|
|
604
|
+
return { error: authFailureHint(apiUrl, serverMessage), authFailed: true };
|
|
605
|
+
}
|
|
606
|
+
if (!response.ok) {
|
|
607
|
+
const serverMessage = await readErrorMessage(response);
|
|
608
|
+
return {
|
|
609
|
+
error: `Failed to resolve runner from key (HTTP ${response.status})${serverMessage ? `: ${serverMessage}` : ""}`
|
|
610
|
+
};
|
|
611
|
+
}
|
|
612
|
+
const data = await response.json();
|
|
613
|
+
if (data.auth_type === "agent_key" && data.agent_id) {
|
|
614
|
+
return { agent_id: data.agent_id };
|
|
615
|
+
}
|
|
616
|
+
return {
|
|
617
|
+
error: "Cannot resolve runner ID: auth type is not agent_key. Please provide --runner explicitly."
|
|
618
|
+
};
|
|
619
|
+
} catch (error2) {
|
|
620
|
+
const message = error2 instanceof Error ? error2.message : "Unknown error";
|
|
621
|
+
return { error: `Failed to resolve runner from key: ${message}` };
|
|
622
|
+
}
|
|
623
|
+
}
|
|
624
|
+
var BEST_EFFORT_NOTIFY_TIMEOUT_MS = 2e3;
|
|
625
|
+
async function notifyAgentDisconnected(agentId, authHeader) {
|
|
626
|
+
const apiUrl = getApiUrlConfig();
|
|
627
|
+
try {
|
|
628
|
+
const response = await fetch(`${apiUrl}/runners/${agentId}/disconnect`, {
|
|
629
|
+
method: "POST",
|
|
630
|
+
headers: { Authorization: authHeader },
|
|
631
|
+
signal: AbortSignal.timeout(BEST_EFFORT_NOTIFY_TIMEOUT_MS)
|
|
632
|
+
});
|
|
633
|
+
if (!response.ok) {
|
|
634
|
+
const serverMessage = await readErrorMessage(response);
|
|
635
|
+
return {
|
|
636
|
+
ok: false,
|
|
637
|
+
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`
|
|
638
|
+
};
|
|
639
|
+
}
|
|
640
|
+
return { ok: true };
|
|
641
|
+
} catch (error2) {
|
|
642
|
+
return { ok: false, error: describeBestEffortError(error2) };
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
function describeBestEffortError(error2) {
|
|
646
|
+
const name = error2?.name;
|
|
647
|
+
if (name === "TimeoutError" || name === "AbortError") {
|
|
648
|
+
return `timed out after ${BEST_EFFORT_NOTIFY_TIMEOUT_MS}ms`;
|
|
649
|
+
}
|
|
650
|
+
return error2 instanceof Error ? error2.message : String(error2);
|
|
651
|
+
}
|
|
652
|
+
async function reportMicrovmId(agentId, authHeader, microvmId) {
|
|
653
|
+
try {
|
|
654
|
+
const apiUrl = getApiUrlConfig();
|
|
655
|
+
const response = await fetch(`${apiUrl}/runners/${agentId}/microvm`, {
|
|
656
|
+
method: "POST",
|
|
657
|
+
headers: { Authorization: authHeader, "Content-Type": "application/json" },
|
|
658
|
+
body: JSON.stringify({ microvm_id: microvmId }),
|
|
659
|
+
signal: AbortSignal.timeout(BEST_EFFORT_NOTIFY_TIMEOUT_MS)
|
|
660
|
+
});
|
|
661
|
+
if (!response.ok) {
|
|
662
|
+
const serverMessage = await readErrorMessage(response);
|
|
663
|
+
return {
|
|
664
|
+
ok: false,
|
|
665
|
+
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`
|
|
666
|
+
};
|
|
667
|
+
}
|
|
668
|
+
return { ok: true };
|
|
669
|
+
} catch (error2) {
|
|
670
|
+
return { ok: false, error: describeBestEffortError(error2) };
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
function toReportedWindow(window) {
|
|
674
|
+
if (!window) return null;
|
|
675
|
+
return { utilization: window.utilization, resets_at: window.resetsAt };
|
|
676
|
+
}
|
|
677
|
+
async function reportClaudeUsage(agentId, authHeader, snapshot) {
|
|
678
|
+
try {
|
|
679
|
+
const apiUrl = getApiUrlConfig();
|
|
680
|
+
const response = await fetch(`${apiUrl}/runners/${agentId}/claude-usage`, {
|
|
681
|
+
method: "POST",
|
|
682
|
+
headers: { Authorization: authHeader, "Content-Type": "application/json" },
|
|
683
|
+
body: JSON.stringify({
|
|
684
|
+
five_hour: toReportedWindow(snapshot.fiveHour),
|
|
685
|
+
seven_day: toReportedWindow(snapshot.sevenDay)
|
|
686
|
+
}),
|
|
687
|
+
signal: AbortSignal.timeout(BEST_EFFORT_NOTIFY_TIMEOUT_MS)
|
|
688
|
+
});
|
|
689
|
+
if (!response.ok) {
|
|
690
|
+
const serverMessage = await readErrorMessage(response);
|
|
691
|
+
return {
|
|
692
|
+
ok: false,
|
|
693
|
+
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`
|
|
694
|
+
};
|
|
695
|
+
}
|
|
696
|
+
return { ok: true };
|
|
697
|
+
} catch (error2) {
|
|
698
|
+
return { ok: false, error: describeBestEffortError(error2) };
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
async function getAgentInfo(agentId, authHeader) {
|
|
702
|
+
const apiUrl = getApiUrlConfig();
|
|
703
|
+
try {
|
|
704
|
+
const response = await fetch(`${apiUrl}/runners/${agentId}`, {
|
|
705
|
+
headers: { Authorization: authHeader }
|
|
706
|
+
});
|
|
707
|
+
if (response.status === 401) {
|
|
708
|
+
const serverMessage = await readErrorMessage(response);
|
|
709
|
+
return { valid: false, error: authFailureHint(apiUrl, serverMessage), authFailed: true };
|
|
710
|
+
}
|
|
711
|
+
if (response.status === 403) {
|
|
712
|
+
const serverMessage = await readErrorMessage(response);
|
|
713
|
+
return {
|
|
714
|
+
valid: false,
|
|
715
|
+
error: serverMessage ?? "You do not have access to this runner (it may belong to a different team or organization)."
|
|
716
|
+
};
|
|
717
|
+
}
|
|
718
|
+
if (response.status === 404) {
|
|
719
|
+
const serverMessage = await readErrorMessage(response);
|
|
720
|
+
return { valid: false, error: serverMessage ?? `Runner ${agentId} not found` };
|
|
721
|
+
}
|
|
722
|
+
if (!response.ok) {
|
|
723
|
+
const serverMessage = await readErrorMessage(response);
|
|
724
|
+
return {
|
|
725
|
+
valid: false,
|
|
726
|
+
error: `API error (HTTP ${response.status})${serverMessage ? `: ${serverMessage}` : ""}`
|
|
727
|
+
};
|
|
728
|
+
}
|
|
729
|
+
const agent = await response.json();
|
|
730
|
+
if (agent.agent_type !== "local") {
|
|
731
|
+
return {
|
|
732
|
+
valid: false,
|
|
733
|
+
error: `Runner is type '${agent.agent_type}', must be 'local' for CLI connection`
|
|
734
|
+
};
|
|
735
|
+
}
|
|
736
|
+
return { valid: true, agent };
|
|
737
|
+
} catch (error2) {
|
|
738
|
+
const message = error2 instanceof Error ? error2.message : "Unknown error";
|
|
739
|
+
return { valid: false, error: `Failed to validate runner: ${message}` };
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
// src/commands/status.ts
|
|
744
|
+
var STATUS_TIMEOUT_MS = 1e4;
|
|
745
|
+
function authLabelFor(credentials2) {
|
|
746
|
+
if (credentials2.authType === "agent_key") {
|
|
747
|
+
return credentials2.keySource === "agent_key" ? "runner key (EVIDENT_AGENT_KEY)" : "runner key (EVIDENT_RUNNER_KEY)";
|
|
748
|
+
}
|
|
749
|
+
return "user token";
|
|
750
|
+
}
|
|
751
|
+
function describeFetchError(error2) {
|
|
752
|
+
const name = error2?.name;
|
|
753
|
+
if (name === "TimeoutError" || name === "AbortError") {
|
|
754
|
+
return `timed out after ${STATUS_TIMEOUT_MS}ms waiting for a response`;
|
|
755
|
+
}
|
|
756
|
+
return error2 instanceof Error ? error2.message : String(error2);
|
|
757
|
+
}
|
|
758
|
+
async function checkStatus(jsonMode) {
|
|
759
|
+
const apiUrl = getApiUrlConfig();
|
|
760
|
+
const credentials2 = await getAuthCredentials();
|
|
761
|
+
if (!credentials2) {
|
|
762
|
+
return {
|
|
763
|
+
ok: false,
|
|
764
|
+
endpoint: apiUrl,
|
|
765
|
+
reason: "no_credentials",
|
|
766
|
+
error: "No credentials configured. Set EVIDENT_RUNNER_KEY (or EVIDENT_AGENT_KEY), or EVIDENT_TOKEN, or run `evident login`.",
|
|
767
|
+
exitCode: 1
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
if (credentials2.notice && !jsonMode) {
|
|
771
|
+
printWarning(credentials2.notice);
|
|
772
|
+
}
|
|
773
|
+
let response;
|
|
774
|
+
try {
|
|
775
|
+
response = await fetch(`${apiUrl}/me`, {
|
|
776
|
+
headers: { Authorization: getAuthHeader(credentials2) },
|
|
777
|
+
signal: AbortSignal.timeout(STATUS_TIMEOUT_MS)
|
|
778
|
+
});
|
|
779
|
+
} catch (error2) {
|
|
780
|
+
return {
|
|
781
|
+
ok: false,
|
|
782
|
+
endpoint: apiUrl,
|
|
783
|
+
authLabel: authLabelFor(credentials2),
|
|
784
|
+
reason: "unreachable",
|
|
785
|
+
error: `Could not reach ${apiUrl}: ${describeFetchError(error2)}. The credentials were NOT validated.`,
|
|
786
|
+
exitCode: 75
|
|
787
|
+
};
|
|
788
|
+
}
|
|
789
|
+
if (response.status === 401) {
|
|
790
|
+
const serverMessage = await readErrorMessage(response);
|
|
791
|
+
return {
|
|
792
|
+
ok: false,
|
|
793
|
+
endpoint: apiUrl,
|
|
794
|
+
authLabel: authLabelFor(credentials2),
|
|
795
|
+
reason: "unauthorized",
|
|
796
|
+
error: authFailureHint(apiUrl, serverMessage),
|
|
797
|
+
exitCode: 1
|
|
798
|
+
};
|
|
799
|
+
}
|
|
800
|
+
if (response.status >= 500) {
|
|
801
|
+
const serverMessage = await readErrorMessage(response);
|
|
802
|
+
return {
|
|
803
|
+
ok: false,
|
|
804
|
+
endpoint: apiUrl,
|
|
805
|
+
authLabel: authLabelFor(credentials2),
|
|
806
|
+
reason: "unreachable",
|
|
807
|
+
error: `${apiUrl} returned HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}. The credentials were NOT validated.`,
|
|
808
|
+
exitCode: 75
|
|
809
|
+
};
|
|
810
|
+
}
|
|
811
|
+
if (!response.ok) {
|
|
812
|
+
const serverMessage = await readErrorMessage(response);
|
|
813
|
+
return {
|
|
814
|
+
ok: false,
|
|
815
|
+
endpoint: apiUrl,
|
|
816
|
+
authLabel: authLabelFor(credentials2),
|
|
817
|
+
reason: "http_error",
|
|
818
|
+
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`,
|
|
819
|
+
exitCode: 1
|
|
820
|
+
};
|
|
821
|
+
}
|
|
822
|
+
const data = await response.json();
|
|
823
|
+
return {
|
|
824
|
+
ok: true,
|
|
825
|
+
endpoint: apiUrl,
|
|
826
|
+
authType: data.auth_type,
|
|
827
|
+
authLabel: authLabelFor(credentials2),
|
|
828
|
+
runnerId: data.auth_type === "agent_key" ? data.agent_id : void 0,
|
|
829
|
+
reason: "ok",
|
|
830
|
+
exitCode: 0
|
|
831
|
+
};
|
|
832
|
+
}
|
|
833
|
+
function printJson(result) {
|
|
834
|
+
const payload = {
|
|
835
|
+
ok: result.ok,
|
|
836
|
+
endpoint: result.endpoint
|
|
837
|
+
};
|
|
838
|
+
if (result.authType) payload.auth_type = result.authType;
|
|
839
|
+
if (result.runnerId) payload.runner_id = result.runnerId;
|
|
840
|
+
if (result.reason) payload.reason = result.reason;
|
|
841
|
+
if (result.error) payload.error = result.error;
|
|
842
|
+
console.log(JSON.stringify(payload));
|
|
843
|
+
}
|
|
844
|
+
function printHuman(result) {
|
|
845
|
+
blank();
|
|
846
|
+
console.log(keyValue("Endpoint", result.endpoint));
|
|
847
|
+
if (result.ok) {
|
|
848
|
+
console.log(keyValue("Auth", result.authLabel ?? "\u2014"));
|
|
849
|
+
if (result.runnerId) {
|
|
850
|
+
console.log(keyValue("Runner", result.runnerId));
|
|
851
|
+
}
|
|
852
|
+
console.log(keyValue("Status", "OK \u2014 credentials accepted"));
|
|
853
|
+
blank();
|
|
854
|
+
return;
|
|
855
|
+
}
|
|
856
|
+
if (result.authLabel) {
|
|
857
|
+
console.log(keyValue("Auth", result.authLabel));
|
|
858
|
+
}
|
|
859
|
+
blank();
|
|
860
|
+
printError(result.error ?? "Unknown error");
|
|
861
|
+
}
|
|
862
|
+
async function status(options = {}) {
|
|
863
|
+
const result = await checkStatus(Boolean(options.json));
|
|
864
|
+
if (options.json) {
|
|
865
|
+
printJson(result);
|
|
866
|
+
} else {
|
|
867
|
+
printHuman(result);
|
|
868
|
+
}
|
|
869
|
+
process.exit(result.exitCode);
|
|
870
|
+
}
|
|
871
|
+
|
|
535
872
|
// src/lib/claude-usage.ts
|
|
536
873
|
import { execFileSync } from "child_process";
|
|
537
874
|
import { readFileSync } from "fs";
|
|
@@ -582,6 +919,10 @@ var ClaudeUsageError = class extends Error {
|
|
|
582
919
|
function isLocalCredentialProblem(err) {
|
|
583
920
|
return err instanceof ClaudeUsageError && (err.reason === "no_credentials" || err.reason === "credentials_expired");
|
|
584
921
|
}
|
|
922
|
+
function normalizeResetsAt(value) {
|
|
923
|
+
const ms = Date.parse(value);
|
|
924
|
+
return Number.isNaN(ms) ? null : new Date(ms).toISOString();
|
|
925
|
+
}
|
|
585
926
|
function toWindow(value) {
|
|
586
927
|
if (!value || typeof value !== "object") {
|
|
587
928
|
return null;
|
|
@@ -590,7 +931,11 @@ function toWindow(value) {
|
|
|
590
931
|
if (typeof window.utilization !== "number" || typeof window.resets_at !== "string") {
|
|
591
932
|
return null;
|
|
592
933
|
}
|
|
593
|
-
|
|
934
|
+
const resetsAt = normalizeResetsAt(window.resets_at);
|
|
935
|
+
if (resetsAt === null) {
|
|
936
|
+
return null;
|
|
937
|
+
}
|
|
938
|
+
return { utilization: window.utilization, resetsAt };
|
|
594
939
|
}
|
|
595
940
|
async function getClaudeUsage() {
|
|
596
941
|
const credentials2 = readClaudeCliCredentials();
|
|
@@ -652,6 +997,9 @@ import { homedir as homedir3 } from "os";
|
|
|
652
997
|
import { isAbsolute as isAbsolute2, join as join3, parse, resolve as resolvePath } from "path";
|
|
653
998
|
import chalk6 from "chalk";
|
|
654
999
|
|
|
1000
|
+
// ../../packages/types/src/agents/index.ts
|
|
1001
|
+
var MICROVM_MAX_LIFETIME_MS = 8 * 60 * 6e4;
|
|
1002
|
+
|
|
655
1003
|
// ../../packages/types/src/telemetry/index.ts
|
|
656
1004
|
var TelemetryEventTypes = {
|
|
657
1005
|
// Agent activity events (shown in web UI activity log)
|
|
@@ -934,49 +1282,6 @@ function forwardRunnerActivity(entry, context) {
|
|
|
934
1282
|
}
|
|
935
1283
|
}
|
|
936
1284
|
|
|
937
|
-
// src/lib/auth.ts
|
|
938
|
-
async function getAuthCredentials() {
|
|
939
|
-
const runnerKey = process.env.EVIDENT_RUNNER_KEY;
|
|
940
|
-
const agentKey = process.env.EVIDENT_AGENT_KEY;
|
|
941
|
-
if (runnerKey) {
|
|
942
|
-
return {
|
|
943
|
-
token: runnerKey,
|
|
944
|
-
authType: "agent_key",
|
|
945
|
-
keySource: "runner_key",
|
|
946
|
-
notice: agentKey ? "Both EVIDENT_RUNNER_KEY and EVIDENT_AGENT_KEY are set; using EVIDENT_RUNNER_KEY." : void 0
|
|
947
|
-
};
|
|
948
|
-
}
|
|
949
|
-
if (agentKey) {
|
|
950
|
-
return { token: agentKey, authType: "agent_key", keySource: "agent_key" };
|
|
951
|
-
}
|
|
952
|
-
const userToken = process.env.EVIDENT_TOKEN;
|
|
953
|
-
if (userToken) {
|
|
954
|
-
return { token: userToken, authType: "bearer" };
|
|
955
|
-
}
|
|
956
|
-
const keychainCreds = await getToken();
|
|
957
|
-
if (keychainCreds) {
|
|
958
|
-
return {
|
|
959
|
-
token: keychainCreds.token,
|
|
960
|
-
authType: "bearer",
|
|
961
|
-
user: keychainCreds.user
|
|
962
|
-
};
|
|
963
|
-
}
|
|
964
|
-
return null;
|
|
965
|
-
}
|
|
966
|
-
function getAuthHeader(credentials2) {
|
|
967
|
-
if (credentials2.authType === "agent_key") {
|
|
968
|
-
return `SandboxKey ${credentials2.token}`;
|
|
969
|
-
}
|
|
970
|
-
return `Bearer ${credentials2.token}`;
|
|
971
|
-
}
|
|
972
|
-
function isInteractive(jsonOutput) {
|
|
973
|
-
if (jsonOutput) return false;
|
|
974
|
-
if (process.env.CI) return false;
|
|
975
|
-
if (process.env.GITHUB_ACTIONS) return false;
|
|
976
|
-
if (!process.stdin.isTTY) return false;
|
|
977
|
-
return true;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
1285
|
// src/lib/opencode/health.ts
|
|
981
1286
|
async function checkOpenCodeHealth(port) {
|
|
982
1287
|
try {
|
|
@@ -1784,6 +2089,21 @@ function messageError(messages, userMessageId) {
|
|
|
1784
2089
|
}
|
|
1785
2090
|
return "The agent run failed.";
|
|
1786
2091
|
}
|
|
2092
|
+
function isAbortedTerminalReply(messages, userMessageId) {
|
|
2093
|
+
const reply = findLastAssistantReplyFor(messages, userMessageId);
|
|
2094
|
+
const error2 = errorOf(reply);
|
|
2095
|
+
if (error2 == null) return false;
|
|
2096
|
+
if (typeof error2 === "string") return error2.trim() === "Aborted";
|
|
2097
|
+
if (typeof error2 === "object") {
|
|
2098
|
+
const e = error2;
|
|
2099
|
+
if (e.name === "MessageAbortedError") return true;
|
|
2100
|
+
if (e.name === "AbortError") return true;
|
|
2101
|
+
const dataMessage = e.data?.message;
|
|
2102
|
+
const rendered = typeof dataMessage === "string" ? dataMessage : typeof e.message === "string" ? e.message : null;
|
|
2103
|
+
return rendered != null && rendered.trim() === "Aborted";
|
|
2104
|
+
}
|
|
2105
|
+
return false;
|
|
2106
|
+
}
|
|
1787
2107
|
function messageFailure(messages, userMessageId) {
|
|
1788
2108
|
const reply = findLastAssistantReplyFor(messages, userMessageId);
|
|
1789
2109
|
const error2 = errorOf(reply);
|
|
@@ -2386,6 +2706,10 @@ function nextReportDelayMs(random = Math.random) {
|
|
|
2386
2706
|
return BASE_REPORT_DELAY_MS - jitterRangeMs + random() * (2 * jitterRangeMs);
|
|
2387
2707
|
}
|
|
2388
2708
|
var FIRST_REPORT_DELAY_MS = 5e3 + Math.random() * 1e4;
|
|
2709
|
+
var CLAUDE_USAGE_FAILURE_REESCALATION_TICKS = 6;
|
|
2710
|
+
function claudeUsageFailureLogLevel(consecutiveFailures) {
|
|
2711
|
+
return consecutiveFailures === 1 || consecutiveFailures % CLAUDE_USAGE_FAILURE_REESCALATION_TICKS === 0 ? "warn" : "debug";
|
|
2712
|
+
}
|
|
2389
2713
|
|
|
2390
2714
|
// src/lib/channels/driver.ts
|
|
2391
2715
|
import { homedir as homedir2 } from "os";
|
|
@@ -2708,8 +3032,8 @@ async function applyOne(options, file) {
|
|
|
2708
3032
|
await ack(options, file, "applied");
|
|
2709
3033
|
return true;
|
|
2710
3034
|
}
|
|
2711
|
-
function durableDownloadCode(
|
|
2712
|
-
return
|
|
3035
|
+
function durableDownloadCode(status2) {
|
|
3036
|
+
return status2 === 413 ? "file_too_large" : "write_failed";
|
|
2713
3037
|
}
|
|
2714
3038
|
async function downloadContent(options, file, label) {
|
|
2715
3039
|
try {
|
|
@@ -2742,8 +3066,8 @@ async function downloadContent(options, file, label) {
|
|
|
2742
3066
|
return { ok: false, terminal: false };
|
|
2743
3067
|
}
|
|
2744
3068
|
}
|
|
2745
|
-
async function ack(options, file,
|
|
2746
|
-
const outcome = `${
|
|
3069
|
+
async function ack(options, file, status2, reason) {
|
|
3070
|
+
const outcome = `${status2}${reason ? ` (${reason})` : ""}`;
|
|
2747
3071
|
try {
|
|
2748
3072
|
const res = await options.fetchImpl(
|
|
2749
3073
|
`${options.apiUrl}/runners/${options.agentId}/files/${file.id}/ack`,
|
|
@@ -2753,7 +3077,7 @@ async function ack(options, file, status, reason) {
|
|
|
2753
3077
|
Authorization: options.getAuthHeader(),
|
|
2754
3078
|
"Content-Type": "application/json"
|
|
2755
3079
|
},
|
|
2756
|
-
body: JSON.stringify(reason ? { status, reason } : { status })
|
|
3080
|
+
body: JSON.stringify(reason ? { status: status2, reason } : { status: status2 })
|
|
2757
3081
|
}
|
|
2758
3082
|
);
|
|
2759
3083
|
if (!res.ok) {
|
|
@@ -2825,10 +3149,10 @@ var ChannelAuthError = class extends Error {
|
|
|
2825
3149
|
};
|
|
2826
3150
|
var ChannelTerminalError = class extends Error {
|
|
2827
3151
|
status;
|
|
2828
|
-
constructor(message,
|
|
3152
|
+
constructor(message, status2) {
|
|
2829
3153
|
super(message);
|
|
2830
3154
|
this.name = "ChannelTerminalError";
|
|
2831
|
-
this.status =
|
|
3155
|
+
this.status = status2;
|
|
2832
3156
|
}
|
|
2833
3157
|
};
|
|
2834
3158
|
function backoffDelay(attempt, policy) {
|
|
@@ -2836,8 +3160,8 @@ function backoffDelay(attempt, policy) {
|
|
|
2836
3160
|
const capped = Math.min(policy.maxDelayMs, exp);
|
|
2837
3161
|
return Math.floor(Math.random() * capped);
|
|
2838
3162
|
}
|
|
2839
|
-
function isRetryableStatus(
|
|
2840
|
-
return
|
|
3163
|
+
function isRetryableStatus(status2) {
|
|
3164
|
+
return status2 === 429 || status2 >= 500 && status2 <= 599;
|
|
2841
3165
|
}
|
|
2842
3166
|
var ChannelDriver = class _ChannelDriver {
|
|
2843
3167
|
agentId;
|
|
@@ -2952,6 +3276,24 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
2952
3276
|
* processing list, exactly like `dontRedispatch`/`doneUndeliverable`.
|
|
2953
3277
|
*/
|
|
2954
3278
|
readoptPollUnresolvedSignalled = /* @__PURE__ */ new Set();
|
|
3279
|
+
/**
|
|
3280
|
+
* "Already emitted `redrive_unresolved` for this row" (#965). Mirrors
|
|
3281
|
+
* `readoptPollUnresolvedSignalled`: `resolveRedrive`'s `unresolved` leaf recurs
|
|
3282
|
+
* every ~2s drain until opencode's status becomes readable, but the
|
|
3283
|
+
* server-visible signal is an OUTCOME, so it fires at most once per row. Cleared
|
|
3284
|
+
* on any non-`unresolved` outcome so the set cannot grow beyond the currently
|
|
3285
|
+
* unresolvable rows.
|
|
3286
|
+
*/
|
|
3287
|
+
redriveUnresolvedSignalled = /* @__PURE__ */ new Set();
|
|
3288
|
+
/**
|
|
3289
|
+
* First `now()` a `pending` row's re-drive was observed `unresolved` (#965). A
|
|
3290
|
+
* `pending` row is invisible to every cron arm (all require `status =
|
|
3291
|
+
* 'processing'`), so an indefinitely-`unresolved` row would be stranded with
|
|
3292
|
+
* nothing driving it. Once `now - since >= pausedMaxWaitMs`, `resolveRedrive`
|
|
3293
|
+
* takes `dispatch` instead of `unresolved` (reusing the existing knob — see
|
|
3294
|
+
* ADR-0047's own "unreachable ⇒ bounded" rule). Cleared on any other outcome.
|
|
3295
|
+
*/
|
|
3296
|
+
redriveUnresolvedSince = /* @__PURE__ */ new Map();
|
|
2955
3297
|
/**
|
|
2956
3298
|
* "A null-id re-adopt re-dispatch is in flight, awaiting its read-back" (WI-5
|
|
2957
3299
|
* Task 5.4, High-2). Since we no longer send a caller-supplied id, a re-dispatch
|
|
@@ -3291,6 +3633,12 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
3291
3633
|
skippedAlreadyDispatched += 1;
|
|
3292
3634
|
continue;
|
|
3293
3635
|
}
|
|
3636
|
+
if (message.opencode_message_id) {
|
|
3637
|
+
const outcome = await this.resolveRedrive(conv, sessionId, message, refusedSessionId);
|
|
3638
|
+
if (outcome !== "dispatch") {
|
|
3639
|
+
break;
|
|
3640
|
+
}
|
|
3641
|
+
}
|
|
3294
3642
|
const options = {
|
|
3295
3643
|
agent: message.opencode_agent ?? void 0,
|
|
3296
3644
|
model: message.opencode_model ?? void 0
|
|
@@ -3335,50 +3683,278 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
3335
3683
|
this.sessions.delete(conv.id);
|
|
3336
3684
|
this.supersede(conv.id, sessionId);
|
|
3337
3685
|
this.log({
|
|
3338
|
-
level: "warn",
|
|
3339
|
-
message: `Abandoning OpenCode session ${sessionId.slice(0, 8)} as the binding for conversation ${conv.id.slice(0, 8)} (it exists but failed to run a turn) \u2014 a fresh session is created on the next tick, whatever the persisted binding says by then.`,
|
|
3686
|
+
level: "warn",
|
|
3687
|
+
message: `Abandoning OpenCode session ${sessionId.slice(0, 8)} as the binding for conversation ${conv.id.slice(0, 8)} (it exists but failed to run a turn) \u2014 a fresh session is created on the next tick, whatever the persisted binding says by then.`,
|
|
3688
|
+
conversation_id: conv.id,
|
|
3689
|
+
message_id: message.id
|
|
3690
|
+
});
|
|
3691
|
+
await this.markFailed(conv.id, message.id, null, errorMessage).catch((markErr) => {
|
|
3692
|
+
this.log({
|
|
3693
|
+
level: "warn",
|
|
3694
|
+
message: `markFailed PATCH for message ${message.id.slice(0, 8)} (conversation ${conv.id.slice(0, 8)}) failed (best-effort, not retried): ${markErr instanceof Error ? markErr.message : String(markErr)}`,
|
|
3695
|
+
conversation_id: conv.id,
|
|
3696
|
+
message_id: message.id
|
|
3697
|
+
});
|
|
3698
|
+
});
|
|
3699
|
+
this.log({
|
|
3700
|
+
level: "error",
|
|
3701
|
+
message: `Message ${message.id.slice(0, 8)} dispatch failed: ${errorMessage}`,
|
|
3702
|
+
conversation_id: conv.id,
|
|
3703
|
+
message_id: message.id
|
|
3704
|
+
});
|
|
3705
|
+
break;
|
|
3706
|
+
}
|
|
3707
|
+
if (opencodeMessageId === null) {
|
|
3708
|
+
this.log({
|
|
3709
|
+
level: "warn",
|
|
3710
|
+
message: `Message ${message.id.slice(0, 8)} dispatched but its opencode id could not be read back \u2014 leaving un-tracked to retry next tick`,
|
|
3711
|
+
conversation_id: conv.id,
|
|
3712
|
+
message_id: message.id
|
|
3713
|
+
});
|
|
3714
|
+
continue;
|
|
3715
|
+
}
|
|
3716
|
+
this.dispatched.add(message.id);
|
|
3717
|
+
this.registerInFlight(conv, sessionId, message, opencodeMessageId);
|
|
3718
|
+
dispatched += 1;
|
|
3719
|
+
void this.postSignal(conv.id, message.id, "dispatched");
|
|
3720
|
+
}
|
|
3721
|
+
if (messages.length > 0 && dispatched === 0 && skippedAlreadyDispatched === messages.length) {
|
|
3722
|
+
this.log({
|
|
3723
|
+
level: "warn",
|
|
3724
|
+
message: `Conversation ${conv.id.slice(0, 8)} has ${messages.length} pending message(s) but ALL are already marked dispatched locally (in-flight set: ${this.dispatched.size}) \u2014 none sent to OpenCode this tick. If this repeats, a message may be stuck acknowledged-but-never-dispatched (its watcher never settled).`,
|
|
3725
|
+
conversation_id: conv.id
|
|
3726
|
+
});
|
|
3727
|
+
}
|
|
3728
|
+
this.ensureWatcherRunning(sessionId);
|
|
3729
|
+
return dispatched;
|
|
3730
|
+
}
|
|
3731
|
+
/**
|
|
3732
|
+
* Poll a session's message list for the re-drive fence (#965), via the
|
|
3733
|
+
* INJECTED `fetchImpl` — NOT the imported `getSessionMessages` helper, which
|
|
3734
|
+
* hits the global `fetch` and would bypass the same override every other
|
|
3735
|
+
* opencode poll in this file respects. Mirrors `readoptProcessing`'s own
|
|
3736
|
+
* snapshot fetch (`:3081-3111`). `null` = unreadable (non-OK response,
|
|
3737
|
+
* non-array body, or a network exception) — treated as "can't observe",
|
|
3738
|
+
* never as "confirmed gone".
|
|
3739
|
+
*/
|
|
3740
|
+
async pollSessionMessagesForRedrive(conv, message, sessionId) {
|
|
3741
|
+
try {
|
|
3742
|
+
const res = await this.fetchImpl(`${this.opencodeBase}/session/${sessionId}/message`);
|
|
3743
|
+
if (!res.ok) {
|
|
3744
|
+
this.log({
|
|
3745
|
+
level: "warn",
|
|
3746
|
+
message: `Re-drive: polling session ${sessionId.slice(0, 8)} for message ${message.id.slice(0, 8)} returned HTTP ${res.status} \u2014 treating as unreadable this tick`,
|
|
3747
|
+
conversation_id: conv.id,
|
|
3748
|
+
message_id: message.id
|
|
3749
|
+
});
|
|
3750
|
+
return null;
|
|
3751
|
+
}
|
|
3752
|
+
const body = await res.json();
|
|
3753
|
+
if (!Array.isArray(body)) {
|
|
3754
|
+
this.log({
|
|
3755
|
+
level: "warn",
|
|
3756
|
+
message: `Re-drive: polling session ${sessionId.slice(0, 8)} for message ${message.id.slice(0, 8)} returned a non-array message body \u2014 treating as unreadable this tick`,
|
|
3757
|
+
conversation_id: conv.id,
|
|
3758
|
+
message_id: message.id
|
|
3759
|
+
});
|
|
3760
|
+
return null;
|
|
3761
|
+
}
|
|
3762
|
+
return body;
|
|
3763
|
+
} catch (err) {
|
|
3764
|
+
this.log({
|
|
3765
|
+
level: "warn",
|
|
3766
|
+
message: `Re-drive: failed to poll session ${sessionId.slice(0, 8)} for message ${message.id.slice(0, 8)} (will retry next drain): ${err instanceof Error ? err.message : String(err)}`,
|
|
3767
|
+
conversation_id: conv.id,
|
|
3768
|
+
message_id: message.id
|
|
3769
|
+
});
|
|
3770
|
+
return null;
|
|
3771
|
+
}
|
|
3772
|
+
}
|
|
3773
|
+
/**
|
|
3774
|
+
* The re-drive fence for a `pending` row that already carries a stored
|
|
3775
|
+
* `opencode_message_id` (#965) — i.e. it has already been handed to opencode at
|
|
3776
|
+
* least once (see the invariant at `QueuedMessage.opencode_message_id`'s doc).
|
|
3777
|
+
* The lifecycle cron can falsely reclaim a `processing` row back to `pending`
|
|
3778
|
+
* mid-turn (a 5-minute liveness-staleness check racing a still-running turn);
|
|
3779
|
+
* without this fence the drain loop would re-`prompt_async` the SAME turn a
|
|
3780
|
+
* second time against live GitHub state. Mirrors `readoptOne`'s job for the
|
|
3781
|
+
* `processing` re-adopt path, but simpler: no b1/b2 preamble cross-check is
|
|
3782
|
+
* needed here because `refusedSessionId` already handles the one case
|
|
3783
|
+
* (#553 abandoned session) that path exists for.
|
|
3784
|
+
*
|
|
3785
|
+
* Only `ChannelAuthError` propagates; every other failure resolves to
|
|
3786
|
+
* `unresolved` and is retried whole on the next ~2s drain tick.
|
|
3787
|
+
*/
|
|
3788
|
+
async resolveRedrive(conv, sessionId, message, refusedSessionId) {
|
|
3789
|
+
const ocId = message.opencode_message_id ?? null;
|
|
3790
|
+
if (refusedSessionId) {
|
|
3791
|
+
this.clearRedriveUnresolved(message.id);
|
|
3792
|
+
void this.postSignal(conv.id, message.id, "redrive_redispatched");
|
|
3793
|
+
return "dispatch";
|
|
3794
|
+
}
|
|
3795
|
+
const messages = await this.pollSessionMessagesForRedrive(conv, message, sessionId);
|
|
3796
|
+
if (messages == null || messages.length === 0) {
|
|
3797
|
+
return this.resolveRedriveUnresolved(conv, message);
|
|
3798
|
+
}
|
|
3799
|
+
const state = messageRunState(messages, ocId ?? "");
|
|
3800
|
+
if (state === "failed" && isAbortedTerminalReply(messages, ocId ?? "")) {
|
|
3801
|
+
const ongoing = await isSessionOngoing(this.port, sessionId);
|
|
3802
|
+
if (ongoing === false) {
|
|
3803
|
+
this.log({
|
|
3804
|
+
level: "info",
|
|
3805
|
+
message: `Re-drive: message ${message.id.slice(0, 8)} carries an abort-shaped terminal error and session ${sessionId.slice(0, 8)} is not-ongoing per GET /session/status \u2014 restart orphan, re-dispatching instead of marking it permanently failed`,
|
|
3806
|
+
conversation_id: conv.id,
|
|
3807
|
+
message_id: message.id
|
|
3808
|
+
});
|
|
3809
|
+
this.clearRedriveUnresolved(message.id);
|
|
3810
|
+
void this.postSignal(conv.id, message.id, "redrive_redispatched");
|
|
3811
|
+
return "dispatch";
|
|
3812
|
+
}
|
|
3813
|
+
}
|
|
3814
|
+
if (state === "done" || state === "failed") {
|
|
3815
|
+
return this.settleRedrive(conv, sessionId, message, ocId, messages, state);
|
|
3816
|
+
}
|
|
3817
|
+
if (state === "running" || state === "queued") {
|
|
3818
|
+
const ongoing = await isSessionOngoing(this.port, sessionId);
|
|
3819
|
+
if (ongoing === true) {
|
|
3820
|
+
return this.reattachRedrive(conv, sessionId, message, ocId);
|
|
3821
|
+
}
|
|
3822
|
+
if (ongoing === false) {
|
|
3823
|
+
this.clearRedriveUnresolved(message.id);
|
|
3824
|
+
void this.postSignal(conv.id, message.id, "redrive_redispatched");
|
|
3825
|
+
return "dispatch";
|
|
3826
|
+
}
|
|
3827
|
+
return this.resolveRedriveUnresolved(conv, message);
|
|
3828
|
+
}
|
|
3829
|
+
this.clearRedriveUnresolved(message.id);
|
|
3830
|
+
void this.postSignal(conv.id, message.id, "redrive_redispatched");
|
|
3831
|
+
return "dispatch";
|
|
3832
|
+
}
|
|
3833
|
+
/**
|
|
3834
|
+
* The `reattached` outcome (Task 3.3): the prior turn is STILL ONGOING per
|
|
3835
|
+
* opencode's own status map — undo the false reclaim instead of starting a
|
|
3836
|
+
* second turn.
|
|
3837
|
+
*/
|
|
3838
|
+
async reattachRedrive(conv, sessionId, message, ocId) {
|
|
3839
|
+
let anchorMs;
|
|
3840
|
+
const parsed = message.processing_started_at ? Date.parse(message.processing_started_at) : NaN;
|
|
3841
|
+
if (!Number.isNaN(parsed)) {
|
|
3842
|
+
anchorMs = parsed;
|
|
3843
|
+
} else {
|
|
3844
|
+
anchorMs = this.now();
|
|
3845
|
+
this.log({
|
|
3846
|
+
level: "error",
|
|
3847
|
+
message: `Re-drive: message ${message.id.slice(0, 8)} has null/unparseable processing_started_at (${String(message.processing_started_at)}) \u2014 anchoring the watcher's absolute-age ceiling to now (defensive)`,
|
|
3848
|
+
conversation_id: conv.id,
|
|
3849
|
+
message_id: message.id
|
|
3850
|
+
});
|
|
3851
|
+
}
|
|
3852
|
+
const title = await this.resolveSessionTitle(sessionId, conv.id);
|
|
3853
|
+
try {
|
|
3854
|
+
await this.markProcessing(conv.id, message.id, sessionId, ocId, title);
|
|
3855
|
+
} catch (err) {
|
|
3856
|
+
if (err instanceof ChannelAuthError) throw err;
|
|
3857
|
+
this.log({
|
|
3858
|
+
level: "warn",
|
|
3859
|
+
message: `Re-drive: failed to restore message ${message.id.slice(0, 8)} to processing (will retry next drain): ${err instanceof Error ? err.message : String(err)}`,
|
|
3860
|
+
conversation_id: conv.id,
|
|
3861
|
+
message_id: message.id
|
|
3862
|
+
});
|
|
3863
|
+
return "unresolved";
|
|
3864
|
+
}
|
|
3865
|
+
this.clearRedriveUnresolved(message.id);
|
|
3866
|
+
this.registerReadopted(conv, sessionId, message, ocId ?? "", anchorMs);
|
|
3867
|
+
this.dispatched.add(message.id);
|
|
3868
|
+
this.readopted.add(message.id);
|
|
3869
|
+
this.ensureWatcherRunning(sessionId);
|
|
3870
|
+
const watchedForMs = this.now() - anchorMs;
|
|
3871
|
+
void this.postSignal(conv.id, message.id, "redrive_reattached", {
|
|
3872
|
+
watched_for_ms: watchedForMs
|
|
3873
|
+
});
|
|
3874
|
+
this.log({
|
|
3875
|
+
level: "warn",
|
|
3876
|
+
message: `Re-drive: message ${message.id.slice(0, 8)} (session ${sessionId.slice(0, 8)}) was wrongly reclaimed to pending while its turn was still running (watched ${watchedForMs}ms) \u2014 restored to processing instead of re-dispatching`,
|
|
3877
|
+
conversation_id: conv.id,
|
|
3878
|
+
message_id: message.id
|
|
3879
|
+
});
|
|
3880
|
+
return "reattached";
|
|
3881
|
+
}
|
|
3882
|
+
/**
|
|
3883
|
+
* The `settled` outcome (Task 3.2): the prior turn already finished (or
|
|
3884
|
+
* errored) while nobody was watching — deliver/report it instead of re-running.
|
|
3885
|
+
* Mirrors `readoptOne`'s `done`/`failed` branches' error discipline, simplified
|
|
3886
|
+
* (no `doneUndeliverable` park: a terminal PATCH failure here just retries next
|
|
3887
|
+
* drain, same as any other non-auth failure). The restart-abort carve-out that
|
|
3888
|
+
* keeps the two in step for `failed` lives in the caller (`resolveRedrive`, #1310),
|
|
3889
|
+
* so a row reaching this `failed` branch is a GENUINE failure.
|
|
3890
|
+
*/
|
|
3891
|
+
async settleRedrive(conv, sessionId, message, ocId, messages, state) {
|
|
3892
|
+
try {
|
|
3893
|
+
if (state === "done") {
|
|
3894
|
+
const title = await this.resolveSessionTitle(sessionId, conv.id);
|
|
3895
|
+
const usage = messageUsage(messages, ocId ?? "");
|
|
3896
|
+
this.log({
|
|
3897
|
+
level: "info",
|
|
3898
|
+
message: `Re-drive: message ${message.id.slice(0, 8)} completed while its row was wrongly reclaimed to pending \u2014 marking done instead of re-dispatching`,
|
|
3340
3899
|
conversation_id: conv.id,
|
|
3341
3900
|
message_id: message.id
|
|
3342
3901
|
});
|
|
3343
|
-
await this.
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
message_id: message.id
|
|
3349
|
-
});
|
|
3350
|
-
});
|
|
3902
|
+
await this.markDone(conv.id, message.id, sessionId, ocId, title, usage);
|
|
3903
|
+
} else {
|
|
3904
|
+
const error2 = messageError(messages, ocId ?? "") ?? void 0;
|
|
3905
|
+
const usage = messageUsage(messages, ocId ?? "");
|
|
3906
|
+
const failure = await this.classifyModelAuthFailure(messages, ocId ?? "");
|
|
3351
3907
|
this.log({
|
|
3352
3908
|
level: "error",
|
|
3353
|
-
message: `
|
|
3354
|
-
conversation_id: conv.id,
|
|
3355
|
-
message_id: message.id
|
|
3356
|
-
});
|
|
3357
|
-
break;
|
|
3358
|
-
}
|
|
3359
|
-
if (opencodeMessageId === null) {
|
|
3360
|
-
this.log({
|
|
3361
|
-
level: "warn",
|
|
3362
|
-
message: `Message ${message.id.slice(0, 8)} dispatched but its opencode id could not be read back \u2014 leaving un-tracked to retry next tick`,
|
|
3909
|
+
message: `Re-drive: message ${message.id.slice(0, 8)} errored while its row was wrongly reclaimed to pending \u2014 marking failed instead of re-dispatching: ${error2 ?? "(no error text)"}`,
|
|
3363
3910
|
conversation_id: conv.id,
|
|
3364
3911
|
message_id: message.id
|
|
3365
3912
|
});
|
|
3366
|
-
|
|
3913
|
+
await this.markFailed(conv.id, message.id, sessionId, error2, usage, failure);
|
|
3367
3914
|
}
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
dispatched += 1;
|
|
3371
|
-
void this.postSignal(conv.id, message.id, "dispatched");
|
|
3372
|
-
}
|
|
3373
|
-
if (messages.length > 0 && dispatched === 0 && skippedAlreadyDispatched === messages.length) {
|
|
3915
|
+
} catch (err) {
|
|
3916
|
+
if (err instanceof ChannelAuthError) throw err;
|
|
3374
3917
|
this.log({
|
|
3375
3918
|
level: "warn",
|
|
3376
|
-
message: `
|
|
3377
|
-
conversation_id: conv.id
|
|
3919
|
+
message: `Re-drive: failed to report message ${message.id.slice(0, 8)} ${state} (will retry next drain): ${err instanceof Error ? err.message : String(err)}`,
|
|
3920
|
+
conversation_id: conv.id,
|
|
3921
|
+
message_id: message.id
|
|
3378
3922
|
});
|
|
3923
|
+
return "unresolved";
|
|
3379
3924
|
}
|
|
3380
|
-
this.
|
|
3381
|
-
|
|
3925
|
+
this.clearRedriveUnresolved(message.id);
|
|
3926
|
+
void this.postSignal(conv.id, message.id, "redrive_settled");
|
|
3927
|
+
return "settled";
|
|
3928
|
+
}
|
|
3929
|
+
/**
|
|
3930
|
+
* The bounded `unresolved` outcome (Task 3.4): opencode's state could not be
|
|
3931
|
+
* observed (snapshot unreadable/empty, or `isSessionOngoing` returned `null`).
|
|
3932
|
+
* A `pending` row is invisible to every cron arm (all require `status =
|
|
3933
|
+
* 'processing'`), so an indefinitely-`unresolved` row would be stranded with
|
|
3934
|
+
* nothing driving it — bound it to the existing `pausedMaxWaitMs` window
|
|
3935
|
+
* (reusing the knob, not a new constant) and take `dispatch` once elapsed.
|
|
3936
|
+
*/
|
|
3937
|
+
resolveRedriveUnresolved(conv, message) {
|
|
3938
|
+
const now = this.now();
|
|
3939
|
+
const since = this.redriveUnresolvedSince.get(message.id);
|
|
3940
|
+
if (since !== void 0 && now - since >= this.pausedMaxWaitMs) {
|
|
3941
|
+
this.clearRedriveUnresolved(message.id);
|
|
3942
|
+
void this.postSignal(conv.id, message.id, "redrive_redispatched");
|
|
3943
|
+
return "dispatch";
|
|
3944
|
+
}
|
|
3945
|
+
if (since === void 0) {
|
|
3946
|
+
this.redriveUnresolvedSince.set(message.id, now);
|
|
3947
|
+
}
|
|
3948
|
+
if (!this.redriveUnresolvedSignalled.has(message.id)) {
|
|
3949
|
+
this.redriveUnresolvedSignalled.add(message.id);
|
|
3950
|
+
void this.postSignal(conv.id, message.id, "redrive_unresolved");
|
|
3951
|
+
}
|
|
3952
|
+
return "unresolved";
|
|
3953
|
+
}
|
|
3954
|
+
/** Clear both `unresolved`-bound trackers for a row (any non-`unresolved` outcome). */
|
|
3955
|
+
clearRedriveUnresolved(messageId) {
|
|
3956
|
+
this.redriveUnresolvedSince.delete(messageId);
|
|
3957
|
+
this.redriveUnresolvedSignalled.delete(messageId);
|
|
3382
3958
|
}
|
|
3383
3959
|
/**
|
|
3384
3960
|
* Record that `sessionId` is no longer a valid binding for `conversationId`
|
|
@@ -3663,9 +4239,10 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
3663
4239
|
* opencode reports ACTIVELY `running` is watched to completion (its liveness
|
|
3664
4240
|
* heartbeat keeps the cron off its row), while a re-adopted turn that is paused
|
|
3665
4241
|
* awaiting a human — or queued/unreachable — is still bounded by `deadline` and
|
|
3666
|
-
* handed to the cron.
|
|
3667
|
-
*
|
|
3668
|
-
*
|
|
4242
|
+
* handed to the cron. Real invariant (#965): the cron MAY reclaim a row this
|
|
4243
|
+
* runner still holds; a reclaimed row that already ran is never re-dispatched
|
|
4244
|
+
* while opencode reports its turn ongoing (readopt's own gate here, and the
|
|
4245
|
+
* `pending`-row re-drive fence, `resolveRedrive`). `dispatchedAt` stays `now`
|
|
3669
4246
|
* (only the appear-guard uses it).
|
|
3670
4247
|
*
|
|
3671
4248
|
* `evidentMessageId` addresses the SERVER row (for markProcessing/markDone);
|
|
@@ -4225,7 +4802,10 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
4225
4802
|
* re-dispatched (at most once, see `forceReadoptRun`):
|
|
4226
4803
|
* - `done` → `markDone` now (guarded like the watcher's done branch);
|
|
4227
4804
|
* - `failed` → `markFailed` with the surfaced error (issue #182), so an
|
|
4228
|
-
* errored turn is reported failed on restart, NOT re-dispatched
|
|
4805
|
+
* errored turn is reported failed on restart, NOT re-dispatched —
|
|
4806
|
+
* EXCEPT a restart-ABORTED turn under a not-ongoing session,
|
|
4807
|
+
* which is a restart orphan wearing a terminal error and is
|
|
4808
|
+
* re-dispatched instead (issue #1310, see the branch below);
|
|
4229
4809
|
* - `running`/`queued` → re-attach a watcher via `registerReadopted` (no re-dispatch),
|
|
4230
4810
|
* tracking the stored id so the reply correlates by it;
|
|
4231
4811
|
* - `unknown`/null id → re-dispatch (opencode assigns a fresh id) + attach a watcher.
|
|
@@ -4289,7 +4869,16 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
4289
4869
|
void this.postSignal(row.conversation_id, row.id, "readopt_done");
|
|
4290
4870
|
return;
|
|
4291
4871
|
}
|
|
4292
|
-
|
|
4872
|
+
const restartAborted = state === "failed" && sessionOngoing === false && isAbortedTerminalReply(messages, ocId ?? "");
|
|
4873
|
+
if (restartAborted) {
|
|
4874
|
+
this.log({
|
|
4875
|
+
level: "info",
|
|
4876
|
+
message: `Re-adopt: message ${row.id.slice(0, 8)} carries an abort-shaped terminal error and session ${sessionId.slice(0, 8)} is not-ongoing per GET /session/status \u2014 restart orphan, re-dispatching instead of marking it permanently failed`,
|
|
4877
|
+
conversation_id: row.conversation_id,
|
|
4878
|
+
message_id: row.id
|
|
4879
|
+
});
|
|
4880
|
+
}
|
|
4881
|
+
if (state === "failed" && !restartAborted) {
|
|
4293
4882
|
const error2 = messageError(messages, ocId ?? "") ?? void 0;
|
|
4294
4883
|
const usage = messageUsage(messages, ocId ?? "");
|
|
4295
4884
|
const failure = await this.classifyModelAuthFailure(messages, ocId ?? "");
|
|
@@ -4567,7 +5156,8 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
4567
5156
|
opencode_model: row.opencode_model,
|
|
4568
5157
|
source_message_id: row.source_message_id,
|
|
4569
5158
|
slack_user_id: row.slack_user_id,
|
|
4570
|
-
attachments: row.attachments ?? null
|
|
5159
|
+
attachments: row.attachments ?? null,
|
|
5160
|
+
opencode_message_id: row.opencode_message_id
|
|
4571
5161
|
};
|
|
4572
5162
|
}
|
|
4573
5163
|
/**
|
|
@@ -5159,11 +5749,11 @@ var ChannelDriver = class _ChannelDriver {
|
|
|
5159
5749
|
* `ensureSession` guard, not this suppression, is what makes the self-heal
|
|
5160
5750
|
* stick.
|
|
5161
5751
|
*/
|
|
5162
|
-
sessionIdBody(sessionId, conversationId, messageId,
|
|
5752
|
+
sessionIdBody(sessionId, conversationId, messageId, status2) {
|
|
5163
5753
|
if (!this.isSuperseded(conversationId, sessionId)) return { opencode_session_id: sessionId };
|
|
5164
5754
|
this.log({
|
|
5165
5755
|
level: "debug",
|
|
5166
|
-
message: `Omitting the abandoned OpenCode session ${sessionId.slice(0, 8)} from the '${
|
|
5756
|
+
message: `Omitting the abandoned OpenCode session ${sessionId.slice(0, 8)} from the '${status2}' update for message ${messageId.slice(0, 8)} so it is not re-bound to conversation ${conversationId.slice(0, 8)}`,
|
|
5167
5757
|
conversation_id: conversationId,
|
|
5168
5758
|
message_id: messageId
|
|
5169
5759
|
});
|
|
@@ -5609,171 +6199,6 @@ Port ${port} is already in use.`));
|
|
|
5609
6199
|
return { port, process: null, version: null, notReadyReason: "you chose to continue without it" };
|
|
5610
6200
|
}
|
|
5611
6201
|
|
|
5612
|
-
// src/commands/agent-lookup.ts
|
|
5613
|
-
async function readErrorMessage(response) {
|
|
5614
|
-
const text = await response.text().catch(() => "");
|
|
5615
|
-
if (!text) return response.statusText || void 0;
|
|
5616
|
-
try {
|
|
5617
|
-
const data = JSON.parse(text);
|
|
5618
|
-
const message = data.message ?? data.error;
|
|
5619
|
-
if (typeof message === "string" && message.trim()) {
|
|
5620
|
-
return message;
|
|
5621
|
-
}
|
|
5622
|
-
} catch {
|
|
5623
|
-
}
|
|
5624
|
-
return text.trim() || response.statusText || void 0;
|
|
5625
|
-
}
|
|
5626
|
-
function authFailureHint(apiUrl, serverMessage) {
|
|
5627
|
-
const reason = serverMessage ? `: ${serverMessage}` : "";
|
|
5628
|
-
return `Authentication failed${reason}. Your credentials were rejected by ${apiUrl}. This usually means you logged in against a different environment, or your session expired \u2014 log in again pointing at this endpoint and retry.`;
|
|
5629
|
-
}
|
|
5630
|
-
async function resolveAgentIdFromKey(authHeader) {
|
|
5631
|
-
const apiUrl = getApiUrlConfig();
|
|
5632
|
-
try {
|
|
5633
|
-
const response = await fetch(`${apiUrl}/me`, {
|
|
5634
|
-
headers: { Authorization: authHeader }
|
|
5635
|
-
});
|
|
5636
|
-
if (response.status === 401) {
|
|
5637
|
-
const serverMessage = await readErrorMessage(response);
|
|
5638
|
-
return { error: authFailureHint(apiUrl, serverMessage), authFailed: true };
|
|
5639
|
-
}
|
|
5640
|
-
if (!response.ok) {
|
|
5641
|
-
const serverMessage = await readErrorMessage(response);
|
|
5642
|
-
return {
|
|
5643
|
-
error: `Failed to resolve runner from key (HTTP ${response.status})${serverMessage ? `: ${serverMessage}` : ""}`
|
|
5644
|
-
};
|
|
5645
|
-
}
|
|
5646
|
-
const data = await response.json();
|
|
5647
|
-
if (data.auth_type === "agent_key" && data.agent_id) {
|
|
5648
|
-
return { agent_id: data.agent_id };
|
|
5649
|
-
}
|
|
5650
|
-
return {
|
|
5651
|
-
error: "Cannot resolve runner ID: auth type is not agent_key. Please provide --runner explicitly."
|
|
5652
|
-
};
|
|
5653
|
-
} catch (error2) {
|
|
5654
|
-
const message = error2 instanceof Error ? error2.message : "Unknown error";
|
|
5655
|
-
return { error: `Failed to resolve runner from key: ${message}` };
|
|
5656
|
-
}
|
|
5657
|
-
}
|
|
5658
|
-
var BEST_EFFORT_NOTIFY_TIMEOUT_MS = 2e3;
|
|
5659
|
-
async function notifyAgentDisconnected(agentId, authHeader) {
|
|
5660
|
-
const apiUrl = getApiUrlConfig();
|
|
5661
|
-
try {
|
|
5662
|
-
const response = await fetch(`${apiUrl}/runners/${agentId}/disconnect`, {
|
|
5663
|
-
method: "POST",
|
|
5664
|
-
headers: { Authorization: authHeader },
|
|
5665
|
-
signal: AbortSignal.timeout(BEST_EFFORT_NOTIFY_TIMEOUT_MS)
|
|
5666
|
-
});
|
|
5667
|
-
if (!response.ok) {
|
|
5668
|
-
const serverMessage = await readErrorMessage(response);
|
|
5669
|
-
return {
|
|
5670
|
-
ok: false,
|
|
5671
|
-
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`
|
|
5672
|
-
};
|
|
5673
|
-
}
|
|
5674
|
-
return { ok: true };
|
|
5675
|
-
} catch (error2) {
|
|
5676
|
-
return { ok: false, error: describeBestEffortError(error2) };
|
|
5677
|
-
}
|
|
5678
|
-
}
|
|
5679
|
-
function describeBestEffortError(error2) {
|
|
5680
|
-
const name = error2?.name;
|
|
5681
|
-
if (name === "TimeoutError" || name === "AbortError") {
|
|
5682
|
-
return `timed out after ${BEST_EFFORT_NOTIFY_TIMEOUT_MS}ms`;
|
|
5683
|
-
}
|
|
5684
|
-
return error2 instanceof Error ? error2.message : String(error2);
|
|
5685
|
-
}
|
|
5686
|
-
async function reportMicrovmId(agentId, authHeader, microvmId) {
|
|
5687
|
-
try {
|
|
5688
|
-
const apiUrl = getApiUrlConfig();
|
|
5689
|
-
const response = await fetch(`${apiUrl}/runners/${agentId}/microvm`, {
|
|
5690
|
-
method: "POST",
|
|
5691
|
-
headers: { Authorization: authHeader, "Content-Type": "application/json" },
|
|
5692
|
-
body: JSON.stringify({ microvm_id: microvmId }),
|
|
5693
|
-
signal: AbortSignal.timeout(BEST_EFFORT_NOTIFY_TIMEOUT_MS)
|
|
5694
|
-
});
|
|
5695
|
-
if (!response.ok) {
|
|
5696
|
-
const serverMessage = await readErrorMessage(response);
|
|
5697
|
-
return {
|
|
5698
|
-
ok: false,
|
|
5699
|
-
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`
|
|
5700
|
-
};
|
|
5701
|
-
}
|
|
5702
|
-
return { ok: true };
|
|
5703
|
-
} catch (error2) {
|
|
5704
|
-
return { ok: false, error: describeBestEffortError(error2) };
|
|
5705
|
-
}
|
|
5706
|
-
}
|
|
5707
|
-
function toReportedWindow(window) {
|
|
5708
|
-
if (!window) return null;
|
|
5709
|
-
return { utilization: window.utilization, resets_at: window.resetsAt };
|
|
5710
|
-
}
|
|
5711
|
-
async function reportClaudeUsage(agentId, authHeader, snapshot) {
|
|
5712
|
-
try {
|
|
5713
|
-
const apiUrl = getApiUrlConfig();
|
|
5714
|
-
const response = await fetch(`${apiUrl}/runners/${agentId}/claude-usage`, {
|
|
5715
|
-
method: "POST",
|
|
5716
|
-
headers: { Authorization: authHeader, "Content-Type": "application/json" },
|
|
5717
|
-
body: JSON.stringify({
|
|
5718
|
-
five_hour: toReportedWindow(snapshot.fiveHour),
|
|
5719
|
-
seven_day: toReportedWindow(snapshot.sevenDay)
|
|
5720
|
-
}),
|
|
5721
|
-
signal: AbortSignal.timeout(BEST_EFFORT_NOTIFY_TIMEOUT_MS)
|
|
5722
|
-
});
|
|
5723
|
-
if (!response.ok) {
|
|
5724
|
-
const serverMessage = await readErrorMessage(response);
|
|
5725
|
-
return {
|
|
5726
|
-
ok: false,
|
|
5727
|
-
error: `HTTP ${response.status}${serverMessage ? `: ${serverMessage}` : ""}`
|
|
5728
|
-
};
|
|
5729
|
-
}
|
|
5730
|
-
return { ok: true };
|
|
5731
|
-
} catch (error2) {
|
|
5732
|
-
return { ok: false, error: describeBestEffortError(error2) };
|
|
5733
|
-
}
|
|
5734
|
-
}
|
|
5735
|
-
async function getAgentInfo(agentId, authHeader) {
|
|
5736
|
-
const apiUrl = getApiUrlConfig();
|
|
5737
|
-
try {
|
|
5738
|
-
const response = await fetch(`${apiUrl}/runners/${agentId}`, {
|
|
5739
|
-
headers: { Authorization: authHeader }
|
|
5740
|
-
});
|
|
5741
|
-
if (response.status === 401) {
|
|
5742
|
-
const serverMessage = await readErrorMessage(response);
|
|
5743
|
-
return { valid: false, error: authFailureHint(apiUrl, serverMessage), authFailed: true };
|
|
5744
|
-
}
|
|
5745
|
-
if (response.status === 403) {
|
|
5746
|
-
const serverMessage = await readErrorMessage(response);
|
|
5747
|
-
return {
|
|
5748
|
-
valid: false,
|
|
5749
|
-
error: serverMessage ?? "You do not have access to this runner (it may belong to a different team or organization)."
|
|
5750
|
-
};
|
|
5751
|
-
}
|
|
5752
|
-
if (response.status === 404) {
|
|
5753
|
-
const serverMessage = await readErrorMessage(response);
|
|
5754
|
-
return { valid: false, error: serverMessage ?? `Runner ${agentId} not found` };
|
|
5755
|
-
}
|
|
5756
|
-
if (!response.ok) {
|
|
5757
|
-
const serverMessage = await readErrorMessage(response);
|
|
5758
|
-
return {
|
|
5759
|
-
valid: false,
|
|
5760
|
-
error: `API error (HTTP ${response.status})${serverMessage ? `: ${serverMessage}` : ""}`
|
|
5761
|
-
};
|
|
5762
|
-
}
|
|
5763
|
-
const agent = await response.json();
|
|
5764
|
-
if (agent.agent_type !== "local") {
|
|
5765
|
-
return {
|
|
5766
|
-
valid: false,
|
|
5767
|
-
error: `Runner is type '${agent.agent_type}', must be 'local' for CLI connection`
|
|
5768
|
-
};
|
|
5769
|
-
}
|
|
5770
|
-
return { valid: true, agent };
|
|
5771
|
-
} catch (error2) {
|
|
5772
|
-
const message = error2 instanceof Error ? error2.message : "Unknown error";
|
|
5773
|
-
return { valid: false, error: `Failed to validate runner: ${message}` };
|
|
5774
|
-
}
|
|
5775
|
-
}
|
|
5776
|
-
|
|
5777
6202
|
// src/commands/run.ts
|
|
5778
6203
|
var MAX_ACTIVITY_LOG_ENTRIES = 10;
|
|
5779
6204
|
var CHANNEL_POLL_INTERVAL_MS = Number(process.env.EVIDENT_CHANNEL_POLL_INTERVAL_MS) || 2e3;
|
|
@@ -5984,9 +6409,15 @@ async function handleAuthError(state, error2) {
|
|
|
5984
6409
|
}
|
|
5985
6410
|
async function driveChannels(state, driver) {
|
|
5986
6411
|
let idlePolls = 0;
|
|
6412
|
+
let idleMs = 0;
|
|
6413
|
+
let consecutiveDrainFailures = 0;
|
|
6414
|
+
let unreachableMs = 0;
|
|
5987
6415
|
let lastSeenProxiedActivityAt = state.lastProxiedActivityAt;
|
|
5988
6416
|
let lastSeenAppliedFiles = driver.fileSyncActivity().appliedFiles;
|
|
5989
6417
|
while (state.running) {
|
|
6418
|
+
const cycleStartedAtMs = performance.now();
|
|
6419
|
+
let idleThisCycle = false;
|
|
6420
|
+
let unreachableThisCycle = false;
|
|
5990
6421
|
if (state.connection?.reconnecting && state.connection.reconnectPromise) {
|
|
5991
6422
|
logActivity(state, { type: "info", message: "Waiting for tunnel reconnection..." });
|
|
5992
6423
|
if (state.interactive) displayStatus(state);
|
|
@@ -6001,17 +6432,23 @@ async function driveChannels(state, driver) {
|
|
|
6001
6432
|
);
|
|
6002
6433
|
try {
|
|
6003
6434
|
const processed = await driver.drainPending();
|
|
6435
|
+
consecutiveDrainFailures = 0;
|
|
6436
|
+
unreachableMs = 0;
|
|
6004
6437
|
state.messageCount += processed;
|
|
6005
6438
|
const proxiedActivity = state.lastProxiedActivityAt !== lastSeenProxiedActivityAt;
|
|
6006
6439
|
lastSeenProxiedActivityAt = state.lastProxiedActivityAt;
|
|
6007
6440
|
const appliedFiles = driver.fileSyncActivity().appliedFiles;
|
|
6008
|
-
const
|
|
6441
|
+
const filesApplied = appliedFiles !== lastSeenAppliedFiles;
|
|
6442
|
+
const fileActivity = carriedOverFileSync || filesApplied;
|
|
6009
6443
|
lastSeenAppliedFiles = appliedFiles;
|
|
6444
|
+
if (filesApplied) state.claudeUsageRearm?.();
|
|
6010
6445
|
if (processed > 0 || driver.hasInFlightWatchers() || proxiedActivity || fileActivity) {
|
|
6011
6446
|
idlePolls = 0;
|
|
6447
|
+
idleMs = 0;
|
|
6012
6448
|
if (processed > 0 && state.interactive) displayStatus(state);
|
|
6013
6449
|
} else if (state.idleTimeout !== null) {
|
|
6014
6450
|
idlePolls++;
|
|
6451
|
+
idleThisCycle = true;
|
|
6015
6452
|
if (idlePolls === 1) {
|
|
6016
6453
|
logActivity(state, {
|
|
6017
6454
|
type: "info",
|
|
@@ -6035,15 +6472,38 @@ async function driveChannels(state, driver) {
|
|
|
6035
6472
|
const errorMessage = error2 instanceof Error ? error2.message : String(error2);
|
|
6036
6473
|
logActivity(state, { type: "error", error: `Channel processing error: ${errorMessage}` });
|
|
6037
6474
|
if (state.interactive) displayStatus(state);
|
|
6475
|
+
if (driver.hasInFlightWatchers()) {
|
|
6476
|
+
consecutiveDrainFailures = 0;
|
|
6477
|
+
unreachableMs = 0;
|
|
6478
|
+
} else if (state.idleTimeout !== null) {
|
|
6479
|
+
consecutiveDrainFailures++;
|
|
6480
|
+
unreachableThisCycle = true;
|
|
6481
|
+
if (consecutiveDrainFailures === 1) {
|
|
6482
|
+
logActivity(state, {
|
|
6483
|
+
type: "info",
|
|
6484
|
+
message: `Cannot reach Evident, will exit if this persists past the idle timeout (timeout: ${state.idleTimeout}s)...`
|
|
6485
|
+
});
|
|
6486
|
+
if (state.interactive) displayStatus(state);
|
|
6487
|
+
}
|
|
6488
|
+
}
|
|
6038
6489
|
}
|
|
6039
6490
|
await new Promise((resolve3) => setTimeout(resolve3, CHANNEL_POLL_INTERVAL_MS));
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6491
|
+
const cycleMs = performance.now() - cycleStartedAtMs;
|
|
6492
|
+
if (idleThisCycle) idleMs += cycleMs;
|
|
6493
|
+
if (unreachableThisCycle) unreachableMs += cycleMs;
|
|
6494
|
+
if (state.idleTimeout !== null && consecutiveDrainFailures >= 2 && unreachableMs > state.idleTimeout * 1e3) {
|
|
6495
|
+
logActivity(state, {
|
|
6496
|
+
type: "info",
|
|
6497
|
+
level: "warn",
|
|
6498
|
+
message: `Exiting: could not reach Evident for ${consecutiveDrainFailures} consecutive polls (${Math.round(unreachableMs / 1e3)}s)`
|
|
6499
|
+
});
|
|
6500
|
+
if (state.interactive) displayStatus(state);
|
|
6501
|
+
break;
|
|
6502
|
+
}
|
|
6503
|
+
if (state.idleTimeout !== null && idlePolls >= 2 && idleMs > state.idleTimeout * 1e3) {
|
|
6504
|
+
logActivity(state, { type: "info", message: "Idle timeout reached" });
|
|
6505
|
+
if (state.interactive) displayStatus(state);
|
|
6506
|
+
break;
|
|
6047
6507
|
}
|
|
6048
6508
|
}
|
|
6049
6509
|
}
|
|
@@ -6122,6 +6582,9 @@ function scheduleSessionCleanup(state, driver, options) {
|
|
|
6122
6582
|
);
|
|
6123
6583
|
state.sessionCleanupTimers.push(interval, firstSweep);
|
|
6124
6584
|
}
|
|
6585
|
+
function claudeUsageFailureStreakSuffix(consecutiveFailures) {
|
|
6586
|
+
return consecutiveFailures > 1 ? ` (${consecutiveFailures} consecutive failures)` : "";
|
|
6587
|
+
}
|
|
6125
6588
|
function scheduleClaudeUsageReporting(state, options) {
|
|
6126
6589
|
const { mode, warnings } = resolveClaudeUsageReportingMode(
|
|
6127
6590
|
options.claudeUsageReporting,
|
|
@@ -6140,13 +6603,26 @@ function scheduleClaudeUsageReporting(state, options) {
|
|
|
6140
6603
|
level: "debug",
|
|
6141
6604
|
message: "Claude usage reporting is off (--claude-usage-reporting off)"
|
|
6142
6605
|
});
|
|
6143
|
-
return;
|
|
6606
|
+
return null;
|
|
6144
6607
|
}
|
|
6145
6608
|
let consecutiveFailures = 0;
|
|
6609
|
+
let armed = false;
|
|
6610
|
+
let rearmRequested = false;
|
|
6146
6611
|
const scheduleNextTick = () => {
|
|
6612
|
+
armed = true;
|
|
6613
|
+
rearmRequested = false;
|
|
6147
6614
|
state.claudeUsageTimer = setTimeout(() => void tick(false), nextReportDelayMs());
|
|
6148
6615
|
};
|
|
6149
|
-
const
|
|
6616
|
+
const rearm = () => {
|
|
6617
|
+
if (armed) {
|
|
6618
|
+
rearmRequested = true;
|
|
6619
|
+
return;
|
|
6620
|
+
}
|
|
6621
|
+
rearmRequested = false;
|
|
6622
|
+
armed = true;
|
|
6623
|
+
state.claudeUsageTimer = setTimeout(() => void tick(true), FIRST_REPORT_DELAY_MS);
|
|
6624
|
+
};
|
|
6625
|
+
const tick = async (isProbe) => {
|
|
6150
6626
|
try {
|
|
6151
6627
|
const usage = await getClaudeUsage();
|
|
6152
6628
|
const result = await reportClaudeUsage(state.agentId, state.authHeader, usage);
|
|
@@ -6168,8 +6644,8 @@ function scheduleClaudeUsageReporting(state, options) {
|
|
|
6168
6644
|
consecutiveFailures++;
|
|
6169
6645
|
logActivity(state, {
|
|
6170
6646
|
type: "info",
|
|
6171
|
-
level: consecutiveFailures
|
|
6172
|
-
message: `Failed to report Claude usage: ${result.error}`
|
|
6647
|
+
level: claudeUsageFailureLogLevel(consecutiveFailures),
|
|
6648
|
+
message: `Failed to report Claude usage: ${result.error}${claudeUsageFailureStreakSuffix(consecutiveFailures)}`
|
|
6173
6649
|
});
|
|
6174
6650
|
}
|
|
6175
6651
|
scheduleNextTick();
|
|
@@ -6182,12 +6658,14 @@ function scheduleClaudeUsageReporting(state, options) {
|
|
|
6182
6658
|
message: "Claude usage reporting is forced on but no usable Claude Code login was found \u2014 run `claude` to sign in; reporting will keep retrying"
|
|
6183
6659
|
});
|
|
6184
6660
|
scheduleNextTick();
|
|
6185
|
-
} else if (
|
|
6661
|
+
} else if (isProbe) {
|
|
6186
6662
|
logActivity(state, {
|
|
6187
6663
|
type: "info",
|
|
6188
6664
|
level: "debug",
|
|
6189
6665
|
message: `Claude usage reporting: ${error2.message}`
|
|
6190
6666
|
});
|
|
6667
|
+
armed = false;
|
|
6668
|
+
if (rearmRequested) rearm();
|
|
6191
6669
|
} else {
|
|
6192
6670
|
logActivity(state, {
|
|
6193
6671
|
type: "info",
|
|
@@ -6201,14 +6679,16 @@ function scheduleClaudeUsageReporting(state, options) {
|
|
|
6201
6679
|
const message = error2 instanceof Error ? error2.message : String(error2);
|
|
6202
6680
|
logActivity(state, {
|
|
6203
6681
|
type: "info",
|
|
6204
|
-
level: consecutiveFailures
|
|
6205
|
-
message: `Claude usage reporting failed: ${message}`
|
|
6682
|
+
level: claudeUsageFailureLogLevel(consecutiveFailures),
|
|
6683
|
+
message: `Claude usage reporting failed: ${message}${claudeUsageFailureStreakSuffix(consecutiveFailures)}`
|
|
6206
6684
|
});
|
|
6207
6685
|
scheduleNextTick();
|
|
6208
6686
|
}
|
|
6209
6687
|
}
|
|
6210
6688
|
};
|
|
6689
|
+
armed = true;
|
|
6211
6690
|
state.claudeUsageTimer = setTimeout(() => void tick(true), FIRST_REPORT_DELAY_MS);
|
|
6691
|
+
return rearm;
|
|
6212
6692
|
}
|
|
6213
6693
|
async function notifyOffline(state) {
|
|
6214
6694
|
if (!state.agentId || !state.authHeader) return;
|
|
@@ -6249,6 +6729,7 @@ async function cleanup(state, opts = {}) {
|
|
|
6249
6729
|
clearTimeout(state.claudeUsageTimer);
|
|
6250
6730
|
state.claudeUsageTimer = null;
|
|
6251
6731
|
}
|
|
6732
|
+
state.claudeUsageRearm = null;
|
|
6252
6733
|
if (opts.graceful && state.channelDriver) {
|
|
6253
6734
|
state.channelDriver.stop();
|
|
6254
6735
|
log2(state, "Draining in-flight channel work before shutdown...");
|
|
@@ -6330,6 +6811,7 @@ async function run(options) {
|
|
|
6330
6811
|
lastProxiedActivityAt: null,
|
|
6331
6812
|
sessionCleanupTimers: [],
|
|
6332
6813
|
claudeUsageTimer: null,
|
|
6814
|
+
claudeUsageRearm: null,
|
|
6333
6815
|
authHeader: ""
|
|
6334
6816
|
};
|
|
6335
6817
|
setTelemetryAuthProvider(() => ({ authHeader: state.authHeader, agentId: state.agentId }));
|
|
@@ -6409,6 +6891,7 @@ async function run(options) {
|
|
|
6409
6891
|
console.log(chalk6.dim("Or run `evident login` for interactive authentication"));
|
|
6410
6892
|
blank();
|
|
6411
6893
|
process.exit(1);
|
|
6894
|
+
return;
|
|
6412
6895
|
}
|
|
6413
6896
|
blank();
|
|
6414
6897
|
console.log(chalk6.yellow("You are not logged in to Evident."));
|
|
@@ -6453,6 +6936,7 @@ async function run(options) {
|
|
|
6453
6936
|
} else {
|
|
6454
6937
|
printError(resolved.error || "Failed to resolve runner ID from key");
|
|
6455
6938
|
process.exit(1);
|
|
6939
|
+
return;
|
|
6456
6940
|
}
|
|
6457
6941
|
} else {
|
|
6458
6942
|
printError(
|
|
@@ -6466,6 +6950,7 @@ async function run(options) {
|
|
|
6466
6950
|
);
|
|
6467
6951
|
blank();
|
|
6468
6952
|
process.exit(1);
|
|
6953
|
+
return;
|
|
6469
6954
|
}
|
|
6470
6955
|
}
|
|
6471
6956
|
telemetry.info(
|
|
@@ -6713,7 +7198,7 @@ async function run(options) {
|
|
|
6713
7198
|
throw error2;
|
|
6714
7199
|
}
|
|
6715
7200
|
scheduleSessionCleanup(state, channelDriver, options);
|
|
6716
|
-
scheduleClaudeUsageReporting(state, options);
|
|
7201
|
+
state.claudeUsageRearm = scheduleClaudeUsageReporting(state, options);
|
|
6717
7202
|
if (!interactive || state.json) {
|
|
6718
7203
|
log2(state, "Driving channel messages...");
|
|
6719
7204
|
}
|
|
@@ -6768,6 +7253,7 @@ program.name("evident").description("Run OpenCode locally and connect it to Evid
|
|
|
6768
7253
|
program.command("login").description("Authenticate with Evident").option("--token", "Use token-based authentication (for CI/CD)").option("--no-browser", "Do not open the browser automatically").action(login);
|
|
6769
7254
|
program.command("logout").description("Remove stored credentials for the current endpoint").option("--all", "Remove stored credentials for all endpoints").action((options) => logout({ all: options.all }));
|
|
6770
7255
|
program.command("whoami").description("Show the currently logged in user").action(whoami);
|
|
7256
|
+
program.command("status").description("Check whether the configured credentials can reach Evident").option("--json", "Output in JSON format").action((options) => status({ json: options.json }));
|
|
6771
7257
|
program.command("claude-usage").description("[spike] Show Claude subscription usage (requires a local `claude login`)").action(claudeUsage);
|
|
6772
7258
|
program.command("run").description("Connect to Evident and process messages").option("--runner [id]", "Runner ID to connect to (optional when EVIDENT_RUNNER_KEY is set)").option(
|
|
6773
7259
|
"-a, --agent [id]",
|
|
@@ -6797,7 +7283,7 @@ program.command("run").description("Connect to Evident and process messages").op
|
|
|
6797
7283
|
[]
|
|
6798
7284
|
).option(
|
|
6799
7285
|
"--tunnel-ready-file <path>",
|
|
6800
|
-
"Path to write once the tunnel is connected (
|
|
7286
|
+
"Path to write once the tunnel is connected (opt-in; unused unless an operator/image sets it)"
|
|
6801
7287
|
).action(
|
|
6802
7288
|
(options) => {
|
|
6803
7289
|
run({
|