
Core Actionbook
- 56 installs
- 1.4k repo stars
- Updated May 24, 2026
- zhanghandong/rust-skills
Helps with ai & agent building tasks during AI-assisted development.
About
core-actionbook is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- core-actionbook
- AI & Agent Building
- AI-coding skill
Core Actionbook by the numbers
- 56 all-time installs (skills.sh)
- +5 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #6,750 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/zhanghandong/rust-skills --skill core-actionbookAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 56 |
|---|---|
| repo stars | ★ 1.4k |
| Last updated | May 24, 2026 |
| Repository | zhanghandong/rust-skills ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Actionbook
Pre-computed action manuals for browser automation. Agents receive structured page information instead of parsing entire HTML.
Workflow
1. search_actions - Search by keyword, returns URL-based action IDs with content previews 2. get_action_by_id - Get full action manual with page details, DOM structure, and element selectors 3. Execute - Use returned selectors with your browser automation tool
MCP Tools
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 metadata
Parameters
search_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)
Example Response
{
"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"]
}
]
}policy:
allow_implicit_invocation: false