A voice-first content capture skill for AI agents.
Your agent calls you on the phone, has a conversation, and turns what you said into publishable content (tweets, LinkedIn posts, 小红书 posts, newsletters, or any format you define).
- Your agent triggers a phone call via Retell AI
- You talk for a few minutes — the voice agent asks questions and draws out your ideas
- After you hang up, your agent processes the transcript into content drafts
- Drafts are sent to you for review via your preferred channel
- The conversation is saved to the voice agent's memory for better future calls
- A Retell AI account (for phone calls)
- An AI agent platform (OpenClaw, Claude Code, or any agent with bash access)
Copy the call-me directory to ~/.openclaw/workspace/skills/:
cp -r call-me-skill ~/.openclaw/workspace/skills/call-meThen tell your agent: "Set up Call Me" — it will walk you through onboarding.
Copy to your CLAUDE.md's skill directory, or reference via an @ import in CLAUDE.md:
cp -r call-me-skill ~/.claude/skills/call-meThen tell Claude: "Set up Call Me" — it will walk you through onboarding.
After onboarding, your openclaw.json will have:
{
"skills": {
"entries": {
"call-me": {
"env": {
"RETELL_API_KEY": "key_...",
"RETELL_AGENT_ID": "agent_...",
"RETELL_FROM_NUMBER": "+1...",
"YOUR_PHONE_NUMBER": "+1...",
"RETELL_KNOWLEDGE_BASE_ID": "knowledge_base_..."
}
}
}
}
}- Templates: Edit files in
templates/to change how content is generated. Included:tweet.md,linkedin.md,rednote.md,newsletter.md. Each template has a<!-- CUSTOMIZE THIS SECTION -->block at the top — fill in your personal context before first use. Add new.mdfiles for additional formats. - Schedule: Modify the cron job to change call frequency.
- Voice agent: Update the agent prompt in the Retell dashboard to change the interviewer's style.
MIT