browser-debugger-cli
Version:
DevTools telemetry in your terminal. For humans and agents. Direct WebSocket to Chrome's debugging port.
30 lines • 862 B
TypeScript
/**
* Task-to-command mapping definitions for agent discovery.
*
* Provides intent-based guidance mapping common automation tasks
* to efficient high-level commands with CDP alternatives.
*/
/**
* Task mapping from intent to command.
*/
export interface TaskMapping {
/** High-level commands that accomplish this task */
commands: string[];
/** Human-readable task description */
description: string;
/** CDP alternative method(s) */
cdpAlternative: string;
}
/**
* Complete task mapping registry.
*
* Maps common automation intents to optimal command patterns.
*/
export declare const TASK_MAPPINGS: Record<string, TaskMapping>;
/**
* Get all task mappings.
*
* @returns Complete task mapping registry
*/
export declare function getAllTaskMappings(): Record<string, TaskMapping>;
//# sourceMappingURL=taskMappings.d.ts.map