Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Instantly Rdsthomas Mission Control

ASecurity

Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.

76 stars
1 votes
0 copies
27 views
Added 2/9/2026
toolsshellbashapi

Works with

cliapi

Security Analysis

A100/100

Scanned 2/12/2026

Install to Claude Code

$npx -y skills add majiayu000/claude-skill-registry --skill instantly-rdsthomas-mission-control --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Instantly Rdsthomas Mission Control?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Instantly Rdsthomas Mission Control
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/majiayu000-instantly-rdsthomas-mission-control/badge)](https://www.skillsdirectory.com/skills/majiayu000-instantly-rdsthomas-mission-control)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: instantly
description: Instantly.ai cold email outreach API - manage campaigns, leads, accounts, and analytics. Use for cold email automation, lead management, campaign creation/monitoring, and email account warmup.
metadata: {"clawdbot": {"emoji": "📧", "requires": {"env": ["INSTANTLY_API_KEY"]}, "primaryEnv": "INSTANTLY_API_KEY"}}
---

# Instantly.ai Skill

Manage cold email outreach via the Instantly.ai API V2. This skill provides full access to campaigns, leads, email accounts, analytics, and more.

## Setup

1. Get your API key from Instantly Dashboard → Settings → API Key
2. Set the environment variable:
   ```bash
   export INSTANTLY_API_KEY="your-api-key-here"
   ```
   Or add to your shell profile / Clawdbot config.

**Note:** API access requires Hypergrowth plan or above.

## Usage

Use the CLI script for all operations:

```bash
# List campaigns
<skill>/scripts/instantly.py campaigns list

# Get campaign details
<skill>/scripts/instantly.py campaigns get <campaign_id>

# List leads in a campaign
<skill>/scripts/instantly.py leads list --campaign <campaign_id>

# Add a lead
<skill>/scripts/instantly.py leads create --campaign <campaign_id> --email "john@example.com" --first-name "John"

# List email accounts
<skill>/scripts/instantly.py accounts list

# Get analytics
<skill>/scripts/instantly.py analytics summary --campaign <campaign_id>
```

## Commands Reference

### Campaigns

| Command | Description |
|---------|-------------|
| `campaigns list` | List all campaigns |
| `campaigns get <id>` | Get campaign details |
| `campaigns create --name "..." --schedule "..."` | Create new campaign |
| `campaigns update <id> --name "..."` | Update campaign |
| `campaigns launch <id>` | Launch/activate campaign |
| `campaigns pause <id>` | Pause campaign |

### Leads

| Command | Description |
|---------|-------------|
| `leads list --campaign <id>` | List leads in campaign |
| `leads get <id>` | Get lead details |
| `leads create --campaign <id> --email "..."` | Add lead to campaign |
| `leads update <id> --status <n>` | Update lead status |
| `leads delete <id>` | Delete lead |
| `leads bulk-add --campaign <id> --file <csv>` | Bulk add leads from CSV |

**Lead Status Codes:**
- 1 = Active
- 2 = Paused
- 3 = Completed
- -1 = Bounced
- -2 = Unsubscribed
- -3 = Skipped

**Interest Status:**
- 1 = Interested
- 2 = Meeting Booked
- 3 = Meeting Completed
- 4 = Won
- 0 = Out of Office
- -1 = Not Interested
- -2 = Wrong Person
- -3 = Lost
- -4 = No Show

### Accounts (Email Sending Accounts)

| Command | Description |
|---------|-------------|
| `accounts list` | List all email accounts |
| `accounts get <email>` | Get account details |
| `accounts create --email "..." --imap-host "..." ...` | Add email account |
| `accounts update <email> --daily-limit 50` | Update account settings |
| `accounts warmup-start <email>` | Start warmup |
| `accounts warmup-pause <email>` | Pause warmup |

**Account Status:**
- 1 = Active
- 2 = Paused
- -1 = Connection Error
- -2 = Soft Bounce Error
- -3 = Sending Error

### Analytics

| Command | Description |
|---------|-------------|
| `analytics summary --campaign <id>` | Campaign summary stats |
| `analytics daily --campaign <id> --days 7` | Daily breakdown |

### Lead Lists

| Command | Description |
|---------|-------------|
| `lists list` | List all lead lists |
| `lists get <id>` | Get list details |
| `lists create --name "..."` | Create lead list |

### Emails (Unibox)

| Command | Description |
|---------|-------------|
| `emails list --campaign <id>` | List emails in campaign |
| `emails get <id>` | Get email details |
| `emails reply <id> --message "..."` | Send reply |

### Webhooks

| Command | Description |
|---------|-------------|
| `webhooks list` | List webhooks |
| `webhooks create --url "..." --event "..."` | Create webhook |
| `webhooks delete <id>` | Delete webhook |

**Webhook Events:**
- `lead_interested`
- `email_sent`
- `email_opened`
- `email_clicked`
- `email_replied`
- `lead_unsubscribed`

## Common Workflows

### Check Campaign Health

```bash
# See all campaigns with status
<skill>/scripts/instantly.py campaigns list

# Get detailed analytics for underperforming campaign
<skill>/scripts/instantly.py analytics summary --campaign <id>

# Check account health
<skill>/scripts/instantly.py accounts list
```

### Add Leads to Running Campaign

```bash
# Single lead
<skill>/scripts/instantly.py leads create \
  --campaign <campaign_id> \
  --email "prospect@company.com" \
  --first-name "Jane" \
  --last-name "Doe" \
  --company "ACME Inc"

# Bulk from CSV (email,first_name,last_name,company_name columns)
<skill>/scripts/instantly.py leads bulk-add \
  --campaign <campaign_id> \
  --file /path/to/leads.csv
```

### Monitor Replies

```bash
# List recent replies
<skill>/scripts/instantly.py emails list --campaign <id> --type reply

# Get conversation thread
<skill>/scripts/instantly.py emails get <email_id>
```

## Output Formats

All commands support `--format` option:
- `table` (default) - Human-readable table
- `json` - Full JSON response
- `csv` - CSV for spreadsheets

Example:
```bash
<skill>/scripts/instantly.py leads list --campaign <id> --format csv > leads.csv
```

## Error Handling

The script returns standard exit codes:
- 0 = Success
- 1 = API error (check message)
- 2 = Invalid arguments

API errors include the Instantly error message in stderr.

## Rate Limits

Instantly API has rate limits. The script handles 429 responses with automatic retry and exponential backoff.

## API Reference

Full API docs: https://developer.instantly.ai/api/v2

Base URL: `https://api.instantly.ai/api/v2/`
Authentication: Bearer token in Authorization header

Attribution

majiayu000majiayu000
View sourceMore from majiayu000 →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

ucoz-landing-skill

Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...

107 votes

Paperclip

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

805541 votes

Daw Music

Digital Audio Workstation usage, music composition, interactive music systems, and game audio implementation for immersive soundscapes.

761 votes

Caveman Compress

Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwrites the original file. Human-readable backup saved as FILE.original.md. Trigger: /caveman-compress FILEPATH or "compress memory file"

1066600 votes

Version Bump

Automated semantic versioning and release workflow for Claude Code plugins. Handles version increments across package.json, marketplace.json, plugin.json manifests, build verification, git tagging, GitHub releases, and changelog generation. NPM publishing is the final human-required handoff because the maintainer raised npm security.

942310 votes
View all in tools →