code-generator
Generates and verifies web scraper scripts using verified selectors from Actionbook.
Background agent for fetching arxiv.org web content using **agent-browser CLI**.
> /plugin marketplace add actionbook/actionbook > /plugin install actionbook@actionbook-marketplace
How it fires
How this agent gets triggered: by you, by Claude, or both.
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**.
name: browser-fetcher model: haiku tools: - Bash - Read
Background agent for fetching arxiv.org web content using **agent-browser CLI**.
**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
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
# 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
# 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
| Page | Common Selectors | |------|------------------| | List page | `#dlpage`, `.list-dateline`, `.meta` | | Search | `.arxiv-result`, `.title`, `.authors` | | Homepage | `.news`, `.catchup-index` |
Return extracted text content in a structured format:
Let your AI agent get the sources behind logins and paywalls.
Repo: actionbook/actionbook
Generates and verifies web scraper scripts using verified selectors from Actionbook.
Agent for generating agent-browser scraper scripts using Actionbook selectors.
Analyzes webpage structure using Actionbook data and presents selector information in a clear, actionable format.
Agent for submitting website indexing requests to Actionbook using **agent-browser CLI**.
Background agent for reading ar5iv.org HTML papers using **agent-browser CLI**.