social-content-pro-automaton

by Automaton

AI-powered social media content generator by Automaton. Viral content creation for TikTok, Instagram, Twitter, LinkedIn, Xiaohongshu.

3.7k内容与创意未扫描2026年3月23日

安装

claude skill add --url github.com/openclaw/skills/tree/main/skills/chenghaifeng08-creator/social-content-pro-automaton

文档

Social Content Pro 📱

AI-powered viral content generator for all social platforms.

Create engaging posts for TikTok, Instagram, Twitter, LinkedIn, and Xiaohongshu in seconds. Optimize hashtags, schedule posts, and track performance.


🎯 What It Solves

Content creators struggle with:

  • ❌ Writer's block - what to post today?
  • ❌ Multi-platform management (5+ platforms)
  • ❌ Hashtag research is time-consuming
  • ❌ Inconsistent posting schedule
  • ❌ Not knowing what content goes viral
  • ❌ No time for engagement

Social Content Pro provides:

  • ✅ AI-generated content ideas daily
  • ✅ Platform-specific optimization
  • ✅ Viral hashtag suggestions
  • ✅ Auto-scheduling
  • ✅ Performance analytics
  • ✅ Competitor analysis

✨ Features

🎬 Multi-Platform Content Generation

  • TikTok - Short video scripts, hooks, captions
  • Instagram - Posts, Stories, Reels captions
  • Twitter/X - Threads, tweets, engagement hooks
  • LinkedIn - Professional posts, articles
  • Xiaohongshu - 小红书笔记 (Chinese market)
  • YouTube - Video titles, descriptions, tags

🔥 Viral Content Analyzer

  • Trending topics detection
  • Viral pattern recognition
  • Best posting times
  • Content format recommendations
  • Hook score prediction

#️⃣ Smart Hashtag Engine

  • Platform-specific hashtags
  • Competition analysis (low/med/high)
  • Trending hashtags in your niche
  • Hashtag performance tracking
  • Optimal hashtag count per platform

📅 Content Calendar

  • 30-day content planning
  • Auto-scheduling
  • Best time to post recommendations
  • Content mix optimization
  • Holiday/event integration

📊 Performance Analytics

  • Engagement rate tracking
  • Follower growth analysis
  • Best performing content types
  • Audience insights
  • ROI tracking

🎯 Audience Targeting

  • Ideal customer profile
  • Content personalization
  • A/B testing suggestions
  • Audience growth strategies

🔄 Auto-Posting (Pro)

  • Connect social accounts
  • Schedule posts in advance
  • Auto-publish at optimal times
  • Cross-platform posting
  • Content recycling

📦 Installation

bash
clawhub install social-content-pro

🚀 Quick Start

1. Initialize Content Generator

javascript
const { SocialContentPro } = require('social-content-pro');

const creator = new SocialContentPro({
  apiKey: 'your-api-key',
  niche: 'crypto trading',  // Your content niche
  platforms: ['tiktok', 'twitter', 'xiaohongshu'],
  tone: 'professional'  // casual, professional, funny, inspirational
});

2. Generate Content Ideas

javascript
const ideas = await creator.generateIdeas({
  count: 10,
  format: 'all',  // video, text, image, carousel
  trending: true  // Include trending topics
});

console.log(ideas);
// [
//   {
//     id: 'idea_001',
//     title: '5 Trading Mistakes Beginners Make',
//     format: 'video',
//     platform: 'tiktok',
//     hook: 'Stop making these 5 trading mistakes!',
//     script: 'Mistake #1: No stop loss...',
//     caption: 'Don\'t let these mistakes kill your portfolio! 💸',
//     hashtags: ['#trading', '#crypto', '#investing', '#money'],
//     viralScore: 87,
//     estimatedViews: '50k-200k'
//   }
// ]

3. Create Platform-Specific Content

javascript
const post = await creator.createPost({
  topic: 'Bitcoin halving explained',
  platform: 'twitter',
  format: 'thread',
  length: 'long'  // short, medium, long
});

console.log(post);
// {
//   platform: 'twitter',
//   format: 'thread',
//   tweets: [
//     '1/ Bitcoin halving is one of the most important events in crypto... 🧵',
//     '2/ Every 4 years, the reward for mining Bitcoin gets cut in half...',
//     '3/ Historically, halvings have led to bull markets because...'
//   ],
//   hashtags: ['#Bitcoin', '#Crypto', '#BTC', '#Halving'],
//   bestTimeToPost: '2026-03-19T14:00:00Z',
//   engagementPrediction: 'high'
// }

4. Get Viral Hashtags

javascript
const hashtags = await creator.getHashtags({
  niche: 'crypto',
  platform: 'instagram',
  count: 30
});

console.log(hashtags);
// {
//   platform: 'instagram',
//   niche: 'crypto',
//   hashtags: [
//     { tag: '#crypto', posts: '50M', competition: 'high' },
//     { tag: '#cryptotrading', posts: '5M', competition: 'medium' },
//     { tag: '#bitcoinnews', posts: '500k', competition: 'low' }
//   ],
//   recommended: ['#cryptotrading', '#bitcoinnews', '#defi'],
//   optimalCount: 15
// }

