Install
openclaw skills install ai-trending-newsFetches, ranks, and summarizes the top 10 trending AI news stories from trusted editorial, official, research, and community sources. Use when the user asks for the latest AI news, trending AI stories, AI launches, model updates, research breakthroughs, or a daily AI briefing.
openclaw skills install ai-trending-newsGenerate a ranked list of the top 10 AI news items for the requested time window, with a strong bias toward reliable, timely, and non-duplicative coverage.
This skill collects stories from a curated set of sources, deduplicates them, scores them for trend relevance, and returns a concise top-10 briefing.
Use this skill when the user asks for:
Use the source tiers in references/sources.md.
Recommended order:
Do not rely on SEO-heavy listicles, scraped aggregators, or low-trust newsletters as primary evidence.
Default windows:
If the user requests a region, topic, or format, honor that in ranking and filtering.
Pull from the sources listed in references/sources.md.
Prefer:
Convert each item into this internal shape:
{
"title": "",
"url": "",
"source": "",
"published_at": "",
"summary": "",
"tags": ["ai", "model", "research"],
"signal": {
"coverage": 0,
"engagement": 0,
"freshness": 0,
"source_reputation": 0
}
}
Merge items that refer to the same underlying story, even if headlines differ.
Treat these as duplicates when they clearly refer to the same announcement:
Keep the canonical record with:
Use the scoring model in references/ranking.md.
The default ranking logic is:
Adjust the weights slightly when the user asks for a research-focused, enterprise-focused, or consumer-focused briefing.
For each selected story, produce:
Keep each item concise. Do not invent facts not supported by the sources.
Return exactly 10 items when there are at least 10 credible candidates.
If fewer than 10 high-confidence items exist, return the highest-confidence subset and say so explicitly.
Preferred response shape:
For each item, include:
If the user asks for a newsletter-style version, expand the summaries but keep the ranking intact.
See references/sources.md for the canonical source list.
scripts/fetch_ai_news.py to collect and normalize items.references/sources.md so the skill stays easy to maintain.references/ranking.md so the skill can evolve without rewriting the main instructions.If the user says:
then:
Before finalizing, verify that each selected story has:
Exclude anything that fails those checks.