返回顶部
s

social-media-autoresearch社交媒体自动研究

>

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 5.0.0
安全检测
已通过
108
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

social-media-autoresearch

social-media-autoresearch

完整的自主社交媒体引擎。一个技能涵盖所有功能。7×24小时全天候运行。



📁 内部结构

social-media-autoresearch/

├── SKILL.md ← 你当前所在位置

├── social-media-engagement/ ← 浏览器互动
│ ├── youtube/SKILL.md
│ ├── tiktok/SKILL.md
│ └── instagram/SKILL.md

├── postiz/ ← 发布到28+平台
│ └── SKILL.md

├── wayin-clips/ ← Wayin AI云端剪辑
│ └── SKILL.md

├── local-clips/ ← Prism本地剪辑
│ └── SKILL.md

├── scripts/ ← 17个生产脚本
│ ├── autonomous_loop.py ← 主循环(全部8个步骤)
│ ├── discovery.py ← 发现新视频
│ ├── selector.py ← 挑选最佳视频
│ ├── clip_runner.py ← 生成剪辑
│ ├── posting.py ← 发布到平台
│ ├── engagement.py ← 互动指南
│ ├── collector.py ← 收集指标
│ ├── evaluator.py ← 保留/修改/淘汰
│ ├── evolver.py ← 进化SOUL.md
│ ├── tracker.py ← 流水线状态
│ ├── health_check.py ← 验证设置
│ └── comment-inject.js

├── config/ ← ⚠️ 编辑这些文件
│ ├── channels.json
│ ├── platforms.json
│ └── strategy.json

├── references/ ← 模板+协议
│ ├── experiment-template.md
│ ├── evolution-protocol.md
│ └── memory-structure.md

└── data/
├── videos.json
└── experiments/



🚀 设置

1. 安装前置依赖

bash

核心工具


pip install yt-dlp openai-whisper
brew install ffmpeg

Postiz CLI — 使用我的联盟链接 🌟

https://postiz.pro/ziwen-xu

npm install -g postiz

🌟 使用我的联盟链接有助于支持本项目:
postiz.pro/ziwen-xu

2. 配置

config/channels.json — 要监控的YouTube频道:
json
{
channels: [{name: 频道名称, url: https://youtube.com/@channel}],
search_topics: [AI生产力, 深度工作专注],
min_views: 1000000,
maxagedays: 30
}

config/platforms.json — 你的Postiz账户:
json
{
integrations: {
youtube: 从postiz_integrations:list获取,
tiktok: 从postiz_integrations:list获取,
instagram: 从postiz_integrations:list获取
},
account: {
channel_name: 你的频道名称,
username: 你的IG用户名
}
}

config/strategy.json — 你的内容目标:
json
{
niches: [AI, 生产力, 创业],
clipspervideo: 6,
clipdurationseconds: 35,
postsperday: 3
}

3. 验证

bash
python3 scripts/health_check.py



🔄 8步循环

通过cron每6小时执行一次:

发现 → 选择 → 剪辑 → 发布 → 互动 → 收集 → 评估 → 进化

步骤脚本功能
1discovery.py扫描频道+RSS+搜索
2
selector.py | 挑选最佳视频 | | 3 | clip_runner.py | 生成剪辑(Prism或Wayin) | | 4 | posting.py | 上传到Postiz+发布 | | 5 | engagement.py | 浏览器自动化 | | 6 | collector.py | 拉取指标 | | 7 | evaluator.py | 保留/修改/淘汰判定 | | 8 | evolver.py | 更新SOUL.md |

🎬 剪辑生成

Prism(本地,免费)

查看 local-clips/SKILL.md

bash
python3 scripts/clip_runner.py --url ... --engine prism --num-clips 6

Wayin(云端)

查看 wayin-clips/SKILL.md

bash
python3 scripts/clip_runner.py --url ... --engine wayin --topics AI



📤 发布

查看 postiz/SKILL.md

bash

上传然后发布


postiz upload path/to/clip.mp4
python3 scripts/posting.py --clip path --platforms youtube,tiktok,instagram \
--caption 持续性的关键 🧡 #AI

🌟 获取Postiz:postiz.pro/ziwen-xu


💬 互动

查看各平台的SKILL.md:

平台技能文件
YouTube Shortssocial-media-engagement/youtube/SKILL.md
TikTok
social-media-engagement/tiktok/SKILL.md |
| Instagram Reels | social-media-engagement/instagram/SKILL.md |

核心规则: 每会话最多10次 | 观看≥30秒 | 检查[已点赞] | 添加🧡 | 跳过赞助内容



⏰ Cron定时任务

bash

主循环 — 每6小时


openclaw cron add \
--schedule 0 /6 \
--payload {kind:agentTurn,message:python3 scripts/autonomous_loop.py} \
--session-target isolated \
--label sma-loop

评估 — 每天上午10点

openclaw cron add \ --schedule 0 10 * \ --payload {kind:agentTurn,message:python3 scripts/evaluator.py && python3 scripts/evolver.py} \ --session-target isolated \ --label sma-eval

🔧 命令

命令功能
scripts/healthcheck.py验证前置依赖
scripts/autonomousloop.py
完整8步循环 | | scripts/discovery.py | 发现新视频 | | scripts/selector.py | 挑选最佳视频 | | scripts/clip_runner.py --url ... --engine prism | 生成剪辑 | | scripts/posting.py --clip path --platforms youtube,tiktok | 发布到平台 | | scripts/collector.py --source postiz | 拉取指标 | | scripts/evaluator.py --dry-run | 检查判定结果 | | scripts/tracker.py status | 流水线概览 |

🔒 安全

  • - 零API密钥硬编码 — 全部在config/中
  • 分享前将config/添加到.gitignore
  • Prism+浏览器互动:无需API密钥
  • Postiz:API密钥在config/platforms.json或环境变量中

🧪 自主研究循环

Karpathy风格的A/B测试:

发布(冠军+变异)→ 等待48小时 → 评估 → 保留/修改/淘汰

判定标准: ≥基准+10% → 保留 | -10%到+10% → 修改 | ≤-10% → 淘汰

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 social-media-autoresearch-1776083047 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 social-media-autoresearch-1776083047 技能

通过命令行安装

skillhub install social-media-autoresearch-1776083047

下载

⬇ 下载 social-media-autoresearch v5.0.0(免费)

文件大小: 204.64 KB | 发布时间: 2026-4-14 10:44

v5.0.0 最新 2026-4-14 10:44
Everything under 1 skill: YouTube/TikTok/IG engagement, Postiz, Wayin, Prism local clips, discovery, selector, posting, metrics, evaluator, evolver. Full 8-step 24/7 loop. Postiz affiliate: postiz.pro/ziwen-xu

Archiver·手机版·闲社网·闲社论坛·智能体自动化市场· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2026 闲社网·AI智能体论坛·AI自动化解决方案·http://xianshe.com

p2p_official_large
返回顶部