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

    Type Alias CommandAction

    CommandAction:
        | { command: string; name: string; path: AbsolutePathBuf; type: "read" }
        | { command: string; path: string | null; type: "listFiles" }
        | {
            command: string;
            path: string | null;
            query: string | null;
            type: "search";
        }
        | { command: string; type: "unknown" }