ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

auto-push-system-skill

全自动化AI内容监控与飞书推送工作流,支持多源内容检测、自动文档创建、智能错误恢复。当用户需要自动化推送AI生成的内容(播客摘要、技能学习总结、对话简报等)到飞书时使用此技能。

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/bianca1227/auto-push-system-skill
Or

AI内容自动推送系统技能

📊 技能概述

AI内容自动推送系统 - 一个成熟的生产级自动化工作流,能够监控、处理并将AI生成的内容推送到飞书,实现零人工干预。

核心功能

全自动化 - 零人工干预
多源监控 - AI播客摘要、技能学习总结、对话简报
智能内容检测 - 实时检测新内容生成
智能推送 - 自动创建飞书文档和通知
错误恢复 - 内置容错和自愈机制
日志与审计 - 完整的执行历史和状态跟踪


🏗️ 系统架构

核心组件

  1. 内容监控器 - 检测日志文件中的CONTENT_READY信号
  2. 文档创建器 - 将内容转换为飞书文档
  3. 通知管理器 - 向目标聊天/群组发送提醒
  4. 状态跟踪器 - 记录所有操作和结果
  5. 调度器 - 按预定计划执行任务

工作流程

内容生成 → 日志信号 → 自动检测 → 飞书文档创建 → 通知 → 记录保存

🛠️ 安装与配置

系统要求

  • OpenClaw Gateway 正在运行
  • 飞书应用已获得用户授权
  • Cron服务已启用

快速设置

# 1. 将技能复制到工作区
cp -r /path/to/skill ~/.openclaw/workspace/skills/auto-push-system

# 2. 安装依赖
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/install.sh

# 3. 配置设置
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/configure.sh

⚙️ 配置说明

基本设置

# 通知目标聊天ID
TARGET_CHAT_ID="oc_c133e85bd6eb593e08dcf7aed3a8530b"

# 日志文件位置
AI_PODCAST_LOG="/var/log/ai-podcast-digest.log"
SKILL_DIGEST_LOG="/var/log/skill-digest.log"
CONVERSATION_LOG="/var/log/conversation-brief.log"

# 内容检测模式
CONTENT_PATHS="/tmp/*.md"
CONTENT_SIGNAL="CONTENT_READY"

调度配置

# AI播客摘要:每天12:00, 22:30
0 12 * * * /bin/bash /path/to/ai-podcast-digest.sh
30 22 * * * /bin/bash /path/to/ai-podcast-digest.sh

# 其他任务
0 8 * * * /bin/bash /path/to/skill-digest.sh
0 22 * * * /bin/bash /path/to/conversation-brief.sh

🚀 使用指南

1. 手动执行

# 检查系统状态
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/status.sh

# 运行单次内容检查
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/check-content.sh

# 强制推送特定内容
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/push-content.sh /path/to/content.md

2. 自动化监控

系统自动执行:

  • 每5分钟扫描日志文件
  • 检测CONTENT_READY信号
  • 创建飞书文档
  • 发送通知
  • 记录所有操作

3. 支持的内容类型

  • 🎙️ AI播客摘要
  • 📚 技能学习总结
  • 💬 对话简报

🔍 监控与维护

健康检查

# 系统健康检查
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/health-check.sh

# 查看执行日志
tail -f /var/log/auto-push-system.log

日志位置

  • /var/log/auto-push-system.log - 主执行日志
  • /var/log/auto-push-cron.log - Cron执行日志
  • /var/log/processed-records.jsonl - 成功处理的内容记录

状态命令

# 查看最近活动
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/activity-report.sh

# 生成性能报告
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/performance-report.sh

🚨 故障排除

常见问题与解决方案

问题症状解决方案
飞书授权失败unknown command 'feishu_create_doc'确保飞书应用已正确授权
Cron未运行无日志或活动检查cron服务状态:systemctl --user status cron
内容未检测新文件未处理验证日志文件包含CONTENT_READY信号
API频率限制错误429或类似实施指数退避或批量处理

诊断命令

# 运行完整诊断
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/diagnostics.sh

# 测试飞书连接性
bash ~/.openclaw/workspace/skills/auto-push-system/scripts/test-feishu.sh

📈 高级功能

1. 智能内容优先级

  • 实时内容评分
  • 基于优先级的推送调度
  • 自适应交付优化

Metadata

Stars4473
Views1
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-bianca1227-auto-push-system-skill": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.