Your OpenClaw agent can draft text. But can it match a brand voice across 6 platforms? Connect Motif and it can.
API endpoints
Platforms per call
Generation time
Rate limit
OpenClaw is the most popular open-source AI agent platform with 310,000+ GitHub stars. It runs on your own devices as a locally-controlled AI assistant, connecting to messaging platforms like WhatsApp, Telegram, Slack, and Discord. With 100+ built-in skills and an extensible plugin system, OpenClaw agents can automate complex workflows across your entire digital life.
Sign up for a Motif Starter ($29/mo) or Pro ($59/mo) plan. Go to Settings → API Keys in your dashboard and create a new key. You'll see it once — copy it now.
# Your key looks like this:
motif_k8x3...aBcDeFgHiJkLmNoPqRsTuVwXyZCreate a new skill file in your OpenClaw skills directory. This tells your agent how to call Motif's API.
// skills/motif-repurpose.js
module.exports = {
name: "motif-repurpose",
description: "Repurpose content into 6 platform-native posts using Motif",
async execute({ text, url }) {
const res = await fetch("https://www.createmotif.com/api/v1/repurpose", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.MOTIF_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ text, url }),
});
const { data } = await res.json();
return data; // { jobId, status: "processing" }
},
};Add your Motif API key to your OpenClaw environment variables so the skill can authenticate.
# In your .env or OpenClaw config:
MOTIF_API_KEY=motif_YOUR_KEY_HERETell your OpenClaw agent to repurpose content. It will call the Motif API, wait for processing, and return platform-native posts in your trained voice.
# In any OpenClaw channel (Slack, Telegram, WhatsApp, etc.):
"Repurpose this podcast transcript into social posts"
# Or with a URL:
"Repurpose https://myblog.com/latest-post"
# Your agent calls Motif → polls for completion → returns
# LinkedIn posts, Twitter threads, Instagram captions,
# TikTok scripts, email newsletters, and blog posts.Motif trains on your writing samples to learn your exact tone, vocabulary, and style. Every post your agent generates sounds like you wrote it — not like ChatGPT.
One POST to /api/v1/repurpose returns native content for LinkedIn, Twitter, Instagram, TikTok, email, and blog. Your agent doesn't need to prompt-engineer per platform.
Submit content and get a job ID immediately. Poll for status or register a webhook URL — Motif calls you when generation completes. Built for agent workflows.
Your agent receives a podcast transcript. It calls Motif, gets 15-30 platform-native posts, and schedules them across your social accounts. Total agent code: 15 lines.
Publish a blog post. Your OpenClaw agent detects it, sends the URL to Motif, and distributes voice-matched posts across LinkedIn, Twitter, and Instagram automatically.
For agencies: your OpenClaw agent manages multiple clients, each with their own Motif voice profile. Upload client content, get voice-matched posts for each client's platforms.
We manage social for 12 clients. Before Motif, that meant 12 different writing styles to maintain manually. Now each client has their own voice profile and the output is indistinguishable from hand-written.
David L.
Content Agency Director
I uploaded 5 blog posts, and Motif nailed my tone so well my co-founder couldn't tell which posts were mine vs. generated. That's when I knew this was different.
Marcus R.
Agency Owner, 15 clients on Motif
I record a 30-minute podcast and get a week of content across 4 platforms. Grew my LinkedIn from 800 to 3,400 followers in 3 months. The ROI is absurd.
Priya M.
Creator & Consultant
Turn any idea, recording, or blog post into a LinkedIn post that sounds exactly like you wrote it. No more staring at a blank screen.
Learn more →Transform recordings, blog posts, or raw ideas into Twitter threads that hook readers and drive engagement. Each tweet fits the 280-character limit naturally.
Learn more →Transform any content into newsletter-ready email copy. Conversational tone, clear structure, and a voice your subscribers recognize.
Learn more →Your LinkedIn sounds professional. Your Twitter sounds casual. Your newsletter sounds like someone else wrote it. That's the problem.
Learn more →Yes. API access requires an active Starter ($29/mo) or Pro ($59/mo) subscription. Create an API key in your Motif dashboard under Settings → API Keys.
POST /api/v1/repurpose returns a job ID immediately. Poll GET /api/v1/jobs/{id} for status, or register a webhook URL on your API key to get notified when generation completes. Typical processing takes under 2 minutes.
Yes. POST /api/v1/voices/train accepts writing samples or URLs. Your agent can programmatically train and manage voice profiles without any manual steps.
60 requests per minute per API key. Rate-limited responses return HTTP 429 with a Retry-After header. For most agent workflows, this is more than enough.
Yes. If your OpenClaw setup supports MCP, you can use npx @motif/mcp-server for native tool calls instead of HTTP requests. Same capabilities, different protocol.
LinkedIn posts, Twitter/X threads, Instagram captions, TikTok scripts, email newsletters, and blog posts. Each output is native to the platform — not copy-pasted with minor edits.
Your voice. Every platform. Minutes, not hours.
$29/mo · 7-day money-back guarantee · Cancel anytime