←返回 Skills 列表
📱
社媒内容引擎
策略+内容+排期+分析全平台。
社区
📦安装
在终端中运行以下命令安装此 Skill:
clawhub install social-content
✨ 主要特性
- •全平台社媒内容策划
- •智能内容日历管理
- •多账号统一发布
- •数据分析和报告
- •受众洞察和增长建议
- •A/B 测试和优化
📖 使用指南
创建营销活动
策划完整的社交媒体营销活动
import { SocialEngine } from "@ima-claw/social-engine"
const engine = new SocialEngine()
const campaign = await engine.createCampaign({
name: "产品发布",
platforms: ["twitter", "linkedin", "xiaohongshu"],
duration: 30,
goal: "brand_awareness"
})内容发布
跨平台同时发布优化后的内容
await engine.publish({
content: "我们的新产品即将上线!",
platforms: {
twitter: { hashtags: ["#ProductLaunch"] },
linkedin: { tone: "professional" },
xiaohongshu: { style: "种草" }
},
schedule: "2024-03-20T10:00:00Z"
})💡 示例代码
数据分析
获取跨平台数据分析报告
const report = await engine.getAnalytics({
dateRange: ["2024-01-01", "2024-01-31"],
platforms: ["all"],
metrics: ["engagement", "reach", "conversions"]
})
console.log(report.insights)
// 最佳发布时间、热门话题、受众画像等内容优化
AI 驱动的内容优化建议
const optimized = await engine.optimize({
content: "原始内容...",
platform: "twitter",
goal: "engagement",
audience: "tech_professionals"
})
console.log(optimized.suggestions)
// 标题优化、话题建议、发布时机等🔧 故障排除
- •确保各平台 API 凭证配置正确
- •批量发布建议错开时间避免限流
- •数据分析需要至少 7 天的历史数据
- •跨平台内容需根据各平台特点调整