AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Skillboss Cold Email

skill-skillboss-ai-skillboss-skills-skillboss-cold-email · by SkillBoss-AI

Automated cold email pipeline. Finds target companies, enriches contacts, scrapes websites, and generates personalized cold emails using AI. One API call does it all: search → enrich → scrape → write.

No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-skillboss-ai-skillboss-skills-skillboss-cold-email

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-skillboss-ai-skillboss-skills-skillboss-cold-email)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skillboss Cold Email? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

SkillBoss Cold Email Pipeline

End-to-end cold email automation: company search → contact enrichment → website scraping → AI-personalized email generation.

Quick Execute

# Generate 10 cold emails for AI SaaS companies
curl -s https://api.skillboss.co/v1/pipelines/cold-email \
  -H "Authorization: Bearer $SKILLBOSS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "industry": "AI SaaS",
    "count": 10,
    "purpose": "partnership for API distribution",
    "sender_name": "John",
    "sender_company": "Acme"
  }'

# Use Gemini (cheaper) for email generation
curl -s https://api.skillboss.co/v1/pipelines/cold-email \
  -H "Authorization: Bearer $SKILLBOSS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "industry": "developer tools",
    "count": 5,
    "purpose": "invite to list their API on our marketplace",
    "sender_name": "Jane",
    "sender_company": "DevHub",
    "model": "gemini"
  }'

# Generate emails for pre-existing company list (skip search & scrape)
curl -s https://api.skillboss.co/v1/pipelines/cold-email \
  -H "Authorization: Bearer $SKILLBOSS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "purpose": "follow-up outreach for integration",
    "sender_name": "John",
    "sender_company": "Acme",
    "skip_search": true,
    "skip_scrape": true,
    "companies": [
      {"name": "Stripe", "domain": "stripe.com", "website": "https://stripe.com"},
      {"name": "OpenAI", "domain": "openai.com", "website": "https://openai.com"}
    ]
  }'

Parameters

| Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | industry | string | Yes (unless skip_search) | — | Target industry keywords | | count | integer | No | 10 | Number of companies (1-50) | | purpose | string | No | "cold outreach for business partnership" | Email purpose/goal | | sender_name | string | Yes | — | Your name | | sender_company | string | Yes | — | Your company name | | model | string | No | "claude" | LLM for emails: "claude" or "gemini" | | skip_search | boolean | No | false | Skip company search step | | skip_scrape | boolean | No | false | Skip website scraping step | | skip_generate | boolean | No | false | Skip email generation step | | companies | array | No | null | Pre-existing company data |

Response Format

{
  "status": "success",
  "companies": [
    {
      "name": "Stripe",
      "domain": "stripe.com",
      "website": "https://stripe.com",
      "website_description": "Online payment processing for internet businesses",
      "contacts": [
        {
          "email": "partnerships@stripe.com",
          "first_name": "John",
          "last_name": "Doe",
          "position": "VP Partnerships",
          "confidence": 90,
          "source": "hunter"
        }
      ],
      "generated_email": {
        "subject": "API distribution partnership with Stripe",
        "body": "Hi John, ...",
        "recipient_name": "John Doe",
        "recipient_email": "partnerships@stripe.com"
      }
    }
  ],
  "summary": {
    "total": 10,
    "with_contacts": 7,
    "emails_generated": 10
  },
  "duration_ms": 45000
}

Pipeline Steps

  1. Company Search — Finds companies via Exa neural search, with Google Search and Linkup as fallbacks
  2. Contact Enrichment — Finds email contacts via Hunter domain search, with Apify contact scraper as fallback
  3. Website Scraping — Extracts main content from company websites via Firecrawl
  4. Email Generation — Writes personalized cold emails using Claude or Gemini, referencing scraped company data

Billing

Each pipeline step uses underlying SkillBoss APIs, billed individually:

  • Search: ~1 credit per search
  • Contact enrichment: ~1 credit per company
  • Website scrape: ~1 credit per page
  • Email generation: standard LLM token pricing

Estimated cost: ~$0.05-0.15 per company (varies by model choice).

Authentication & Setup

# Get a free trial key instantly (no sign-up)
node ../skillboss/scripts/skillboss auth trial

# Log in to an existing account
node ../skillboss/scripts/skillboss auth login

# Check balance
node ../skillboss/scripts/skillboss auth status

Balance Warning

If an API response includes _balance_warning, relay it to the user exactly as provided.

Add credits at: https://www.skillboss.co/billing

More Capabilities

For the full model list, chat, video, audio, and deployment features, see: ../skillboss/SKILL.md

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.