소스 정보
- 저장소
- GeorgeDoors888/GB-Power-Market-JJ
- 최근 소스 활동
- 2026년 4월 16일 00:11
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 3
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/GeorgeDoors888/GB-Power-Market-JJ --skill content-automation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
超级简历 WonderCV 出品,3000 万用户信赖。简历分析、段落改写、JD 岗位匹配、自动匹配职位、PDF 导出、AI 求职导师(面试准备/薪资谈判/职业规划/多版本简历策略)。 触发条件:用户提供简历、要求简历点评/打分/反馈、希望改写某个简历部分、 希望将简历与岗位 JD 匹配、咨询求职建议或面试准备,或提到 CV/简历/求职。 不触发条件:用户讨论普通写作(非简历)、询问其他文档, 或讨论与求职和职业发展无关的话题。
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
调用久吾智能体API进行文本或文件分析处理。支持两种调用方式:(1) 文本内容分析 - 传入name(智能体名称)、docno(文档编号)、content(文本内容);(2) 文件分析 - 传入name、docno和files(文件列表)进行智能评审。适用于合同评审、需求评审、文档审查等场景。当用户要求评审合同、分析条款、审查文档、需求评审、合同条款分析、或需要对文本和文件进行AI智能分析时触发。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | content-automation |
| description | 内容创作自动化工具 Skill。支持社交媒体内容生成、视频脚本创作、定时发布任务管理。当用户需要批量生成内容、自动化社交媒体运营或创建视频脚本时触发。 |
| version | 1.0.0 |
内容创作自动化工具,帮助创作者和运营人员提高效率。支持社交媒体内容生成、视频脚本创作、定时任务管理等功能。
注意:本 Skill 专注于内容创作辅助,用户需遵守各平台的使用条款和社区规范。
# 克隆仓库
git clone https://github.com/FujiwaraChoki/MoneyPrinterV2.git
cd MoneyPrinterV2
# 需要 Python 3.12+
python --version
# 创建虚拟环境
python -m venv venv
source venv/bin/activate # Windows: .venv\Scripts\activate
# 安装依赖
pip install -r requirements.txt
# 复制配置文件
cp config.example.json config.json
编辑 config.json:
{
"openai_api_key": "your-key",
"twitter": {
"enabled": false,
"username": "",
"password": "",
"email": ""
},
"youtube": {
"enabled": false,
"client_secrets_file": "client_secrets.json"
},
"affiliate": {
"enabled": false,
"amazon_tag": ""
}
}
from src.classes.ContentGenerator import ContentGenerator
# 初始化生成器
generator = ContentGenerator()
# 生成社交媒体帖子
post = generator.generate_post(
topic="人工智能趋势",
platform="twitter",
tone="professional",
length="short"
)
print(post)
# 生成视频脚本
script = generator.generate_video_script(
topic="如何学习编程",
duration_seconds=60,
style="educational"
)
print(script)
# 生成内容创意
ideas = generator.generate_content_ideas(
niche="科技评测",
count=10
)
for idea in ideas:
print(f"- {idea}")
# 生成短视频脚本
python -c "
from src.classes.VideoGenerator import VideoGenerator
vg = VideoGenerator()
script = vg.generate_script(
topic='5个Python技巧',
style='fast-paced',
duration=60
)
print(script)
"
# 生成视频描述和标签
python -c "
from src.classes.VideoGenerator import VideoGenerator
vg = VideoGenerator()
metadata = vg.generate_metadata(
title='Python编程入门',
keywords=['python', 'programming', 'tutorial']
)
print(f'描述: {metadata[\"description\"]}')
print(f'标签: {metadata[\"tags\"]}')
"
from src.classes.Scheduler import Scheduler
from datetime import datetime, timedelta
# 创建调度器
scheduler = Scheduler()
# 添加定时发布任务
scheduler.add_job(
func=post_to_twitter,
trigger='cron',
hour=9,
minute=0,
args=["早安推文内容"]
)
# 添加延时任务
scheduler.add_job(
func=generate_daily_content,
trigger='date',
run_date=datetime.now() + timedelta(hours=2)
)
# 启动调度器
scheduler.start()
from src.classes.ContentCalendar import ContentCalendar
# 创建内容日历
calendar = ContentCalendar()
# 添加内容计划
calendar.add_content(
date="2024-03-25",
platform="twitter",
topic="产品发布",
status="planned"
)
# 查看本周计划
weekly_plan = calendar.get_weekly_plan()
for item in weekly_plan:
print(f"{item['date']}: {item['topic']} ({item['platform']})")
# 导出日历
calendar.export_to_csv("content_calendar.csv")
#!/usr/bin/env python3
"""
批量生成一周社交媒体内容
"""
from src.classes.ContentGenerator import ContentGenerator
from src.classes.ContentCalendar import ContentCalendar
import json
def generate_weekly_content(niche: str, platforms: list):
"""为指定领域生成一周内容"""
generator = ContentGenerator()
calendar = ContentCalendar()
# 内容主题池
topics = [
"周一灵感",
"周二技巧",
"周三案例",
"周四趋势",
"周五总结",
"周末轻松话题"
]
content_plan = []
for i, topic in enumerate(topics):
for platform in platforms:
# 生成内容
content = generator.generate_post(
topic=f"{niche} - {topic}",
platform=platform,
tone="casual" if i >= 5 else "professional"
)
# 添加到日历
calendar.add_content(
day=i,
platform=platform,
content=content,
topic=topic
)
content_plan.append({
"day": i,
"platform": platform,
"topic": topic,
"content": content
})
# 保存计划
with (, , encoding=) f:
json.dump(content_plan, f, ensure_ascii=, indent=)
calendar.export_to_csv()
()
()
()
content_plan
__name__ == :
generate_weekly_content(
niche=,
platforms=[, ]
)
#!/usr/bin/env python3
"""
视频内容自动化生产流程
"""
from src.classes.VideoGenerator import VideoGenerator
from src.classes.ContentGenerator import ContentGenerator
import os
def create_video_pipeline(topic: str, output_dir: str = "./output"):
"""创建完整视频制作流程"""
os.makedirs(output_dir, exist_ok=True)
vg = VideoGenerator()
cg = ContentGenerator()
print(f"🎬 开始制作视频: {topic}")
# 1. 生成脚本
print("📝 生成脚本...")
script = vg.generate_script(
topic=topic,
style="educational",
duration=90
)
with open(f"{output_dir}/script.txt", "w", encoding="utf-8") as f:
f.write(script)
# 2. 生成视频描述
print("📄 生成视频描述...")
metadata = vg.generate_metadata(
title=topic,
keywords=["教程", "教育", topic]
)
with open(f"{output_dir}/metadata.json", "w", encoding="utf-8") as f:
import json
json.dump(metadata, f, ensure_ascii=False, indent=2)
# 3. 生成缩略图描述
()
thumbnail_ideas = cg.generate_content_ideas(
niche=,
count=
)
(, , encoding=) f:
idea thumbnail_ideas:
f.write()
()
()
()
()
{
: script,
: metadata,
: thumbnail_ideas
}
__name__ == :
create_video_pipeline()
#!/usr/bin/env python3
"""
分析内容表现并生成优化建议
"""
from src.classes.Analytics import Analytics
from src.classes.ContentGenerator import ContentGenerator
def analyze_and_optimize(content_history: list):
"""分析历史内容表现并生成优化建议"""
analytics = Analytics()
generator = ContentGenerator()
# 分析表现
print("📊 分析内容表现...")
insights = analytics.analyze_performance(content_history)
print("\n🔍 关键洞察:")
print(f" 最佳发布时间: {insights['best_posting_time']}")
print(f" 高互动话题: {', '.join(insights['top_topics'])}")
print(f" 最佳内容长度: {insights['optimal_length']}")
# 生成优化建议
print("\n💡 优化建议:")
recommendations = generator.generate_recommendations(insights)
for rec in recommendations:
print(f" - {rec}")
# 生成下周期内容策略
print("\n📅 下周期内容策略:")
strategy = generator.generate_content_strategy(
insights=insights,
timeframe="下周"
)
print(strategy)
return insights, recommendations
# 示例数据
sample_history = [
{"topic": , : , : },
{: , : , : },
{: , : , : },
]
analyze_and_optimize(sample_history)
项目提供了一系列便捷脚本:
# 从项目根目录运行
# 上传视频
bash scripts/upload_video.sh /path/to/video.mp4 "视频标题"
# 批量生成内容
bash scripts/generate_batch.sh topics.txt
# 发布定时内容
bash scripts/scheduled_post.sh
from src.classes.TemplateManager import TemplateManager
# 创建模板管理器
tm = TemplateManager()
# 注册自定义模板
tm.register_template(
name="product_launch",
template="""
🚀 新品发布!
{product_name} 现已上线!
✨ 核心功能:
{features}
🎯 适合人群: {target_audience}
了解更多: {link}
"""
)
# 使用模板生成内容
content = tm.render_template(
"product_launch",
product_name="AI助手Pro",
features="- 智能回复\n- 多语言支持\n- 数据分析",
target_audience="内容创作者",
link="https://example.com"
)
print(content)
from src.classes.ContentAdapter import ContentAdapter
# 创建适配器
adapter = ContentAdapter()
# 原始内容
original = """
人工智能正在改变内容创作的方式。
从文本生成到视频制作,AI 工具让创作者能够更高效地生产高质量内容。
"""
# 适配到不同平台
twitter_version = adapter.adapt_for_platform(original, "twitter")
linkedin_version = adapter.adapt_for_platform(original, "linkedin")
instagram_version = adapter.adapt_for_platform(original, "instagram")
print("Twitter:", twitter_version)
print("LinkedIn:", linkedin_version)
print("Instagram:", instagram_version)
| 平台 | 建议频率 | 最佳时段 |
|---|---|---|
| Twitter/X | 3-5次/天 | 9:00, 12:00, 18:00 |
| 1-2次/天 | 8:00, 17:00 | |
| 1-3次/天 | 11:00, 14:00, 20:00 |
# 重新安装依赖
pip install -r requirements.txt --force-reinstall
# 检查 Python 版本
python --version # 需要 3.12+
本工具仅供学习和内容创作辅助使用:
本项目基于 AGPL-3.0 许可证开源。使用本 Skill 即表示你同意遵守相关许可条款。