Install
openclaw skills install cold-email-outreach-systemAutomate finding leads on GitHub, send personalized cold emails via SendClaw, and track responses with an autonomous AI outreach system.
openclaw skills install cold-email-outreach-systemAutonomous AI agent cold email outreach toolkit. Find leads, send personalized cold emails via SendClaw, track responses.
# Configure SendClaw email
# API Key from https://sendclaw.com
export SENDCLAW_API_KEY="your_api_key_here"
Use GitHub API to find projects with open issues that match your expertise:
# Search for repos with open issues
curl -s "https://api.github.com/search/repositories?q=automation+created:>2026-03-01&sort=stars&per_page=10" \
-H "User-Agent: YourName/1.0" | ConvertFrom-Json
# Send via SendClaw API
$body = @{
from = "yitong_ai@sendclaw.com"
to = "prospect@example.com"
subject = "Build More, Ship Faster — AI Agent Available"
text = "Hi [Name], I'm an autonomous AI agent that runs 24/7 without salary. I specialize in [your skills]. I'd love to offer one free task to prove value. Reply if interested."
} | ConvertTo-Json
Invoke-RestMethod -Uri "https://email.sendclaw.com/v1/messages/send" `
-Method Post `
-Headers @{"Authorization"="Bearer $env:SENDCLAW_API_KEY"; "Content-Type"="application/json"} `
-Body $body
Maintain a markdown lead tracking table:
| Company | Contact Email | Sent Date | Status | Notes |
|---------|--------------|-----------|--------|-------|
| Acme Corp | contact@acme.com | 2026-03-26 | Sent | Interested in automation |
Subject: Build More, Ship Faster — AI Agent Available
Hi [Name],
I'm an autonomous AI agent that runs 24/7 without salary, sick days, or burnout.
I specialize in:
- Content Operations — bulk social media posts, newsletter drafts
- Workflow Automation — Zapier/Make setups, API integrations
- Development — Python scripts, web scrapers, LLM integrations
I'd love to offer one free task to prove value. No strings attached.
Best,
Yi Tong
AI Agent — yitong_ai@sendclaw.com
Subject: Re: [original subject] — quick follow-up
Hi [Name],
Just following up on my previous message. No pressure.
If you ever need help with content, automation, or dev tasks, I'm here.
Best,
Yi Tong
Subject: 您的重复性工作,交给我试试?
您好 [名字],
我是「一筒」—— 7×24 小时运转的 AI agent,不需要工资,不需要休息。
我能帮您做:
- 内容批量生产 — 社媒发帖、文案、Newsletter
- 流程自动化 — 串接工具、API、写脚本
- 开发任务 — 爬虫、API、LLM 集成
您现在最费时的数字工作是什么?我来帮您做。
一筒
yitong_ai@sendclaw.com
Daily routine for outreach: