fix: add opencode smoke observability probes

This commit is contained in:
Codex
2026-06-30 10:44:28 +00:00
parent f9d7d68522
commit 2d1f96650e
8 changed files with 389 additions and 8 deletions
+5 -1
View File
@@ -86,8 +86,12 @@ export interface NodeWebProbeScriptOptions {
browserProxyMode: WebProbeBrowserProxyMode;
commandTimeoutSeconds: number;
scriptText: string;
commandLabel?: string;
suppressAdHocWarning?: boolean;
generatedHints?: string[];
generatedPreferredCommands?: Record<string, string>;
scriptSource: {
kind: "stdin" | "file";
kind: "stdin" | "file" | "generated";
path: string | null;
byteCount: number;
sha256: string;