Create and manage multi-step outreach sequences — LinkedIn messages, cold emails, and follow-ups with personalization. Use when asked to "send outreach", "cr...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install ironclaw-outreach-sequencer或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install ironclaw-outreach-sequencer⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/ironclaw-outreach-sequencer/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: outreach-sequencer description: Create and manage multi-step outreach sequences — LinkedIn messages, cold emails, and follow-ups with personalization. Use when asked to "send outreach", "create email sequence", "follow up with leads", "start a drip campaign", "send LinkedIn messages", "personalized outreach", or any automated multi-step communication workflow. metadata: { "openclaw": { "emoji": "📨" } } ---
Design, schedule, and execute multi-step outreach sequences across LinkedIn and email. Each message is personalized per lead using their profile data from DuckDB.
Day 0: Send LinkedIn connection request (with note)
Day 1: If accepted → Send intro message
Day 3: If no reply → Follow-up message
Day 7: If no reply → Break-up / value-add message
Day 0: Initial cold email
Day 3: Follow-up (reply to original thread)
Day 7: Value-add email (case study, resource)
Day 14: Break-up email ("closing the loop")
Day 0: LinkedIn connection request
Day 2: Cold email (if not connected on LinkedIn)
Day 4: LinkedIn message (if connected) OR email follow-up
Day 7: Final touch (whichever channel they engaged on)
Each message is generated per-lead using their DuckDB profile data. Use these variables:
| Variable | Source | Example | |----------|--------|---------| | {first_name} | Name field (split) | "Jane" | | {company} | Company field | "Acme Corp" | | {title} | Title field | "CTO" | | {mutual} | Shared connections/background | "Stanford" | | {trigger} | Why reaching out now | "saw your Series A" | | {value_prop} | What you offer them | "AI-powered analytics" | | {pain_point} | Their likely challenge | "scaling engineering team" |
1. Read lead profile from DuckDB
2. Identify personalization hooks:
- Shared background (school, company, location)
- Recent company news (web search if needed)
- Role-specific pain points
3. Select message template for sequence step
4. Generate personalized message
5. Store message + status in DuckDB
browser → open LinkedIn messaging
browser → search for recipient
browser → open conversation
browser → type personalized message
browser → send
→ Update DuckDB status: "Sent"
gog gmail send \
--to "{email}" \
--subject "{subject}" \
--body "{personalized_body}" \
--account [email protected]
For follow-ups (reply to thread):
gog gmail reply \
--thread-id "{thread_id}" \
--body "{follow_up_body}"
Track in DuckDB with these status fields:
| Field | Values | Notes | |-------|--------|-------| | Outreach Status | Queued, Sent, Replied, Converted, Bounced, Opted Out | Main status | | Sequence Step | 1, 2, 3, 4 | Current step in sequence | | Last Outreach | date | When last message was sent | | Next Outreach | date | When next step is due | | Outreach Channel | LinkedIn, Email, Both | Active channel | | Reply Received | boolean | True if they responded | | Thread ID | text | Gmail thread ID for email chains |
-- Find leads due for next sequence step
SELECT "Name", "Email", "Outreach Status", "Sequence Step", "Next Outreach"
FROM v_leads
WHERE "Outreach Status" = 'Sent'
AND "Reply Received" = false
AND "Next Outreach" <= CURRENT_DATE
ORDER BY "Next Outreach";
Set up automated sequence execution:
Schedule: Every 2 hours during business hours (9am-5pm Mon-Fri)
Action:
1. Query leads due for next step
2. For each due lead:
a. Generate personalized message for their current step
b. Send via appropriate channel
c. Update status + advance step
d. Set next outreach date
3. Report: "Sent 12 messages (8 LinkedIn, 4 email). 3 replies received."
{
"name": "Outreach Sequencer",
"schedule": { "kind": "cron", "expr": "0 9,11,13,15 * * 1-5", "tz": "America/Denver" },
"sessionTarget": "isolated",
"payload": {
"kind": "agentTurn",
"message": "Run outreach sequence check. Query DuckDB for leads with Next Outreach <= today. Send personalized messages for their current sequence step. Update statuses. Report results.",
"timeoutSeconds": 300
}
}
After each sequence run, track:
Active Sequences: 85 leads
├── Step 1 (Initial): 20 leads
├── Step 2 (Follow-up): 35 leads
├── Step 3 (Value-add): 18 leads
├── Step 4 (Break-up): 12 leads
│
Outcomes:
├── Replied: 23 (27% reply rate)
├── Converted: 8 (9.4% conversion)
├── Opted Out: 3 (3.5%)
├── Bounced: 2 (2.4%)
└── No Response (completed): 15 (17.6%)安装 Ironclaw Outreach Sequencer 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/ironclaw-outreach-sequencer/ 目录(个人级,所有项目可用),或 .claude/skills/ironclaw-outreach-sequencer/(项目级)。重启 AI 客户端后,用 /ironclaw-outreach-sequencer 主动调用,或让 AI 根据上下文自动发现并使用。
Ironclaw Outreach Sequencer 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Ironclaw Outreach Sequencer 可免费安装使用。请查阅仓库了解许可证信息。
Create and manage multi-step outreach sequences — LinkedIn messages, cold emails, and follow-ups with personalization. Use when asked to "send outreach", "cr...
Ironclaw Outreach Sequencer 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。