Automated system for collecting and analyzing content from thought leaders across multiple platforms.
# Collect content from last 7 days
~/.openclaw/skills/thought-leader-tracker/thought-leader-tracker.sh collect
# Collect content from last 30 days
~/.openclaw/skills/thought-leader-tracker/thought-leader-tracker.sh collect 30
# List tracked thought leaders
~/.openclaw/skills/thought-leader-tracker/thought-leader-tracker.sh list
Edit config.json to customize:
{
"name": "Your Name",
"keywords": ["keyword1", "keyword2", "keyword3"],
"platforms": ["youtube", "apple-podcasts", "spotify"]
}
Reports are saved to daily-logs/ with:
For full functionality, configure:
YOUTUBE_API_KEY environment variableCurrent implementation uses available public APIs (iTunes Search) and placeholders for authenticated services.
Add to crontab for daily collection:
# Daily at 8 AM
0 8 * * * ~/.openclaw/skills/thought-leader-tracker/thought-leader-tracker.sh collect 7
thought-leader-tracker/
├── SKILL.md
├── thought-leader-tracker.sh # Main CLI script
├── config.json # Configuration
├── scripts/
│ └── collector.js # Content collection logic
└── daily-logs/ # Generated reports
└── daily-report-YYYY-MM-DD-7d.md
共 1 个版本