askui
Version:
Reliable, automated end-to-end-testing that depends on what is shown on your screen instead of the technology you are running on
16 lines (15 loc) • 631 B
TypeScript
import { OsAgentHandler } from './tools/os-agent-tools';
import { ClaudeAgent } from './claude-agent';
import { ExecutionRuntime } from '../../../execution/execution-runtime';
export declare class AskUIAgent extends ClaudeAgent {
private osAgentHandler;
private executionRuntime;
constructor(executionRuntime: ExecutionRuntime);
isConnected(): boolean;
initializeOsAgentHandler(): Promise<void>;
getOsAgentHandler(): OsAgentHandler;
configureAsDesktopAgent(): Promise<void>;
configureAsAndroidAgent(): Promise<void>;
private static DesktopSystemPrompt;
private static AndroidSystemPrompt;
}