From 9arm-skills
Internal skill providing browser automation action manuals via MCP tools. Use search_actions and get_action_by_id to retrieve pre-computed page selectors for Rust documentation research workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/9arm-skills:core-actionbookThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Pre-computed action manuals for browser automation. Agents receive structured page information instead of parsing entire HTML.
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"]
}
]
}
npx claudepluginhub bossoq/bossoq-skills3plugins reuse this skill
First indexed Jul 7, 2026
Internal skill providing browser automation action manuals via MCP tools. Use search_actions and get_action_by_id to retrieve pre-computed page selectors for Rust documentation research workflows.
Operates websites via browser automation using action manuals for accurate selectors and concurrent multi-tab control.