✓ Verified 💻 Development ✓ Enhanced Data

Signal Pipeline

Marketing intelligence pipeline - gather signals from RSS, X/Twitter, Telegram, and Gmail newsletter

Rating
3.8 (343 reviews)
Downloads
7,923 downloads
Version
1.0.0

Overview

Marketing intelligence pipeline - gather signals from RSS, X/Twitter, Telegram, and Gmail newsletters.

Key Features

1

RSS feeds → SQLite database (rss_db.py)

2

X/Twitter → SQLite database (x_monitor.py)

3

Telegram channels → SQLite database (telegram_monitor.py)

4

Gmail newsletters → Signal extraction (newsletter_monitor.py)

5

Daily signals → Draft posts

6

Weekly synthesis → Theme analysis

7

Monthly deep-dive → Essay/book chapter

Complete Documentation

View Source →

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

text
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

bash
# 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:
python
new_feeds = [
    ('Feed Name', 'https://example.com/feed.xml'),
]

Telegram Channels

Edit telegram_monitor.py:
python
CHANNELS = ['channel_name_1', 'channel_name_2']

X Accounts

Edit x_monitor.py:
python
MONITOR_URLS = [
    'https://x.com/username/status/123456789',
]

Gmail Newsletters

The newsletter_monitor.py uses gog CLI. Ensure it's configured:
bash
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

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

Author

Open source - free to use and modify.

Installation

Terminal bash

openclaw install signal-pipeline
    
Copied!

💻Code Examples

python daily_signals.py --monthly

python-dailysignalspy---monthly.txt
## Configuration

### RSS Feeds
Edit `rss_db.py` to add your feed URLs:

]

.txt
### Telegram Channels
Edit `telegram_monitor.py`:

CHANNELS = ['channel_name_1', 'channel_name_2']

channels--channelname1-channelname2.txt
### X Accounts
Edit `x_monitor.py`:

]

.txt
### Gmail Newsletters
The `newsletter_monitor.py` uses `gog` CLI. Ensure it's configured:
example.txt
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
example.sh
# 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
example.py
new_feeds = [
    ('Feed Name', 'https://example.com/feed.xml'),
]
example.py
MONITOR_URLS = [
    'https://x.com/username/status/123456789',
]

Tags

#devops_and-cloud

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author mephistophelesbits
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install signal-pipeline