Real-time technology news search and aggregation from 75 international and Chinese media sources across 9 core technical domains. Intelligent keyword-based routing with domain aliases searches only relevant sources. Automatically adapts to network environment - seamlessly switches between global sources (75) and China-only sources (18) based on network accessibility. Use when user requests to search for tech news by keyword. Trigger phrases include "search for [keyword] tech news", "find news about [topic]", "latest news on [subject]", or Chinese equivalents like "搜索 [关键词] 科技新闻". Provides multi-source heat analysis, automatic EN↔CN translation, and clean Markdown presentation.
Real-time keyword-based search across 75 tech news sources with smart domain routing, automatic network adaptation, domain aliases, heat analysis, and translation.
This skill searches multiple technology news sources simultaneously, automatically detects technical domains from your keyword (with alias support), routes to relevant sources only, ranks results by "heat score" (based on cross-source appearance, recency, and keyword relevance), and presents them in a clean Markdown format with automatic English-to-Chinese translation.
Total Sources: 75 (18 China + 57 Global, across 9 core technical domains)
Automatic Network Adaptation: The skill silently detects network accessibility and automatically adjusts source selection:
News Sources by Domain:
General (25 sources):
Frontend/Web (14 sources):
Backend (16 sources):
Mobile (4 sources): Reddit (r/androiddev, r/iOSProgramming, r/FlutterDev), Android Developers Blog
AI/ML (11 sources):
DevOps (9 sources):
Hardware (4 sources): Hackaday, Arduino Blog, Reddit (r/arduino, r/raspberry_pi)
Security (4 sources): The Hacker News (security), Krebs on Security, Reddit (r/netsec, r/cybersecurity)
OS (1 source): Phoronix
Enhanced with Domain Aliases + Network Adaptation: The skill automatically detects technical domains from your keyword and searches only relevant sources. Network accessibility is detected silently in the background - if global sources are not accessible, the system automatically uses China sources only. Detection result is cached for 5 minutes.
How it works:
Examples (assuming global network accessible):
{general, frontend} → Searches: ~37 sources{general, frontend} → Searches: ~37 sources (alias: "web" → frontend){general, frontend} → Searches: ~37 sources{general, ai} → Searches: ~30 sources{general, ai} → Searches: ~30 sources (alias: "ML" → ai){general, ai} → Searches: ~30 sources{general, devops, security} → Searches: ~32 sources{general, devops} → Searches: ~28 sources (alias: "云" → devops){general, backend} → Searches: ~35 sources (merged: database → backend){general, devops} → Searches: ~28 sources{general, hardware} → Searches: ~23 sources{general, ai} → Searches: ~30 sources (company + product keywords){general} → Searches: ~25 general sources onlyNetwork Adaptation (completely transparent to user):
To disable smart routing and search all available sources (respects network availability):
python3 search_news.py "keyword" --all-sources
The smart routing system recognizes keywords in these 9 core domains (English and Chinese):
Domain Aliases (auto-resolved):
When user asks: "Search for Electron tech news" or "搜索 Electron 技术资讯"
Execute:
# macOS/Linux
cd scripts
python3 search_news.py "Electron" --limit 15
# Windows
cd scripts
python search_news.py "Electron" --limit 15
The script will:
{general, frontend}Read the JSON and present results in Markdown format with translations.
Extract keyword from user query
Run search script
# macOS/Linux (with smart routing)
cd scripts
python3 search_news.py "[keyword]" --limit 15 --max-per-source 5
# To search all sources (disable smart routing)
python3 search_news.py "[keyword]" --limit 15 --all-sources
# Windows
cd scripts
python search_news.py "[keyword]" --limit 15 --max-per-source 5
Parameters:
--limit 15: Fetch up to 15 articles from each source--max-per-source 5: Display max 5 articles per source (ensures diversity)--no-balance: Disable balancing (show all results sorted by heat)--all-sources: Search all 63 sources (disable smart routing)Read JSON output
Translate English content
language: "en", translate title and summary to ChineseEnglish Title / 中文翻译Format results by heat tier
Present as Markdown
Default behavior: The script limits each source to 5 articles to ensure diversity across different news sources.
Why balancing matters:
Customization:
# Show more articles per source
python3 search_news.py "AI" --max-per-source 10
# Disable balancing (show all by heat score only)
python3 search_news.py "AI" --no-balance
How it works:
--limit per source)--max-per-source from each sourcePresent search results in this Markdown format:
# 🔍 "[Keyword]" Technology News
> 📊 Found 12 articles from 7 sources
> 🕐 Search time: 2026-02-18 14:30
---
## 🔥 Hot News (Heat 90+)
### 1. OpenAI Announces GPT-5 Release Date / OpenAI 宣布 GPT-5 发布日期
**Source**: TechCrunch | **Published**: 2h ago | **Heat**: ⭐⭐⭐⭐⭐ (95)
**Summary**: OpenAI CEO Sam Altman revealed that GPT-5 will launch in Q2 2026... / OpenAI CEO Sam Altman 透露 GPT-5 将在 2026 年第二季度推出...
🔗 [Read more](https://techcrunch.com/2026/02/18/openai-gpt5)
*💡 Also on: The Verge, Wired, MIT Tech Review*
---
### 2. GPT-5 性能测试曝光:超越人类专家水平
**Source**: 机器之心 | **Published**: 5h ago | **Heat**: ⭐⭐⭐⭐ (88)
**Summary**: 据可靠消息源透露,GPT-5 在多项基准测试中已超越人类专家水平...
🔗 [Read more](https://jiqizhixin.com/articles/2026-02-18-gpt5)
---
## 📈 Trending News (Heat 60-89)
### 3. [Title] / [Translation]
...
## 📰 Related News (Heat <60)
### 10. [Title]
...
Format Notes:
Sources are configured in references/sources.json.
To enable/disable sources: Edit the JSON file and set "enabled": true/false.
To add new sources: Add entry to sources array with required fields (id, name, url, type, language, category).
The heat score (0-100) combines multiple factors:
Articles appearing on multiple sources rank higher, indicating broader industry interest. Official blog posts from React, Vue, Docker, etc. get priority. Reddit posts with high upvotes get boosted.
No results found:
Script errors:
python3 --version on macOS/Linux, python --version on Windows)Windows-specific notes:
python instead of python3 in commandsSlow performance:
--limit parameter (default is 15)