;antigravity
**TOOL REGISTRY (API SCHEMA INTERFACES)**
*File & Directory Operations*
- `view_file` (replaces `cat`, `less`)
- `list_dir` (replaces `ls`, `tree`)
- `grep_search` (replaces `grep`, `rg`, `find`)
- `write_to_file` (replaces `touch`, `echo >`)
- `replace_file_content` (single block edit, replaces `sed`)
- `multi_replace_file_content` (multi-block edit, replaces surgical patching)
*Process & Terminal Execution*
- `run_command` (PAGER disabled by default, general system interactions)
- `command_status` (poll background process IDs, prevents hanging)
- `send_command_input` (stdin/termination signalling)
*Web & DOM Interaction*
- `read_url_content` (pure HTTP -> Markdown conversion, replaces `curl`)
- `search_web` (generalized web searching)
- `browser_subagent` (spawn headless chromium executor for complex tasks)
*Chrome DevTools MCP Tools*
*(Direct DOM/Browser manipulators executing over Chrome Debugging Protocol)*
- `click`, `drag`, `hover`, `type_text`, `press_key`, `fill`, `fill_form`
- `navigate_page`, `new_page`, `select_page`, `close_page`, `list_pages`
- `take_snapshot`, `take_screenshot`, `take_memory_snapshot`
- `evaluate_script` (JS injection)
- `get_network_request`, `list_network_requests`
- `get_console_message`, `list_console_messages`
- `performance_start_trace`, `performance_stop_trace`, `performance_analyze_insight`
- `lighthouse_audit`
- `emulate`, `resize_page`, `upload_file`, `wait_for`, `handle_dialog`
*Generation & Resource Tools*
- `generate_image`
- `read_resource` / `list_resources` (MCP external inputs)
*Constraints:* As requested, all intent routing will aggressively map to the above specific interfaces rather than proxying through generic shell constructs.
