Skip to content

nutllwhy/ai-content-assistant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

AI Content Assistant

🎬 自动化 AI 内容采集与选题推荐系统,专为博主和内容创作者设计。

English | 中文


中文

功能特性

  • 🤖 自动采集 - 每小时自动搜索最新 AI 资讯
  • 🎯 智能筛选 - 精选 3 个最适合做教程的选题
  • 📱 多平台推送 - 支持飞书、微信、Discord、Telegram
  • 🧠 自动去重 - 基于记忆系统,绝不重复推送
  • ⚙️ 灵活配置 - 自定义内容方向、推送时间、目标平台

快速开始

1. 安装 Skill

# 通过 ClawHub 安装
npx clawhub install ai-content-assistant

# 或手动安装
cp ai-content-assistant.skill ~/.openclaw/workspace/skills/

2. 配置 API Keys

# Tavily API (必需,用于AI搜索)
openclaw configure --section env --key TAVILY_API_KEY --value "your-key"

# Gemini API (可选,用于内容生成)
openclaw configure --section env --key GEMINI_API_KEY --value "your-key"

3. 初始化

cd ~/.openclaw/workspace/skills/ai-content-assistant
node scripts/init-memory.js    # 创建记忆文件
node scripts/setup-cron.js     # 设置定时任务

4. 配置飞书推送

编辑 ~/.openclaw/openclaw.json

{
  "channels": {
    "feishu": {
      "enabled": true,
      "appId": "your-app-id",
      "appSecret": "your-app-secret"
    }
  }
}

推送示例

## 🎬 AI教程选题推荐 | 2月5日 10:00

### 1️⃣ OpenAI Codex CLI 首发体验
**适合形式**: 视频 + 文章
**内容要点**:
- 安装配置完整流程
- 实战编码任务演示
- 与 Copilot 对比评测
**教程角度**: "这是程序员的终结者吗?" - 客观体验 + 实用教程
(来源: OpenAI Blog)

### 2️⃣ Anthropic Tool Use API 实战
**适合形式**: 技术文章
**内容要点**:
- 工具调用原理解析
- Python 代码完整示例
- 实战场景:计算器/天气/数据库
**教程角度**: 15分钟构建你的第一个工具型AI Agent
(来源: Anthropic Docs)

### 3️⃣ GPT-4o 图像生成新特性
**适合形式**: 短视频 (60秒)
**内容要点**:
- 新功能快速展示
- 效果前后对比
- Prompt 优化技巧
**教程角度**: 适合社媒平台的快速技巧分享
(来源: OpenAI Changelog)

---
💡 **选题建议**: #2 Tool Use API - 需求高、时机好、竞争少

项目结构

ai-content-assistant/
├── SKILL.md                    # Skill 主文档
├── scripts/
│   ├── setup-cron.js          # 设置定时任务
│   ├── init-memory.js         # 初始化记忆文件
│   └── search-config.js       # 搜索配置 (TODO)
└── references/
    ├── example-output.md      # 输出示例
    └── platform-setup.md      # 平台配置指南

自定义配置

编辑 memory/content-rules.md

user_profile:
  role: AI博主
  platforms: [微信公众号, B站]
  content_types: [教程, 工具评测]

preferences:
  topics:
    - AI编程工具
    - LLM最新动态
    - 开源项目推荐
  
  schedule:
    frequency: hourly
    skip_hours: [1,2,3,4,5,6,7]  # 跳过凌晨

English

Features

  • 🤖 Automated Collection - Hourly AI news search
  • 🎯 Smart Curation - Select 3 best topics for tutorials
  • 📱 Multi-Platform - Feishu, WeChat, Discord, Telegram
  • 🧠 Deduplication - Memory-based, never repeat
  • ⚙️ Flexible Config - Customize topics, schedule, platforms

Quick Start

# Install
npx clawhub install ai-content-assistant

# Setup
node scripts/init-memory.js
node scripts/setup-cron.js

# Configure and go!

Configuration

See references/platform-setup.md for platform-specific instructions.


开源协议

MIT License - 自由使用、修改、分发

作者

Created for AI content creators. Share your improvements!

相关链接

About

自动化 AI 内容采集与选题推荐系统 - OpenClaw Skill

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors