analyze
Analyze a webpage's structure using Actionbook's verified selectors and show available elements for scraping.
Extract all figures and their captions from an arXiv paper (ar5iv.org).
> /plugin marketplace add actionbook/actionbook > /plugin install actionbook@actionbook-marketplace
How it fires
How this command gets triggered: by you, by Claude, or both.
/figuresContext preview
What this command does when you run it.
Extract all figures and their captions from an arXiv paper (ar5iv.org).
Extract all figures and their captions from an arXiv paper (ar5iv.org).
/arxiv-viewer:figures <arxiv_id> [--figure <n>]
/arxiv-viewer:figures 2301.07041 # All figures /arxiv-viewer:figures 2301.07041 --figure 1 # Just Figure 1 /arxiv-viewer:figures 1706.03762 # Transformer paper figures
Uses **Actionbook + agent-browser** to extract figures from ar5iv.org:
1. `search_actions("ar5iv figure")` → get action ID 2. `get_action_by_id(action_id)` → get figure selectors 3. `agent-browser open https://ar5iv.org/html/{arxiv_id}` 4. `agent-browser get text "figure.ltx_figure"` 5. Parse figures and captions
| Element | Selector | |---------|----------| | All figures | `figure.ltx_figure` | | Figure by ID | `#S3.F1` (Section 3, Figure 1) | | Figure image | `figure.ltx_figure img` | | Figure caption | `figcaption.ltx_caption` |
## Figures from: {Paper Title}
arXiv: {id}
### Figure 1
**Caption:** {caption text}
**Location:** Section {n}
**Image:** {image_url or description}
### Figure 2
**Caption:** {caption text}
**Location:** Section {n}
**Image:** {image_url or description}
...
---
*Total: {n} figures*Let your AI agent get the sources behind logins and paywalls.
Repo: actionbook/actionbook
Analyze a webpage's structure using Actionbook's verified selectors and show available elements for scraping.
List all websites that have verified selector data in Actionbook.
Request a new website to be indexed in Actionbook by submitting its URL through the request form.
Extract the bibliography/references from an arXiv paper (ar5iv.org).