← 返回
沟通协作 中文

Signal Pipeline

Marketing intelligence pipeline - gather signals from RSS, X/Twitter, Telegram, and Gmail newsletters. Generate daily posts, weekly summaries, and monthly de...
营销情报管道——从 RSS、X/Twitter、Telegram 和 Gmail 通讯中收集信号,生成每日帖子、每周摘要和每月报告...
mephistophelesbits
沟通协作 clawhub v1.1.0 1 版本 99909.7 Key: 无需
★ 0
Stars
📥 1,107
下载
💾 23
安装
1
版本
#latest

概述

Signal Pipeline

A marketing intelligence pipeline that aggregates signals from multiple sources, stores them in SQLite, and generates content for personal branding.

What It Does

  • RSS feeds → SQLite database (rss_db.py)
  • X/Twitter → SQLite database (x_monitor.py)
  • Telegram channels → SQLite database (telegram_monitor.py)
  • Gmail newsletters → Signal extraction (newsletter_monitor.py)
  • Daily signals → Draft posts
  • Weekly synthesis → Theme analysis
  • Monthly deep-dive → Essay/book chapter

Files Included

signal-pipeline/
├── SKILL.md              # This file
├── README.md             # Setup instructions
├── requirements.txt      # Python dependencies
├── daily_signals.py      # Main script (daily/weekly/monthly)
├── rss_db.py           # RSS feed storage
├── x_monitor.py        # X/Twitter monitoring
├── telegram_monitor.py  # Telegram channel scraping
└── newsletter_monitor.py # Gmail newsletter extraction

Quick Start

# Install dependencies
cd skills/signal-pipeline
pip install -r requirements.txt

# Run daily signals
python daily_signals.py

# Generate weekly summary
python daily_signals.py --weekly

# Generate monthly report
python daily_signals.py --monthly

Configuration

RSS Feeds

Edit rss_db.py to add your feed URLs:

new_feeds = [
    ('Feed Name', 'https://example.com/feed.xml'),
]

Telegram Channels

Edit telegram_monitor.py:

CHANNELS = ['channel_name_1', 'channel_name_2']

X Accounts

Edit x_monitor.py:

MONITOR_URLS = [
    'https://x.com/username/status/123456789',
]

Gmail Newsletters

The newsletter_monitor.py uses gog CLI. Ensure it's configured:

gog gmail search 'newer_than:30d label:newsletter'

Requirements

  • Python 3.8+
  • feedparser>=6.0.0
  • beautifulsoup4>=4.12.0
  • requests>=2.31.0
  • httpx>=0.25.0

Database

Three SQLite databases are created:

  • rss_db.db - RSS articles
  • x_monitor.db - X/Twitter data
  • telegram_db.db - Telegram posts

Use Cases

  1. Content Creation - Daily signals for X/LinkedIn posts
  2. Market Research - Track industry trends
  3. Competitive Intelligence - Monitor competitors
  4. Personal Branding - Build content streak
  5. Book Writing - Compile monthly insights

Author

Open source - free to use and modify.

版本历史

共 1 个版本

  • v1.1.0 当前
    2026-03-29 09:33 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

communication-collaboration

Gmail

byungkyu
Gmail API 集成,托管 OAuth,支持读取、发送和管理邮件、线程、标签及草稿,适用于需要与 Gmail 交互的场景。
★ 72 📥 37,750
communication-collaboration

Himalaya

lamelas
{"answer":"通过IMAP/SMTP管理邮件的CLI。可在终端使用 `himalaya` 收发、回复、转发、搜索及整理邮件。支持多账户与MML(MIME元语言)编写邮件。"}
★ 68 📥 45,630
communication-collaboration

imap-smtp-email

gzlicanyi
使用IMAP/SMTP读取和发送邮件;检查新/未读邮件、获取内容、搜索邮箱、标记已读/未读、发送带附件的邮件。支持...
★ 114 📥 52,478