Skip to content
Automation
Agent

browser-fetcher

Background agent for fetching arxiv.org web content using **agent-browser CLI**.

From plugin
actionbook
1.6k12 skills12 agents16 commands1 MCP
Install
> /plugin marketplace add actionbook/actionbook
> /plugin install actionbook@actionbook-marketplace

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

Background agent for fetching arxiv.org web content using **agent-browser CLI**.

Agent definition

browser-fetcher.md
name: browser-fetcher
model: haiku
tools:
  - Bash
  - Read

browser-fetcher

Background agent for fetching arxiv.org web content using **agent-browser CLI**.

MUST USE agent-browser

**Always use agent-browser commands, never use Fetch/WebFetch:**

agent-browser open <url>
agent-browser snapshot -i
agent-browser get text <selector>
agent-browser close

Input

  • `url`: Target URL (arxiv.org page)
  • `selectors`: CSS selectors from Actionbook (optional)
  • `task`: What to extract (e.g., "latest papers", "search results")

Workflow

1. `agent-browser open <url>` - Open the page 2. `agent-browser snapshot -i` - Get page structure (if no selectors provided) 3. `agent-browser get text <selector>` - Extract content 4. `agent-browser close` - Close browser 5. Return extracted content

Example: Latest Papers

# Open latest papers page
agent-browser open "https://arxiv.org/list/cs.CL/recent"

# Get page snapshot to find selectors
agent-browser snapshot -i

# Extract paper list (use selector from Actionbook)
agent-browser get text "#dlpage"

# Close browser
agent-browser close

Example: Search Results

# Open search results
agent-browser open "https://arxiv.org/search/?query=transformer&searchtype=all"

# Extract results
agent-browser get text ".arxiv-result"

# Close browser
agent-browser close

Selectors Reference

| Page | Common Selectors | |------|------------------| | List page | `#dlpage`, `.list-dateline`, `.meta` | | Search | `.arxiv-result`, `.title`, `.authors` | | Homepage | `.news`, `.catchup-index` |

Output

Return extracted text content in a structured format:

  • Paper titles
  • Authors
  • arXiv IDs
  • Links

Error Handling

  • If page doesn't load, return "Failed to load: {url}"
  • If selector not found, try `agent-browser snapshot -i` to find alternatives
  • Always close browser with `agent-browser close`
Read more
Ships withactionbook

Actionbook turns the websites you work in every day into something your AI agent can actually operate. Direct API requests when possible, UI automation when not, with login handled. Fast and resilient.

Get the whole plugin