Agent skill
c-browser
Headless browser automation — navigate pages, click elements, fill forms, take screenshots, scrape content using agent-browser or playwright-cli.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-browser
SKILL.md
Browser Automation
agent-browser (Vercel)
Navigate and interact with web pages using structured snapshots:
# Open a URL
agent-browser open "https://example.com"
# Get interactive element snapshot (shows clickable refs)
agent-browser snapshot -i
# Click an element by ref
agent-browser click @e2
# Fill a form field
agent-browser fill @e5 "search query"
# Take annotated screenshot
agent-browser screenshot --annotate
# Type text
agent-browser type "hello world"
# Press keys
agent-browser press Enter
playwright-cli (Microsoft)
Token-efficient browser automation designed for AI agents:
# Install browser (first time)
playwright-cli install-browser
# Navigate to URL
playwright-cli navigate "https://example.com"
# Get page snapshot
playwright-cli snapshot
# Click element
playwright-cli click "Submit button"
# Fill input
playwright-cli fill "Search" "query text"
# Screenshot
playwright-cli screenshot
Guidelines
- Use agent-browser for AI-driven web interaction (snapshot-ref pattern)
- Use playwright-cli for structured automation and testing flows
- Always check snapshots before clicking — element refs change between pages
- For login flows, navigate step by step and verify each page loads
- Respect robots.txt and rate limits when scraping
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Didn't find tool you were looking for?