jpskill.com
💬 コミュニケーション コミュニティ 🟢 非エンジニアでもOK 👤 管理職・人事・カスタマー対応

💬 Instantly Automation

Instantly Automation

営業メールでの新規顧客開拓を、自然な

⏱ お礼メール定型化 5分/通 → 30秒/通

📺 まず動画で見る(YouTube)

▶ 【最新版】Claude(クロード)完全解説!20以上の便利機能をこの動画1本で全て解説 ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Automate Instantly cold email outreach -- manage campaigns, sending accounts, lead lists, bulk lead imports, and campaign analytics -- using natural language through the Composio MCP integration.

🇯🇵 日本人クリエイター向け解説

一言でいうと

営業メールでの新規顧客開拓を、自然な

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o instantly-automation.zip https://jpskill.com/download/1749.zip && unzip -o instantly-automation.zip && rm instantly-automation.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/1749.zip -OutFile "$d\instantly-automation.zip"; Expand-Archive "$d\instantly-automation.zip" -DestinationPath $d -Force; ri "$d\instantly-automation.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して instantly-automation.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → instantly-automation フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • Instantly Automation で、お客様への返信文を作って
  • Instantly Automation を使って、社内向けアナウンスを書いて
  • Instantly Automation で、メールテンプレートを整備して

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Instantly Automation

Automate your cold email outreach with Instantly -- create and manage campaigns with multi-step sequences, configure sending schedules, import leads in bulk, manage sending accounts, and track campaign performance -- all through natural language commands.

Toolkit docs: composio.dev/toolkits/instantly


Setup

  1. Add the Composio MCP server to your client configuration:
    https://rube.app/mcp
  2. Connect your Instantly account when prompted (API key authentication).
  3. Start issuing natural language commands to manage your outreach campaigns.

Core Workflows

1. List Sending Accounts

Retrieve all email accounts configured in your Instantly workspace, with filtering by status and provider.

Tool: INSTANTLY_LIST_ACCOUNTS

Example prompt:

"Show all active sending accounts in my Instantly workspace"

Key parameters:

  • status -- Filter by status: 1 (Active), 2 (Paused), -1 (Connection Error), -2 (Soft Bounce Error), -3 (Sending Error)
  • provider_code -- Filter by provider: 1 (Custom IMAP/SMTP), 2 (Google), 3 (Microsoft), 4 (AWS)
  • search -- Search by email substring or domain
  • limit -- Max items (1-100)
  • starting_after -- Pagination cursor from previous response
  • tag_ids -- Comma-separated tag UUIDs

2. Create a Campaign

Launch a new outreach campaign with scheduling, email sequences, A/B testing variants, and sending configuration.

Tool: INSTANTLY_CREATE_CAMPAIGN

Example prompt:

"Create an Instantly campaign called 'Q1 Outreach' that sends Monday-Friday 9am-5pm Central time with a 3-step email sequence"

Key parameters:

  • name (required) -- Campaign name
  • campaign_schedule (required) -- Schedule configuration:
    • schedules (required) -- Array of schedule objects, each with:
      • name -- Schedule name
      • timing -- {from: "09:00", to: "17:00"} (HH:mm format)
      • days -- Map of day index strings "0" (Sun) to "6" (Sat) to booleans
      • timezone -- Supported values include "America/Chicago", "America/Detroit", "America/Boise", "America/Anchorage"
    • start_date / end_date -- ISO 8601 dates
  • email_list -- Array of sending account email addresses (must be pre-configured accounts; use INSTANTLY_LIST_ACCOUNTS to discover valid addresses)
  • sequences -- Array (only first element used) containing:
    • steps -- Array of step objects with:
      • type -- Must be "email"
      • delay -- Days before NEXT email (integer, min 0)
      • variants -- Array of {subject, body} objects for A/B testing
  • daily_limit -- Daily sending cap
  • email_gap -- Minutes between emails
  • stop_on_reply -- Stop campaign when lead replies (boolean)
  • stop_on_auto_reply -- Stop on auto-replies (boolean)
  • open_tracking / link_tracking -- Enable tracking (booleans)