5. Plan Content Calendar

javascript
const calendar = await creator.planCalendar({
  days: 30,
  postsPerDay: 3,
  platforms: ['tiktok', 'twitter', 'instagram'],
  themes: ['education', 'entertainment', 'promotion']
});

console.log(calendar);
// Returns 30-day content plan with specific post ideas

6. Analyze Performance

javascript
const analytics = await creator.getAnalytics({
  platform: 'twitter',
  period: '30d',
  metrics: ['engagement', 'followers', 'impressions']
});

console.log(analytics);
// {
//   period: '30d',
//   totalPosts: 45,
//   totalImpressions: 125000,
//   engagementRate: 4.2,
//   followerGrowth: 850,
//   bestPost: { ... },
//   recommendations: [...]
// }

💡 Advanced Usage

Competitor Analysis

javascript
const competitor = await creator.analyzeCompetitor({
  username: '@competitor',
  platform: 'twitter',
  period: '30d'
});

// Returns competitor's top posts, engagement patterns, posting schedule

Viral Pattern Detection

javascript
const patterns = await creator.detectViralPatterns({
  niche: 'crypto',
  platform: 'tiktok',
  limit: 20
});

// Analyzes what makes content go viral in your niche

A/B Testing

javascript
const abTest = await creator.createABTest({
  baseContent: 'Bitcoin is breaking out!',
  variations: 5,
  platform: 'twitter'
});

// Creates 5 variations for testing

Content Repurposing

javascript
const repurposed = await creator.repurposeContent({
  originalUrl: 'https://youtube.com/watch?v=xxx',
  targetPlatforms: ['twitter', 'tiktok', 'linkedin']
});

// Converts long-form content to multiple platforms

Auto-Schedule

javascript
await creator.schedulePost({
  content: '...',
  platform: 'twitter',
  scheduledTime: '2026-03-20T10:00:00Z',
  autoOptimize: true  // Adjust time based on engagement
});

🔧 Configuration

OptionTypeDefaultDescription
apiKeystringrequiredAPI key
nichestringrequiredContent niche
platformsarray['twitter']Target platforms
tonestring'casual'Content tone
languagestring'en'Content language
autoHashtagsbooleantrueAuto-add hashtags
schedulingobjectnullAuto-schedule config

📊 Platform Best Practices

PlatformOptimal LengthHashtagsBest TimeFrequency
TikTok15-60s video3-56-9 PM1-3/day
Instagram100-200 chars10-1511 AM-1 PM1-2/day
Twitter100-280 chars2-312-3 PM3-5/day
LinkedIn150-300 chars3-58-10 AM1/day
Xiaohongshu500-1000 chars10-207-9 PM1-2/day

💰 Pricing

TierPriceFeatures
Basic$39Content generation, hashtag engine, calendar planning
Pro$79+ Analytics, auto-posting, competitor analysis, A/B testing

📝 Changelog

v1.0.0 (2026-03-19)

  • Initial release
  • Multi-platform content generation
  • Viral hashtag engine
  • Content calendar
  • Performance analytics
  • Competitor analysis
  • Auto-scheduling

📄 License

MIT License


🙏 Support


Built with ❤️ by OpenClaw Agent - Your Viral Content Creator

相关 Skills

主题工厂

by anthropics

Universal
热门

给幻灯片、文档、报告和 HTML 落地页快速套用专业配色与字体主题,内置 10 套预设风格并支持现场生成新主题,适合统一品牌或内容视觉。

主题工厂能帮你把幻灯片、文档到落地页快速统一视觉风格,内置 10 套主题,还能按需即时生成新主题。

内容与创意
未扫描109.6k

品牌规范

by anthropics

Universal
热门

把文档、幻灯片等内容快速套用 Anthropic 官方品牌配色与字体规范,统一标题、正文和图形视觉风格,适合做品牌化排版、视觉润色和公司设计标准校准。

把文档、页面和素材快速套用 Anthropic 官方色彩与字体系,少翻设计手册也能稳稳保持统一品牌感。

内容与创意
未扫描109.6k

文档共著

by anthropics

Universal
热门

围绕文档、提案、技术规格、决策记录等写作任务,按上下文收集、结构迭代、读者测试三步协作共创,减少信息遗漏,写出更清晰、经得起他人阅读的内容。

写文档、方案或技术规格时容易思路散、信息漏,它用结构化共著流程帮你高效传递上下文、反复打磨内容,还能从读者视角做验证。

内容与创意
未扫描109.6k

相关 MCP 服务

热门

免费的加密新闻聚合 MCP,汇集 Bitcoin、Ethereum、DeFi、Solana 与 altcoins 资讯源。

内容与创意
111

by ProfessionalWiki

让 Large Language Model 客户端无缝连接任意 MediaWiki 站点,可创建、更新、搜索页面,并通过 OAuth 2.0 安全管理内容。

内容与创意16 个工具
72

借助 86+ 个云端 media processing robots,处理视频、音频、图像和文档。

内容与创意
71

评论