From rust-skills
Provides pre-computed CSS/XPath selectors and element details for common web pages to enable agent-driven browser automation without HTML parsing.
npx claudepluginhub actionbook/rust-skills --plugin rust-skillsThis skill uses the workspace's default tool permissions.
Pre-computed action manuals for browser automation. Agents receive structured page information instead of parsing entire HTML.
Delivers up-to-date action manuals for instant browser automation on any website, enabling precise element control, navigation, form filling, scraping, and concurrent multi-tab operations.
Automates browser tasks with AI: navigate sites, fill forms, extract structured data, log in with credentials, and build reusable workflows. Use for web scraping, UI interactions without fixed selectors.
Reference for agent-browser commands to navigate pages, snapshot elements, interact (click/fill/type), extract data. For web testing, form automation, screenshots.
Share bugs, ideas, or general feedback.
Pre-computed action manuals for browser automation. Agents receive structured page information instead of parsing entire HTML.
search_actions - Search by keyword. Returns: URL-based action IDs, content previews, relevance scoresget_action_by_id - Get full action details. Returns: action content, page element selectors (CSS/XPath), element types, allowed methods (click, type, extract), document metadatasearch_actions:
query (required): Search keyword (e.g., "airbnb search", "google login")type: vector | fulltext | hybrid (default)limit: Max results (default: 5)sourceIds: Filter by source IDs (comma-separated)minScore: Minimum relevance score (0-1)get_action_by_id:
id (required): URL-based action ID (e.g., example.com/page){
"title": "Airbnb Search",
"url": "www.airbnb.com/search",
"elements": [
{
"name": "location_input",
"selector": "input[data-testid='structured-search-input-field-query']",
"type": "textbox",
"methods": ["type", "fill"]
}
]
}