Execute arXiv API search queries.
Executes arXiv API searches with field-specific queries and returns formatted paper results.
/plugin marketplace add actionbook/actionbook/plugin install actionbook-arxiv-viewer-playground-arxiv-viewer@actionbook/actionbookhaikuExecute arXiv API search queries.
query: Search query string (may include field prefixes and operators)max_results: Maximum results (default: 10)sort_by: Sort order - relevance, submittedDate, lastUpdatedDate+http://export.arxiv.org/api/query?search_query={query}&max_results={max}&sortBy={sort}WebFetch to fetch the API response# 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}
...
Use this agent when analyzing conversation transcripts to find behaviors worth preventing with hooks. Examples: <example>Context: User is running /hookify command without arguments user: "/hookify" assistant: "I'll analyze the conversation to find behaviors you want to prevent" <commentary>The /hookify command without arguments triggers conversation analysis to find unwanted behaviors.</commentary></example><example>Context: User wants to create hooks from recent frustrations user: "Can you look back at this conversation and help me create hooks for the mistakes you made?" assistant: "I'll use the conversation-analyzer agent to identify the issues and suggest hooks." <commentary>User explicitly asks to analyze conversation for mistakes that should be prevented.</commentary></example>