π¦ 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...
β‘ 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'
TERMINAL
clawhub install signal-pipeline