@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias GuardianApprovalReviewAction

    GuardianApprovalReviewAction:
        | {
            command: string;
            cwd: AbsolutePathBuf;
            source: GuardianCommandSource;
            type: "command";
        }
        | {
            argv: string[];
            cwd: AbsolutePathBuf;
            program: string;
            source: GuardianCommandSource;
            type: "execve";
        }
        | { cwd: AbsolutePathBuf; files: AbsolutePathBuf[]; type: "applyPatch" }
        | {
            host: string;
            port: number;
            protocol: NetworkApprovalProtocol;
            target: string;
            type: "networkAccess";
        }
        | {
            connectorId: string
            | null;
            connectorName: string | null;
            server: string;
            toolName: string;
            toolTitle: string | null;
            type: "mcpToolCall";
        }
        | {
            permissions: RequestPermissionProfile;
            reason: string
            | null;
            type: "requestPermissions";
        }