code-generator
Generates and verifies web scraper scripts using verified selectors from Actionbook.
Execute arXiv API search queries.
> /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.
Execute arXiv API search queries.
name: search-executor model: haiku tools: - WebFetch
Execute arXiv API search queries.
1. Build search URL with proper encoding:
2. Construct full URL: `http://export.arxiv.org/api/query?search_query={query}&max_results={max}&sortBy={sort}` 3. Use `WebFetch` to fetch the API response 4. Parse XML to extract entries 5. Return list of papers
# Simple title search http://export.arxiv.org/api/query?search_query=ti:transformer&max_results=10 # Author search http://export.arxiv.org/api/query?search_query=au:hinton&max_results=10 # Combined with category http://export.arxiv.org/api/query?search_query=ti:attention+AND+cat:cs.CL&max_results=10 # Sorted by date http://export.arxiv.org/api/query?search_query=cat:cs.LG&sortBy=submittedDate&sortOrder=descending&max_results=20
Use this prompt when calling WebFetch:
Extract a list of papers from this arXiv API search response. For each paper extract: - Title - arXiv ID - Authors - Categories - Published date - Brief summary (first sentence of abstract)
Return search results in this format:
## Search Results
Found {n} papers:
1. **{Title}** (arXiv:{id})
Authors: {author1}, {author2}, ...
Categories: {categories}
Published: {date}
2. **{Title}** (arXiv:{id})
Authors: {author1}, {author2}, ...
Categories: {categories}
Published: {date}
...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 fetching arxiv.org web content using **agent-browser CLI**.
Background agent for reading ar5iv.org HTML papers using **agent-browser CLI**.