π¦ ClawHub
Signal Pipeline
by @mephistophelesbits
Marketing intelligence pipeline - gather signals from RSS, X/Twitter, Telegram, and Gmail newsletters. Generate daily posts, weekly summaries, and monthly de...
TERMINAL
clawhub install signal-pipelineπ About This Skill
name: signal-pipeline description: Marketing intelligence pipeline - gather signals from RSS, X/Twitter, Telegram, and Gmail newsletters. Generate daily posts, weekly summaries, and monthly deep-dives for content creation. Use when you need to build a content intelligence system or track marketing/tech trends.
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
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.txtRun daily signals
python daily_signals.pyGenerate weekly summary
python daily_signals.py --weeklyGenerate monthly report
python daily_signals.py --monthly
Configuration
RSS Feeds
Editrss_db.py to add your feed URLs:
new_feeds = [
('Feed Name', 'https://example.com/feed.xml'),
]
Telegram Channels
Edittelegram_monitor.py:
CHANNELS = ['channel_name_1', 'channel_name_2']
X Accounts
Editx_monitor.py:
MONITOR_URLS = [
'https://x.com/username/status/123456789',
]
Gmail Newsletters
Thenewsletter_monitor.py uses gog CLI. Ensure it's configured:
gog gmail search 'newer_than:30d label:newsletter'
Requirements
Database
Three SQLite databases are created:
rss_db.db - RSS articlesx_monitor.db - X/Twitter data telegram_db.db - Telegram postsUse 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.
β‘ When to Use
π‘ Examples
# Install dependencies
cd skills/signal-pipeline
pip install -r requirements.txtRun daily signals
python daily_signals.pyGenerate weekly summary
python daily_signals.py --weeklyGenerate monthly report
python daily_signals.py --monthly
βοΈ Configuration
RSS Feeds
Editrss_db.py to add your feed URLs:
new_feeds = [
('Feed Name', 'https://example.com/feed.xml'),
]
Telegram Channels
Edittelegram_monitor.py:
CHANNELS = ['channel_name_1', 'channel_name_2']
X Accounts
Editx_monitor.py:
MONITOR_URLS = [
'https://x.com/username/status/123456789',
]
Gmail Newsletters
Thenewsletter_monitor.py uses gog CLI. Ensure it's configured:
gog gmail search 'newer_than:30d label:newsletter'