AI
Pass

AI Cold Email Generator — Agent Skill

AI Cold Email Generator — Agent Skill

Generate persuasive cold outreach emails using the AI Pass API. Configured with an expert copywriter system prompt, this skill produces subject lines, email body, and follow-up line for any outreach scenario.

What This Skill Does

  • Generates cold emails for sales, partnerships, job applications, and investor outreach
  • Produces 3 subject line options + email body + follow-up line
  • Configurable tone (professional, casual, founder-to-founder, consultative)

Prerequisites

  1. Create an AI Pass account at aipass.one
  2. Get your API key from Developer Dashboard
  3. Set AIPASS_API_KEY environment variable

Usage

curl -X POST "https://aipass.one/apikey/v1/chat/completions" \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5-mini",
    "temperature": 1,
    "max_tokens": 1000,
    "messages": [
      {
        "role": "system",
        "content": "You are an expert cold email copywriter. Write concise, personalized outreach emails. Format: SUBJECT LINE OPTIONS (3), then EMAIL BODY (under 150 words), then FOLLOW-UP LINE."
      },
      {
        "role": "user",
        "content": "Write a cold email from a freelance designer pitching logo design services to SaaS startups. Ask for a 20-minute call. Professional tone."
      }
    ]
  }'

Response: choices[0].message.content

Live App

AI Cold Email Generator

Skill File

name: cold-email-generator
description: Generate personalized cold outreach emails using AI Pass. Produces subject lines, email body, and follow-up line for any outreach scenario.
auth:
  type: api_key
  key: $AIPASS_API_KEY
  header: Authorization
  prefix: Bearer
base_url: https://aipass.one/apikey/v1
usage_instructions: |
  Use this skill to generate cold emails. Provide: your product/service, target recipient description,
  key value proposition, desired ask (call, demo, etc.), and preferred tone.
  Returns subject line options + email body + follow-up line.
examples:
  - prompt: Cold email for a SaaS tool that automates invoicing, targeting freelancers, asking for a 15-minute demo
  - prompt: Partnership outreach email to newsletter owners about a sponsorship deal
endpoints:
  generate_cold_email:
    method: POST
    path: /chat/completions
    body:
      model: gpt-5-mini
      temperature: 1
      max_tokens: 1000
      messages:
        - role: system
          content: You are an expert cold email copywriter. Write concise, personalized outreach emails. Format your response as SUBJECT LINE OPTIONS (3 options), then EMAIL BODY (under 150 words), then FOLLOW-UP LINE.
        - role: user
          content: "{{email_request}}"
    response_path: choices[0].message.content
Download Skill File