ai-news-crawler
Trigger phrase "watching news!"; create a .json file named by creation time only in the current directory, fetch the 10 most recent AI news articles in descending order by time, and output a Chinese summary.
View on GitHubTable of content
Trigger phrase “watching news!”; create a .json file named by creation time only in the current directory, fetch the 10 most recent AI news articles in descending order by time, and output a Chinese summary.
Installation
npx claude-plugins install @feed-mob/feedmob-claude-plugins/ai-news-crawler
Contents
Folders: skills
Included Skills
This plugin includes 1 skill definition:
SKILL
Trigger phrase "watching news!"; Create a JSON file named with the current timestamp only in the current directory, crawl 10 AI-related news in descending order of time and output Chinese summaries
View skill definition
Purpose
Crawl the latest AI-related news from multiple websites, merge and deduplicate them, select 10 in descending order of time, unify summaries into Chinese, and write to a JSON file.
When to Trigger
When the request contains the phrase “Go, Little Plane”.
Inputs
- optional keywords?: Topic keywords (optional)
- optional time_window?: Time window (default: 144h)
Output
- news_json_file_only
Constraints
- Create only one file: <YYYYMMDD_HHMMSS>.json in the current working directory; Do not output any text or paths in the conversation.
- Each record must include fields: title, source, url, published_at (ISO8601), summary_zh, language (zh/en/mixed).
- Fixed quantity: 10 entries, sorted in descending order of published_at; Strict deduplication (using url and title as keys).
- Summaries for English content must be in Chinese; Retain the original language identifier in the language field.
- Avoid crawling paywalled or login-required pages; Exclude ads and sponsored content; Do not write sensitive information or keys.
- If the publication time is missing, use the explicit time on the page; If unavailable, exclude the entry or mark published_at: null and lower its priority—do not guess.
Candidate Sources
- The Verge / AI tag
- TechCrunch / AI tag
- Liangziwei (Quantum Bits) / AI section
- 36Kr / Artificial Intelligence tag
- Official Announcements / Anthropic, Google AI Blog (select latest announcements)
Steps
- Confirm time_window and keywords (if provided).
…(truncated)