From 69f4c676bea2b05aa94d690d17cc9dcf535110bd Mon Sep 17 00:00:00 2001 From: Draco Date: Mon, 16 Feb 2026 01:03:59 +0800 Subject: [PATCH] Add use case: Multi-Source Tech News Digest --- README.md | 1 + usecases/multi-source-tech-news-digest.md | 56 +++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 usecases/multi-source-tech-news-digest.md diff --git a/README.md b/README.md index d02b0fc..c5aa60e 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Solving the bottleneck of OpenClaw adaptation: Not ~~skills~~, but finding **way | [Daily Reddit Digest](usecases/daily-reddit-digest.md) | Summarize a curated digest of your favourite subreddits, based on your preferences. | | [Daily YouTube Digest](usecases/daily-youtube-digest.md) | Get daily summaries of new videos from your favorite channels — never miss content from creators you follow. | | [X Account Analysis](usecases/x-account-analysis.md) | Get a qualitative analysis of your X account.| +| [Multi-Source Tech News Digest](usecases/multi-source-tech-news-digest.md) | Automatically aggregate and deliver quality-scored tech news from 109+ sources (RSS, Twitter/X, GitHub, web search) via natural language. | ## Creative & Building diff --git a/usecases/multi-source-tech-news-digest.md b/usecases/multi-source-tech-news-digest.md new file mode 100644 index 0000000..dd91a11 --- /dev/null +++ b/usecases/multi-source-tech-news-digest.md @@ -0,0 +1,56 @@ +# Multi-Source Tech News Digest + +Automatically aggregate, score, and deliver tech news from 109+ sources across RSS, Twitter/X, GitHub releases, and web search — all managed through natural language. + +## Pain Point + +Staying updated across AI, open-source, and frontier tech requires checking dozens of RSS feeds, Twitter accounts, GitHub repos, and news sites daily. Manual curation is time-consuming, and most existing tools either lack quality filtering or require complex configuration. + +## What It Does + +A four-layer data pipeline that runs on a schedule: + +1. **RSS Feeds** (46 sources) — OpenAI, Hacker News, MIT Tech Review, etc. +2. **Twitter/X KOLs** (44 accounts) — @karpathy, @sama, @VitalikButerin, etc. +3. **GitHub Releases** (19 repos) — vLLM, LangChain, Ollama, Dify, etc. +4. **Web Search** (4 topic searches) — via Brave Search API + +All articles are merged, deduplicated by title similarity, and quality-scored (priority source +3, multi-source +5, recency +2, engagement +1). The final digest is delivered to Discord, email, or Telegram. + +The framework is fully customizable — add your own RSS feeds, Twitter handles, GitHub repos, or search queries in 30 seconds. + +## Prompts + +**Install and set up daily digest:** +```text +Install tech-news-digest from ClawHub. Set up a daily tech digest at 9am to Discord #tech-news channel. Also send it to my email at myemail@example.com. +``` + +**Add custom sources:** +```text +Add these to my tech digest sources: +- RSS: https://my-company-blog.com/feed +- Twitter: @myFavResearcher +- GitHub: my-org/my-framework +``` + +**Generate on demand:** +```text +Generate a tech digest for the past 24 hours and send it here. +``` + +## Skills Needed + +- [tech-news-digest](https://clawhub.ai/skills/tech-news-digest) — Install via `clawhub install tech-news-digest` +- [gog](https://clawhub.ai/skills/gog) (optional) — For email delivery via Gmail + +## Environment Variables (Optional) + +- `X_BEARER_TOKEN` — Twitter/X API bearer token for KOL monitoring +- `BRAVE_API_KEY` — Brave Search API key for web search layer +- `GITHUB_TOKEN` — GitHub token for higher API rate limits + +## Related Links + +- [GitHub Repository](https://github.com/draco-agent/tech-news-digest) +- [ClawHub Page](https://clawhub.ai/skills/tech-news-digest)