web-research
Web browsing strategies, Electron app automation, and search patterns. Load when performing web searches, browsing pages, or controlling Electron apps.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Web browsing strategies, Electron app automation, and search patterns. Load when performing web searches, browsing pages, or controlling Electron apps.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Advanced desktop automation tools - form filling, text extraction, cross-app copy, environment variables, system settings, app menus, package installation, and find-and-replace.
Cross-platform CLI command patterns, shell tips, and defensive construction techniques. Load when building shell commands, piping output, or working across Windows/macOS/Linux.
Control AI coding IDE chats (VS Code Claude Code, Cursor) from your phone. Open, send, scroll, switch tabs, manage history, accept/reject suggestions.
Document conversion and Office automation - convert between formats (PDF, CSV, PNG, HTML), work with Excel/Word/PowerPoint programmatically, and export documents across Windows, macOS, and Linux.
Instructions for creating and editing Contop skills. Load when user asks to make a skill, create a workflow, or teach you a new capability.
| name | web-research |
| description | Web browsing strategies, Electron app automation, and search patterns. Load when performing web searches, browsing pages, or controlling Electron apps. |
| version | 1.0.0 |
Use execute_browser (PinchTab CDP) when:
Use execute_gui + observe_screen when:
PinchTab is automatically downloaded at server startup and started on first browser tool use. If execute_browser returns an error, fall back to execute_gui + observe_screen.
Electron apps are desktop applications built with web technologies. To interact with them deterministically:
--remote-debugging-port=9222 flag via execute_cli:
start "" "C:\path\to\app.exe" --remote-debugging-port=9222 (Windows)open -a "AppName" --args --remote-debugging-port=9222 (macOS)execute_browser with action="connect_cdp" and url="http://localhost:9222"execute_browser for all interactions (snapshot, click, fill, extract_text)If the app is ALREADY running (user launched it normally), you CANNOT attach CDP. Use execute_accessible or observe_screen + execute_gui instead.
Before calling execute_browser for potentially risky operations, evaluate the intent:
SAFE (proceed without confirmation):
REQUIRES CAUTION (explain what you'll do before proceeding):
If in doubt, tell the user what you're about to do and wait for confirmation. Never silently submit forms, make purchases, or trigger irreversible actions.
NEVER click the browser address bar to search within a web app. Use the app's own search:
/ or Ctrl+/ for search/ for searchCtrl+K/ for searchCtrl+FTo search online: navigate to a search engine, fill the query, press Enter, extract results. You can also use execute_gui with an already-open browser. Never tell the user you cannot browse or search online.