Timezone notes:

  • Verified working: "America/Chicago" (Central), "America/Detroit" (Eastern), "America/Boise" (Mountain)
  • Auto-mapped: "America/New_York" maps to "America/Detroit", "America/Denver" maps to "America/Boise"
  • NOT supported: "America/Los_Angeles", "US/Pacific" -- use "America/Anchorage" or "America/Dawson" as alternatives

3. Update Campaign Settings

Modify an existing campaign's schedule, sending limits, sequences, or tracking settings.

Tool: INSTANTLY_UPDATE_CAMPAIGN

Example prompt:

"Update my Instantly campaign to increase the daily limit to 100 and enable open tracking"

Key parameters:

  • id (required) -- Campaign UUID
  • Any combination of: name, campaign_schedule, email_list, sequences, daily_limit, email_gap, stop_on_reply, open_tracking, link_tracking, etc.
  • Set any parameter to null to unset it

4. Manage Lead Lists and Bulk Import

Create dedicated lead lists and import prospects in bulk for campaign targeting.

Tools: INSTANTLY_CREATE_LEAD_LIST, INSTANTLY_ADD_LEADS_BULK

Example prompt:

"Create a lead list called 'Q1 Prospects' and add 50 leads to my Instantly campaign"

Key parameters for creating lead lists:

  • List name and configuration

Key parameters for bulk lead import:

  • Campaign or list ID to import into
  • Array of lead objects with email and metadata
  • Duplicate handling options
  • Lead verification settings

5. Review Campaign Details

Retrieve full campaign configuration to verify settings, inspect sequences, or prepare for updates.

Tool: INSTANTLY_GET_CAMPAIGN

Example prompt:

"Show me the full details of my Instantly campaign"

Key parameters:

  • id (required) -- Campaign UUID

6. List All Campaigns

Enumerate all campaigns in your workspace with optional filters and pagination.

Tool: INSTANTLY_LIST_CAMPAIGNS

Example prompt:

"List all my Instantly campaigns"

Key parameters:

  • Optional filters and pagination parameters

Known Pitfalls

  • Timezone support is limited: The Instantly API accepts a restricted set of timezone strings. Pacific Time ("America/Los_Angeles") is NOT supported. Use "America/Anchorage" (UTC-9/UTC-8) or "America/Dawson" (UTC-7 year-round) as alternatives.
  • Invalid schedule payloads cause 400 errors: A malformed campaign_schedule (missing days, from, to, or schedules) triggers HTTP 400. Repeated 400s indicate payload issues, not transient failures.
  • Sequences must be complete: Each sequence step requires a valid type ("email"), delay, and at least one variant with both subject and body. Incomplete variants block campaign creation.
  • Only first sequence element is used: The API only processes sequences[0]. Additional sequences are ignored.
  • email_list must reference existing accounts: The email_list field requires email addresses of pre-configured sending accounts in your Instantly workspace, not arbitrary recipient addresses. Always use INSTANTLY_LIST_ACCOUNTS to discover valid sending addresses.
  • 401 scope errors on campaign creation: Campaign creation can fail with "Invalid scope. Required: campaigns:create". Update your API key permissions before retrying writes.
  • Read-back fields may differ: Field names in INSTANTLY_GET_CAMPAIGN responses may differ from create payloads (e.g., timing.from_ vs timing.from). Parse defensively.

Quick Reference

Action Tool Slug Required Params
List sending accounts INSTANTLY_LIST_ACCOUNTS None (optional filters)
Create campaign INSTANTLY_CREATE_CAMPAIGN name, campaign_schedule
Update campaign INSTANTLY_UPDATE_CAMPAIGN id
Get campaign details INSTANTLY_GET_CAMPAIGN id
List campaigns INSTANTLY_LIST_CAMPAIGNS None (optional filters)
Create lead list INSTANTLY_CREATE_LEAD_LIST List name
Bulk import leads INSTANTLY_ADD_LEADS_BULK Campaign/list ID, leads

Powered by Composio