Install
openclaw skills install signal-pipelineMarketing intelligence pipeline - gather signals from RSS, X/Twitter, Telegram, and Gmail newsletters. Generate daily posts, weekly summaries, and monthly de...
openclaw skills install signal-pipelineA marketing intelligence pipeline that aggregates signals from multiple sources, stores them in SQLite, and generates content for personal branding.
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
# 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
Edit rss_db.py to add your feed URLs:
new_feeds = [
('Feed Name', 'https://example.com/feed.xml'),
]
Edit telegram_monitor.py:
CHANNELS = ['channel_name_1', 'channel_name_2']
Edit x_monitor.py:
MONITOR_URLS = [
'https://x.com/username/status/123456789',
]
The newsletter_monitor.py uses gog CLI. Ensure it's configured:
gog gmail search 'newer_than:30d label:newsletter'
Three SQLite databases are created:
rss_db.db - RSS articlesx_monitor.db - X/Twitter datatelegram_db.db - Telegram postsOpen source - free to use and modify.