Skills openclaw-trends
Fetch and aggregate OpenClaw-related content from across the internet. Use when the user asks about OpenClaw trends, news, tutorials, videos, community discussions, or what people are saying about OpenClaw. Triggers on phrases like "what's new with OpenClaw", "find OpenClaw tutorials", "OpenClaw news", "OpenClaw YouTube videos", or checking for OpenClaw mentions online.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/andremashukov/openclaw-trends" ~/.claude/skills/clawdbot-skills-openclaw-trends && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/andremashukov/openclaw-trends" ~/.openclaw/skills/clawdbot-skills-openclaw-trends && rm -rf "$T"
manifest:
skills/andremashukov/openclaw-trends/SKILL.mdsource content
OpenClaw Trends
Fetch trending content about OpenClaw from multiple sources and deliver a summary.
Quick Start
python3 scripts/fetch_trends.py [--days 3] [--output json|text]
Workflow
-
Fetch from sources:
- YouTube - Videos (Data API v3)
- GitHub - Repos, discussions, releases
- X/Twitter - Posts (web search)
- Reddit - Discussions (web search)
- Hacker News - Tech discussions (web search)
-
Filter by freshness: Default 2-3 days
-
Deduplicate & rank: Remove duplicates, sort by date
-
Output: Structured summary with links
Notes
- YouTube uses Data API v3 (key embedded for convenience)
- X/Twitter, Reddit, HN use DuckDuckGo web search (no API needed)
- GitHub uses
CLI (auto-detected)gh - For agent-triggered runs, the
tool provides richer resultsweb_search
Output Format
Returns a structured summary:
- Source (YouTube, X, Blog, etc.)
- Title
- Description (truncated)
- URL
- Date
Scheduled Checks
For daily updates, add to cron:
# Daily OpenClaw trends at 9 AM 0 9 * * * cd ~/.openclaw/workspace/skills/openclaw-trends && python3 scripts/fetch_trends.py --days 3 --notify
Notes
- YouTube uses Data API v3 (requires key)
- X/Twitter uses web search (no API needed)
- GitHub uses
CLI or REST APIgh - All other sources use web search