用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/avivsinai/telclaude --skill browser-automation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | browser-automation |
| description | Headless browser automation via agent-browser CLI |
| allowed-tools | ["Bash","Read","Write","Glob","Grep"] |
Use agent-browser for headless Chromium browser automation when you need to:
# Navigate to a URL
agent-browser navigate --url "https://example.com"
# Take a snapshot (accessibility tree — lightweight alternative to screenshot)
agent-browser snapshot
# Take a screenshot (saves PNG — use cwd or /tmp)
agent-browser screenshot --path ./screenshot.png
# Click an element (by CSS selector or text)
agent-browser click --selector "button.submit"
agent-browser click --text "Sign In"
# Fill a form field
agent-browser fill --selector "input[name=email]" --value "user@example.com"
# Execute JavaScript in page context
agent-browser execute --script "document.title"
# Wait for an element to appear
agent-browser wait --selector ".results" --timeout 5000
All commands run in headless Chromium by default. No display server required.
Set PLAYWRIGHT_BROWSERS_PATH=/ms-playwright if browsers are installed there (Docker default).
agent-browser is not installed, fall back to WebFetch for simple page reads.--timeout to override.