feat: add monitor evidence inspect cli

This commit is contained in:
Codex
2026-07-07 00:38:50 +00:00
parent acc21b191b
commit e9c91c78e6
8 changed files with 356 additions and 10 deletions
@@ -126,6 +126,20 @@ export type WebProbeSentinelOptions =
readonly full: boolean;
readonly timeoutSeconds: number;
}
| {
readonly kind: "inspect";
readonly action: "inspect-url" | "inspect-id";
readonly node: string;
readonly lane: string;
readonly sentinelId: string | null;
readonly input: string;
readonly view: WebProbeSentinelReportView;
readonly raw: boolean;
readonly full: boolean;
readonly diagnoseMonitorWeb: boolean;
readonly resolutionWarnings: readonly string[];
readonly timeoutSeconds: number;
}
| {
readonly kind: "dashboard";
readonly action: WebProbeSentinelDashboardAction;