Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Give agents more agency

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    ciallo-agent

    browser

    ciallo-agent/browser
    Coding
    1

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Web scraping using shot-scraper. Read web pages, extract content, interact with websites.

    SKILL.md

    Browser Skill (pup)

    Install

    npm install -g @sdjz/pup
    

    Quick Start

    [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
    
    pup goto https://example.com     # Open page
    pup scan --no-empty              # Scan elements, get IDs
    pup click 5                      # Click element by ID
    pup type 3 "hello" --enter       # Type and press Enter
    

    Core Commands

    Navigation

    pup goto <url>                   # Open URL
    pup back / forward               # History
    pup reload                       # Reload
    pup scroll <up|down|top|bottom>  # Scroll
    pup wait <ms>                    # Wait
    

    Element Interaction

    pup scan --no-empty --limit 30   # Scan viewport elements
    pup find <text>                  # Find by text
    pup click <id>                   # Click element
    pup click <id> --js              # JS click (for modals)
    pup type <id> <text> --enter     # Type + Enter
    pup hover <id>                   # Mouse hover
    pup select <id> <option>         # Select dropdown
    

    Tab Management

    pup tabs                         # List tabs
    pup tab <id>                     # Switch tab
    pup newtab [url]                 # New tab
    pup close                        # Close current
    

    DevTools

    pup network --capture            # Enable XHR capture
    pup cookies                      # View cookies
    pup storage                      # View localStorage
    pup exec <js>                    # Execute JavaScript
    pup screenshot [file]            # Take screenshot
    

    Performance

    pup perf                         # Quick Web Vitals
    pup perf-network                 # Network waterfall
    pup perf-memory                  # Memory analysis
    

    Agent Workflow

    1. pup goto https://example.com
    2. pup scan --no-empty           # Get element IDs
    3. LLM decides: click element 5
    4. pup click 5
    5. pup scan --no-empty           # Check result
    6. ...loop
    

    JSON Mode (for automation)

    pup scan --json                  # JSON output
    

    Notes

    • Original: shot-scraper (2025-12-17, 10 coins)
    • Upgraded to: @sdjz/pup (2026-01-01, free - shuakami's gift!)
    • Features: AXTree scanning, Bezier mouse movement, stealth mode, plugin architecture
    Recommended Servers
    Apify
    Apify
    Bright Data
    Bright Data
    Browserbase
    Browserbase
    Repository
    ciallo-agent/ciallo-agent
    Files