Research the last X hours of an AI-focused social timeline and breaking AI news, rank the top 5 most important or trending topics, include the latest startup, product, and feature updates, and save the result as a structured local JSON file. Use when the user wants a fast research sweep, trend summary, or topic shortlist grounded in current chatter and news.
43:T13e2,
Use this skill when the user wants high-signal trend discovery from recent social and news activity.
Produce a ranked list of exactly 5 high-signal AI or tech topics from the requested time window, usually 3, 6, 12, or 24 hours.
The output must be valid JSON and should follow the canonical structure in .codex/references/artifact-spec.md.
If the user does not give an output path, default to ./output/news-radar.json.
topic_id values such as T1, T2, T3$browser-use for research and discovery$x-trend-research as the X source collectorhttps://news.ycombinator.com/https://www.reddit.com/r/technews/hot/browser-use.$x-trend-research rather than redoing X collection from scratchbrowser-use firsttake_snapshot first to inspect the live page structure before interactingbrowser-use.$x-trend-research first and load its collected posts as X input.Return JSON with this shape:
generated_attime_window_hourstopic_countsources_checkednotestopicsEach entry in topics must include:
topic_idranktitlecategorystatussummarywhy_it_matterstime_window_hourstiming_notesignalssource_linksconfidenceUse this order of importance:
status as confirmed, rumor, or mixed.timing_note or notes.Write valid JSON only. Create the parent directory if needed.
{
"generated_at": "2026-04-01T09:30:00Z",
"time_window_hours": 6,
"topic_count": 5,
"sources_checked": [
"https://x.com/i/timeline",
"https://news.ycombinator.com/"
],
"notes": "Ranking favors recent, repeated, and practically important stories.",
"topics": [
{
"topic_id": "T1",
"rank": 1,
"title": "Example launch",
"category": "product_launch",
"status": "confirmed",
"summary": "One-sentence description of the development.",
"why_it_matters": "One-sentence practical implication.",
"time_window_hours": 6,
"timing_note": "Visible posts and source pages indicate activity within the requested window.",
"signals": [
"Repeated mentions from builders on X",
"Official launch page linked in public posts"
],
"source_links": [
"https://x.com/example/status/1",
"https://example.com/launch"
],
"confidence": "high"
}
]
}