ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

social-copy-generator

Generate platform-optimized social media copy for product launches. One input, 14 platform outputs (Twitter/X, LinkedIn, Hacker News, Reddit, Xiaohongshu, Jike, WeChat Moments, Weibo, Zhihu, Bilibili, Douyin, Video Account, Telegram, and more). Auto-generates an HTML page with one-click copy buttons. Supports Chinese and English bilingual content.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/dongsheng123132/social-copy-generator
Or

Social Copy Generator

Generate social media copy for multiple platforms from a single product description. Output as an HTML page with one-click copy buttons.

When to use

When the user wants to:

  • Promote a project/product on social media
  • Generate copy for multiple platforms at once
  • Create platform-specific marketing content
  • Launch an open source project with social posts

How it works

  1. User describes their product/project
  2. Generate platform-optimized copy for each target platform
  3. Output an HTML file with styled cards and copy buttons
  4. Open in browser for easy copy-paste

Supported Platforms

PlatformStyleLimits
Twitter/XConcise, thread format for long content280 chars/tweet
Jike (即刻)Developer community, dry contentNo limit
Xiaohongshu (小红书)Casual, emoji-rich, comparison-heavyNo limit
WeChat Moments (朋友圈)Personal, conversationalNo limit
Video Account (视频号)Title + description for videoTitle < 30 chars
LinkedInProfessional, achievement-focusedNo limit
RedditLow-key, helpful, anti-self-promoTitle + body
Hacker NewsShow HN, ultra-minimalTitle only ~80 chars
Product HuntTagline + descriptionTagline < 60 chars
V2EXChinese dev community, technicalTitle + body
Juejin (掘金)Tutorial-style article introTitle + summary
Dev.toEnglish dev blog, tutorial-styleTitle + summary

Output Format

Generate an HTML file with:

  • Styled cards per platform with platform-colored tags
  • white-space: pre-wrap text areas (no extra whitespace when copying)
  • One-click copy buttons using navigator.clipboard
  • Toast notification on copy
  • Mobile responsive layout

HTML Template

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>[Product] - Social Media Copy</title>
<style>
body { font-family: -apple-system, sans-serif; max-width: 700px; margin: 40px auto; padding: 0 20px; background: #f5f5f5; }
.card { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.copy-area { background: #fafafa; border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; white-space: pre-wrap; font-size: 15px; line-height: 1.6; user-select: all; }
button { background: #000; color: #fff; border: none; border-radius: 8px; padding: 10px 20px; font-size: 14px; cursor: pointer; margin-top: 12px; }
.toast { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background: #333; color: #fff; padding: 10px 24px; border-radius: 8px; display: none; z-index: 99; }
</style>
</head>
<body>
<!-- cards here -->
<script>
function copyText(id) {
  navigator.clipboard.writeText(document.getElementById(id).innerText);
  const t = document.getElementById('toast');
  t.style.display = 'block';
  setTimeout(() => t.style.display = 'none', 1500);
}
</script>
</body>
</html>

Platform Copy Guidelines

Metadata

Stars2387
Views0
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-dongsheng123132-social-copy-generator": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#social-media#copywriting#marketing#twitter#xiaohongshu#wechat
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.