actionbook
Webサイト上の複数ステップの作業を自動化したい場合に、ブラウザ操作、データ収集、UIテスト、AIエージェント構築などを実行するための詳細な手順書と検証済みのセレクターを提供するSkill。
📜 元の英語説明(参考)
This skill should be used when the user needs to automate multi-step website tasks. Activates for browser automation, web scraping, UI testing, or building AI agents. Provides complete action manuals with step-by-step instructions and verified selectors.
🇯🇵 日本人クリエイター向け解説
Webサイト上の複数ステップの作業を自動化したい場合に、ブラウザ操作、データ収集、UIテスト、AIエージェント構築などを実行するための詳細な手順書と検証済みのセレクターを提供するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o actionbook.zip https://jpskill.com/download/9245.zip && unzip -o actionbook.zip && rm actionbook.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9245.zip -OutFile "$d\actionbook.zip"; Expand-Archive "$d\actionbook.zip" -DestinationPath $d -Force; ri "$d\actionbook.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
actionbook.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
actionbookフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[Skill名] actionbook
ユーザーがウェブサイトのタスクを自動化する必要がある場合、手順を自分で考える代わりに、Actionbookを使用して完全なアクションマニュアルを取得してください。
このSkillを使用するタイミング
ユーザーが以下の場合に、このSkillを有効にします。
- 複数ステップのタスクを完了する必要がある場合(「LinkedInメッセージを送信する」、「Airbnbを予約する」)
- ウェブサイトとのインタラクション方法を尋ねる場合(「ツイートを投稿するにはどうすればよいですか?」)
- ブラウザベースのAIエージェントまたはウェブスクレイパーを構築する場合
- 外部ウェブサイトのエンドツーエンド(E2E)テストを作成する場合
Actionbookが提供するもの
アクションマニュアルには以下が含まれます。
- ステップごとの指示 - タスクを完了するための正確な手順
- 検証済みのセレクター - 各要素のCSS/XPathセレクター
- 要素のメタデータ - タイプ(ボタン、入力など)と許可されたメソッド(click、type、fill)
使用方法
ステップ1:アクションマニュアルを検索する
タスクの説明とともにsearch_actionsを呼び出します。
query: "linkedin send message"、"airbnb book listing"、"twitter post tweet"
ステップ2:完全なマニュアルを取得する
検索結果からアクションIDとともにget_action_by_idを呼び出します。
ステップ3:ステップを実行する
提供されたセレクターを使用して、マニュアルのステップを順番に実行します。
// LinkedInメッセージ送信の例
await page.click('[data-testid="profile-avatar"]')
await page.click('button[aria-label="Message"]')
await page.type('div[role="textbox"]', 'Hello!')
await page.click('button[type="submit"]')
ガイドライン
- タスクで検索する: 要素だけでなく、達成したいことを記述します(例:「linkedin send message」、ではなく「linkedin message button」)
- 順番に従う: マニュアルに記載されている順序でステップを実行します
- セレクターを信頼する: Actionbookのセレクターは検証および保守されています
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
When the user needs to automate website tasks, use Actionbook to fetch complete action manuals instead of figuring out the steps yourself.
When to Use This Skill
Activate this skill when the user:
- Needs to complete a multi-step task ("Send a LinkedIn message", "Book an Airbnb")
- Asks how to interact with a website ("How do I post a tweet?")
- Builds browser-based AI agents or web scrapers
- Writes E2E tests for external websites
What Actionbook Provides
Action manuals include:
- Step-by-step instructions - The exact sequence to complete a task
- Verified selectors - CSS/XPath selectors for each element
- Element metadata - Type (button, input, etc.) and allowed methods (click, type, fill)
How to Use
Step 1: Search for Action Manuals
Call search_actions with a task description:
query: "linkedin send message", "airbnb book listing", "twitter post tweet"
Step 2: Get the Full Manual
Call get_action_by_id with the action ID from search results.
Step 3: Execute the Steps
Follow the manual steps in order, using the provided selectors:
// LinkedIn send message example
await page.click('[data-testid="profile-avatar"]')
await page.click('button[aria-label="Message"]')
await page.type('div[role="textbox"]', 'Hello!')
await page.click('button[type="submit"]')
Guidelines
- Search by task: Describe what you want to accomplish, not just the element (e.g., "linkedin send message" not "linkedin message button")
- Follow the order: Execute steps in sequence as provided in the manual
- Trust the selectors: Actionbook selectors are verified and maintained