Systems Lab

Agent skill

smartlead

SmartLead CLI-first skill.

slowingNeeds a keyActs undeclared447 words

Filed under Outbound email.

From solyarikai/boring-gtm-skills · 2 skills · 2 · pushed 2026-06-26

What it does when it runs

SmartLead CLI-first skill. Operating layer for campaigns, leads, sequences, accounts, analytics, webhooks, and inbox operations.

Read from the skill and the 2 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.

Keys and connectors you must supply
  • SMARTLEAD_API_KEY
Hosts it reaches
  • api.smartlead.ai
  • helpcenter.smartlead.ai
  • server.smartlead.ai
Tool permissions it declares
No allowed-tools in the frontmatter. It does act, so it runs under whatever permissions your session already grants.
Actions present in the files
shellwrites files

Ask about smartlead

Opens your assistant with this page's verified links already in the prompt.

Is this safe to install?ClaudeChatGPT
Adapt it to my stackClaudeChatGPT
What else do I need for it to workClaudeChatGPT
Rather ask a human? Talk to Cheetah
git clone --depth 1 --filter=blob:none --sparse https://github.com/solyarikai/boring-gtm-skills.git /tmp/boring-gtm-skills
git -C /tmp/boring-gtm-skills sparse-checkout set "smartlead"
mkdir -p ~/.claude/skills/smartlead
cp -R "/tmp/boring-gtm-skills/smartlead/." ~/.claude/skills/smartlead/

Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗

The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.

Before you install: this skill will not complete its job on a bare agent. It needs SMARTLEAD_API_KEY, which you have to obtain separately.

Reproduced in full from solyarikai/boring-gtm-skills/blob/24a735bc2ca8e99a06bc6695df1efe718794faa8/smartlead/SKILL.md, which is licensed MIT (repository). 447 words, 13 headings.

SmartLead - CLI-First Operating Layer

This skill is the default operating layer for direct SmartLead API work.

Start with the operational guide:

  • PLAYBOOK.md - the human workflow for thinking through SmartLead operations
  • SKILL.md - safety rules and the CLI entry points

Use this skill when you need to:

  • read campaigns, leads, email accounts, replies, and analytics;
  • export data;
  • prepare payloads for update/write operations;
  • perform operational work through the CLI or helper scripts in this folder.

Do not jump straight to generic API tooling when the task is a direct SmartLead operation. Use this skill first.

Source of Truth

Before ambiguous or write-sensitive operations, check current SmartLead documentation:

  • Docs index: https://api.smartlead.ai/llms.txt
  • API reference: https://api.smartlead.ai/api-reference
  • Help center fallback: https://helpcenter.smartlead.ai/en/articles/125-full-api-documentation

Local notes in this skill are operational memory, not the source of truth.

Pay special attention to docs before working with:

  • campaign status;
  • schedule;
  • sequences / variants;
  • email account settings;
  • lead upload limits / validation flags.

Core Rules

  1. Run direct SmartLead operations through: python3 smartlead/smartlead.py <command> [args]
  2. SMARTLEAD_API_KEY must come from the environment. Do not hardcode keys in code, markdown, or shell history.
  3. Before any write/update/delete, show the payload and wait for human approval.
  4. If an endpoint can overwrite existing state, call that out explicitly.
  5. On 429 errors, do not hammer the API. Use backoff and sensible batches.
  6. Put any new helper scripts in smartlead/scripts/.

Speed Notes

  • GET pagination usually uses limit=100.
  • POST /campaigns/{id}/leads supports batches up to 400 leads in this CLI.
  • For larger upload jobs, batch the payload instead of sending one lead at a time.
  • Prefer export/bulk endpoints over many small requests when possible.
  • For inbox and analytics, start with a narrow filter, then expand.

Safety

  • Do not activate a campaign without explicit human confirmation.
  • Treat POST /sequences as a full replace unless current docs confirm safer partial behavior.
  • Treat delay_in_days as relative to the previous email.
  • Use <br> for email bodies rather than raw newline characters.

Skill Folder

  • Playbook: smartlead/PLAYBOOK.md
  • CLI: smartlead/smartlead.py
  • Helper scripts: smartlead/scripts/ if you add your own

Basic Commands

# Documentation
python3 smartlead/smartlead.py docs

# Campaigns
python3 smartlead/smartlead.py campaigns
python3 smartlead/smartlead.py campaign-get 3064335

# Leads
python3 smartlead/smartlead.py leads 3064335
python3 smartlead/smartlead.py leads-export 3064335
python3 smartlead/smartlead.py leads-add 3064335 leads.json --dry-run
python3 smartlead/smartlead.py leads-add 3064335 leads.json --confirm-live

# Sequences
python3 smartlead/smartlead.py sequences 3064335
python3 smartlead/smartlead.py sequences-set 3064335 sequences.json --dry-run

# Accounts
python3 smartlead/smartlead.py accounts
python3 smartlead/smartlead.py account-update 101 '{"max_email_per_day": 35}' --dry-run

# Inbox / analytics
python3 smartlead/smartlead.py inbox-replies --campaign-id 3064335
python3 smartlead/smartlead.py analytics 3064335

Files bundled with it

These load only when the skill asks for them, so they cost nothing until it runs.

Need help setting it up?

This page tells you what smartlead does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.

Book a call →

The directory stays free. There is nothing gated behind this.