News Aggregator Skill Fetch real-time hot news from 44+ sources (including international news + AI curated aggregators + user-defined OPML feeds), generate deep analysis reports in Chinese. --- 🔄 Universal Workflow (3 Steps) Every news request follows the same workflow, regardless of source or combination: Step 1: Fetch Data Step 2: Generate Report Read the output JSON and format every item using the Unified Report Template below. Translate all content to Simplified Chinese . Step 3: Save & Present Save the report to , then display the full content to the user. --- 📰 Unified Report Template…

, '', text).strip()\n return text\n\ndef parse_rss_content(content, source_name, limit=5):\n \"\"\"\n Parses RSS/Atom content string (XML or HTML) and returns items.\n \"\"\"\n try:\n # Use html.parser which is built-in and lenient \n soup = BeautifulSoup(content, 'html.parser')\n \n items = []\n entries = soup.find_all(['item', 'entry'])\n \n for entry in entries:\n # --- Title ---\n title_tag = entry.find('title')\n if not title_tag: continue\n title = clean_text(title_tag.get_text())\n \n # --- Link ---\n link = \"\"\n link_tag = entry.find('link')\n if link_tag:\n if link_tag.has_attr('href'):\n link = link_tag['href']\n elif link_tag.get_text(strip=True):\n link = link_tag.get_text(strip=True)\n if not link:\n link = str(link_tag.next_sibling).strip()\n \n if not link:\n guid = entry.find('guid')\n if guid and guid.get_text(strip=True).startswith('http'):\n link = guid.get_text(strip=True)\n\n # --- Time ---\n pub = entry.find(['pubdate', 'published', 'updated', 'dc:date'])\n time_str = clean_text(pub.get_text()) if pub else \"\"\n \n # --- Summary / Content ---\n content_encoded = entry.find('content:encoded')\n description = entry.find('description')\n summary = entry.find('summary')\n content = entry.find('content')\n \n raw_summary = \"\"\n if content_encoded: raw_summary = content_encoded.get_text()\n elif description: raw_summary = description.get_text()\n elif summary: raw_summary = summary.get_text()\n elif content: raw_summary = content.get_text()\n \n soup_desc = BeautifulSoup(raw_summary, 'html.parser')\n _summary_text = soup_desc.get_text(separator=' ', strip=True)\n clean_summary = (_summary_text[:300] + \"...\") if len(_summary_text) > 300 else _summary_text\n \n # --- Heat ---\n heat = \"\"\n comments = entry.find('slash:comments')\n if comments:\n heat = f\"{comments.get_text(strip=True)} comments\"\n \n items.append({\n \"source\": source_name,\n \"title\": title,\n \"url\": link,\n \"time\": time_str,\n \"heat\": heat,\n \"summary\": clean_summary\n })\n if len(items) >= limit: break\n \n return items\n except Exception as e:\n print(f\"Content Parse failed: {e}\", file=sys.stderr)\n return []\n\ndef fetch_rss_feed(url, source_name, limit=5):\n \"\"\"\n Robust RSS/Atom fetcher using BeautifulSoup.\n Handles various feed formats (RSS 2.0, Atom, etc.)\n \"\"\"\n # User-Agent is critical\n headers = {\n \"User-Agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\",\n \"Accept\": \"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8\"\n }\n\n last_error = None\n for attempt in range(3):\n try:\n response = requests.get(url, headers=headers, timeout=15, verify=False)\n response.raise_for_status()\n response.encoding = response.apparent_encoding or 'utf-8'\n return parse_rss_content(response.content, source_name, limit)\n except Exception as e:\n last_error = e\n if attempt \u003c 2:\n time.sleep(1 + attempt)\n\n print(f\"RSS Fetch failed for {url}: {last_error}\", file=sys.stderr)\n return []\n","content_type":"text/x-python; charset=utf-8","language":"python","size":4255,"content_sha256":"80f7a89cb686d7e63a3eac1c1fc7c1d05be716520c44b9f2fd43d9a4e13829b3"},{"filename":"scripts/test_all_sources.py","content":"\nimport subprocess\nimport os\nimport sys\nimport shutil\nfrom datetime import datetime\n\ndef get_all_sources():\n \"\"\"Retrieve all source keys from fetch_news.py --list-sources\"\"\"\n cmd = [sys.executable, 'scripts/fetch_news.py', '--list-sources']\n result = subprocess.run(cmd, capture_output=True, text=True)\n if result.returncode != 0:\n print(f\"Error listing sources: {result.stderr}\")\n return []\n \n lines = result.stdout.strip().split('\\n')\n sources = []\n start_collecting = False\n for line in lines:\n if line.startswith('---'):\n start_collecting = True\n continue\n if start_collecting and line.strip():\n key = line.split('|')[0].strip()\n if key:\n sources.append(key)\n return sources\n\ndef test_source(source, out_dir):\n \"\"\"Run fetch_news.py for a single source\"\"\"\n print(f\"Testing {source}...\", end=' ', flush=True)\n cmd = [\n sys.executable, \n 'scripts/fetch_news.py', \n '--source', source, \n '--limit', '1', \n '--save',\n '--outdir', out_dir\n ]\n \n start_time = datetime.now()\n try:\n # Timeout after 30s to prevent hanging\n result = subprocess.run(cmd, capture_output=True, text=True, timeout=45)\n duration = (datetime.now() - start_time).total_seconds()\n \n if result.returncode == 0:\n # Check if file was actually created\n # fetch_news prints \"[Saved] Raw Data: ...JSON\"\n if \"Raw Data:\" in result.stderr:\n print(f\"✅ PASS ({duration:.1f}s)\")\n return True, duration, None\n else:\n # It might have returned empty list [] and not saved anything?\n # fetch_news only saves if data is not empty? \n # Let's check logic: \"if args.save or ... md_file = save_report...\"\n # save_report writes file even if data is empty? \n # \"if not data: f.write('No items found.')\" -> Yes.\n # So if it didn't save, something else happened.\n print(f\"⚠️ EMPTY/NO-SAVE ({duration:.1f}s)\")\n return False, duration, \"Script ran but no save message found\"\n else:\n print(f\"❌ FAIL ({duration:.1f}s)\")\n return False, duration, result.stderr.strip()\n \n except subprocess.TimeoutExpired:\n print(\"❌ TIMEOUT (45s)\")\n return False, 45, \"Timeout\"\n except Exception as e:\n print(f\"❌ ERROR: {e}\")\n return False, 0, str(e)\n\ndef main():\n # Setup\n test_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'test_results')\n if os.path.exists(test_dir):\n shutil.rmtree(test_dir)\n os.makedirs(test_dir)\n \n print(f\"Starting systematic source test...\")\n print(f\"Output directory: {test_dir}\\n\")\n \n sources = get_all_sources()\n print(f\"Found {len(sources)} sources to test.\\n\")\n \n results = []\n \n for source in sources:\n success, duration, error = test_source(source, test_dir)\n results.append({\n 'source': source,\n 'success': success,\n 'duration': duration,\n 'error': error\n })\n \n # Generate Summary\n summary_path = os.path.join(test_dir, 'summary.md')\n with open(summary_path, 'w', encoding='utf-8') as f:\n f.write(\"# 🧪 News Source Test Report\\n\")\n f.write(f\"Date: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\\n\\n\")\n \n passed = [r for r in results if r['success']]\n failed = [r for r in results if not r['success']]\n \n f.write(f\"## Summary\\n\")\n f.write(f\"- **Total**: {len(results)}\\n\")\n f.write(f\"- **Passed**: {len(passed)}\\n\")\n f.write(f\"- **Failed**: {len(failed)}\\n\\n\")\n \n f.write(\"## ❌ Failures\\n\")\n if not failed:\n f.write(\"None! 🎉\\n\")\n else:\n for r in failed:\n f.write(f\"- **{r['source']}**: {r['error']}\\n\")\n \n f.write(\"\\n## 📋 Detailed Results\\n\")\n f.write(\"| Source | Status | Duration | Note |\\n\")\n f.write(\"|---|---|---|---|\\n\")\n for r in results:\n status = \"✅ PASS\" if r['success'] else \"❌ FAIL\"\n error_msg = r['error'] if r['error'] else \"\"\n f.write(f\"| {r['source']} | {status} | {r['duration']:.1f}s | {error_msg} |\\n\")\n \n print(f\"\\nTest passed: {len(passed)}/{len(results)}\")\n print(f\"Report saved to: {summary_path}\")\n\nif __name__ == \"__main__\":\n main()\n","content_type":"text/x-python; charset=utf-8","language":"python","size":4590,"content_sha256":"97531ca8c6f2f2ed7972afe9657412c6bd724000d989e0624290add950b8509a"},{"filename":"templates.md","content":"# 🗞️ News Aggregator 指令菜单\n\n请回复 **序号** 执行任务。所有报告均自动保存到 `reports/YYYY-MM-DD/` 并以中文呈现。\n\n---\n\n### 🎯 核心新闻源\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 1 | 🦄 硅谷热点 (Hacker News) | `--source hackernews` |\n| 2 | 🐙 开源趋势 (GitHub Trending) | `--source github` |\n| 3 | 🚀 创投快讯 (36Kr) | `--source 36kr` |\n| 4 | 🐱 产品猎人 (Product Hunt) | `--source producthunt` |\n| 5 | 🤓 极客社区 (V2EX) | `--source v2ex` |\n| 6 | 🐧 腾讯科技 (Tencent News) | `--source tencent` |\n| 7 | 📈 华尔街见闻 (WallStreetCN) | `--source wallstreetcn` |\n| 8 | 🔴 微博热搜 (Weibo) | `--source weibo` |\n| 9 | 🤗 HF 每日论文 (Hugging Face) | `--source huggingface` |\n\n---\n\n### 📧 AI 行业内参\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 10 | 🧪 Latent Space AINews (swyx) | `--source latentspace_ainews` |\n| 11 | ChinAI (Jeffrey Ding) | `--source chinai` |\n| 12 | Memia (Ben Reid) | `--source memia` |\n| 13 | Ben's Bites | `--source bensbites` |\n| 14 | One Useful Thing (Ethan Mollick) | `--source oneusefulthing` |\n| 15 | Interconnects (Nathan Lambert) | `--source interconnects` |\n| 16 | AI to ROI | `--source aitoroi` |\n| 17 | KDnuggets | `--source kdnuggets` |\n| 18 | 🧠 全部 AI 内参聚合 | `--source ai_newsletters --limit 3` |\n\n---\n\n### ✍️ 深度思考 & 播客\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 19 | Paul Graham | `--source paulgraham` |\n| 20 | Wait But Why | `--source waitbutwhy` |\n| 21 | James Clear | `--source jamesclear` |\n| 22 | Farnam Street | `--source farnamstreet` |\n| 23 | Scott Young | `--source scottyoung` |\n| 24 | Dan Koe | `--source dankoe` |\n| 25 | 📚 全部文章聚合 | `--source essays --limit 3` |\n| 26 | Lex Fridman Podcast | `--source lexfridman` |\n| 27 | Latent Space (swyx) | `--source latentspace` |\n| 28 | 80,000 Hours | `--source 80000hours` |\n| 29 | 🎧 全部播客聚合 | `--source podcasts --limit 3` |\n\n---\n\n### ☕️ 每日早报 (Daily Briefings)\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 30 | 🌅 综合早报 (General) | `daily_briefing.py --profile general --no-save` |\n| 31 | 💰 财经早报 (Finance) | `daily_briefing.py --profile finance --no-save` |\n| 32 | 🤖 科技早报 (Tech) | `daily_briefing.py --profile tech --no-save` |\n| 33 | 🍉 吃瓜早报 (Social) | `daily_briefing.py --profile social --no-save` |\n| 34 | 🧠 AI 深度日报 (AI Daily) | `daily_briefing.py --profile ai_daily --no-save` |\n| 35 | 📚 深度阅读清单 | `daily_briefing.py --profile reading_list --no-save` |\n\n---\n\n### 🆕 扩展源 (v2)\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 36 | 🦞 Lobsters 技术深度 | `--source lobsters` |\n| 37 | 👩‍💻 Dev.to 开发者热门 | `--source devto` |\n| 38 | 📜 arXiv AI 最新论文 (cs.AI/CL/LG) | `--source arxiv` |\n| 39 | 📕 少数派 (sspai) | `--source sspai` |\n| 40 | 💻 InfoQ 中文 (软件工程/AI) | `--source infoq_cn --deep` |\n\n---\n\n### 🎯 AI 精选聚合 (v3) —— 二次精选,密度最高\n\n> 这一档是别人的编辑团队替你筛过的 AI 高价值内容,单源信息密度顶 5-10 个原始信源。\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 41 | 🔥 AIHOT 中文 AI 精选(跨源 + 中文编辑稿) | `--source aihot` |\n| 42 | 📨 TLDR AI(英文日刊,每天 5-10 主题摘要) | `--source tldr_ai` |\n| 43 | 📜 Import AI by Jack Clark(英文周刊深度评论) | `--source import_ai --deep` |\n| 44 | 🌐 AI 精选三件套(一次拉全) | `--source aihot,tldr_ai,import_ai` |\n\n---\n\n### 🔧 自定义订阅源\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 45 | 🔧 我的订阅源 (OPML) | `--source user` |\n\n> 💡 **首次使用 OPML(45)**:先 `cp user_sources.opml.example user_sources.opml`,编辑里面的 `\u003coutline xmlUrl=\"...\">` 加自己的源;或从 Feedly/Inoreader 导出 OPML 覆盖即可。\n\n---\n\n### 🌍 国际新闻源\n\n| # | 名称 | 命令 |\n|---|---|---|\n| 46 | 🌍 国际新闻聚合 (最近 24h) | `--source international --limit 20` |\n| 47 | 📰 BBC Top News (最近 24h) | `--source bbc_top` |\n| 48 | 🌐 BBC World (最近 24h) | `--source bbc_world` |\n| 49 | 🈶 BBC 中文 (最近 24h) | `--source bbc_chinese` |\n| 50 | 🗞️ The Guardian World (最近 24h) | `--source guardian_world` |\n| 51 | 🛰️ Al Jazeera (最近 24h) | `--source aljazeera` |\n| 52 | 🇫🇷 France 24 (最近 24h) | `--source france24` |\n| 53 | 🧭 Reuters fallback (Google News RSS, 最近 24h) | `--source reuters` |\n\n> 💡 **输出与时间窗口**:国际新闻源必须按统一报告模板输出;抓取只保留最近 24 小时内容,不用旧闻补位。`reuters` 使用 Google News RSS 的 `site:reuters.com` 检索结果。Reuters 官方公开 RSS 不稳定;如有 Reuters Connect 账号,可把 authenticated RSS 放进 OPML。\n\n---\n\n### 🔀 自由组合\n\n直接指定多个源,用逗号分隔:\n\n```\nhackernews,github,wallstreetcn\n```\n\n例如:*\"帮我看看 HN 和 GitHub 今天有什么热点\"* → Agent 自动执行 `--source hackernews,github`\n\n---\n\n**✨ 请输入序号 (1-53) 或源名组合来执行**\n","content_type":"text/markdown; charset=utf-8","language":"markdown","size":5129,"content_sha256":"3a1d68164c112fd8d80e7b1ed170433facb5f19358f6bfaff77756bc9851dcf2"}],"content_json":{"type":"doc","content":[{"type":"heading","attrs":{"level":1},"content":[{"text":"News Aggregator Skill","type":"text"}]},{"type":"paragraph","content":[{"text":"Fetch real-time hot news from 44+ sources (including international news + AI curated aggregators + user-defined OPML feeds), generate deep analysis reports in Chinese.","type":"text"}]},{"type":"hr","attrs":{"markup":"---"}},{"type":"heading","attrs":{"level":2},"content":[{"text":"🔄 Universal Workflow (3 Steps)","type":"text"}]},{"type":"paragraph","content":[{"text":"Every","type":"text","marks":[{"type":"strong"}]},{"text":" news request follows the same workflow, regardless of source or combination:","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 1: Fetch Data","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"# Single source\npython3 scripts/fetch_news.py --source \u003csource_key> --no-save\n\n# Multiple sources (comma-separated)\npython3 scripts/fetch_news.py --source hackernews,github,wallstreetcn --no-save\n\n# All sources (broad scan)\npython3 scripts/fetch_news.py --source all --limit 15 --deep --no-save\n\n# With keyword filter (auto-expand: \"AI\" → \"AI,LLM,GPT,Claude,Agent,RAG\")\npython3 scripts/fetch_news.py --source hackernews --keyword \"AI,LLM,GPT\" --deep --no-save","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 2: Generate Report","type":"text"}]},{"type":"paragraph","content":[{"text":"Read the output JSON and format ","type":"text"},{"text":"every","type":"text","marks":[{"type":"strong"}]},{"text":" item using the ","type":"text"},{"text":"Unified Report Template","type":"text","marks":[{"type":"strong"}]},{"text":" below. Translate all content to ","type":"text"},{"text":"Simplified Chinese","type":"text","marks":[{"type":"strong"}]},{"text":".","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Step 3: Save & Present","type":"text"}]},{"type":"paragraph","content":[{"text":"Save the report to ","type":"text"},{"text":"reports/YYYY-MM-DD/\u003csource>_report.md","type":"text","marks":[{"type":"code_inline"}]},{"text":", then display the full content to the user.","type":"text"}]},{"type":"hr","attrs":{"markup":"---"}},{"type":"heading","attrs":{"level":2},"content":[{"text":"📰 Unified Report Template","type":"text"}]},{"type":"paragraph","content":[{"text":"All sources use this single template.","type":"text","marks":[{"type":"strong"}]},{"text":" Show/hide optional fields based on data availability.","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"markdown"},"content":[{"text":"#### N. [标题 (中文翻译)](https://original-url.com)\n- **Source**: 源名 | **Time**: 时间 | **Heat**: 🔥 热度值\n- **Links**: [Discussion](hn_url) | [GitHub](gh_url) ← 仅在数据存在时显示\n- **Summary**: 一句话中文摘要。\n- **Deep Dive**: 💡 **Insight**: 深度分析(背景、影响、技术价值)。","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Source-Specific Adaptations","type":"text"}]},{"type":"paragraph","content":[{"text":"Only the ","type":"text"},{"text":"differences","type":"text","marks":[{"type":"strong"}]},{"text":" from the universal template:","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Source","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Adaptation","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Hacker News","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"MUST","type":"text","marks":[{"type":"strong"}]},{"text":" include ","type":"text"},{"text":"[Discussion](hn_url)","type":"text","marks":[{"type":"code_inline"}]},{"text":" link","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"GitHub","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Use ","type":"text"},{"text":"🌟 Stars","type":"text","marks":[{"type":"code_inline"}]},{"text":" for Heat, add ","type":"text"},{"text":"Lang","type":"text","marks":[{"type":"code_inline"}]},{"text":" field, add ","type":"text"},{"text":"#Tags","type":"text","marks":[{"type":"code_inline"}]},{"text":" in Deep Dive","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Hugging Face","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Use ","type":"text"},{"text":"🔥 +N","type":"text","marks":[{"type":"code_inline"}]},{"text":" upvotes for Heat, include ","type":"text"},{"text":"[GitHub](url)","type":"text","marks":[{"type":"code_inline"}]},{"text":" if present, write ","type":"text"},{"text":"深度解读","type":"text","marks":[{"type":"strong"}]},{"text":" (not just translate abstract)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Weibo","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Preserve exact heat text (e.g. \"108万\")","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"AIHOT","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"summary","type":"text","marks":[{"type":"code_inline"}]},{"text":" 已是中文编辑稿,","type":"text"},{"text":"直接引用","type":"text","marks":[{"type":"strong"}]},{"text":"不要再翻译;Heat 字段为空也别造数据;保留 ","type":"text"},{"text":"推荐理由","type":"text","marks":[{"type":"code_inline"}]},{"text":" 风格的一句话点评","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"TLDR AI","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"单条标题往往是多主题混合(","type":"text"},{"text":"Topic A 💻, Topic B ⚡, Topic C ⛪","type":"text","marks":[{"type":"code_inline"}]},{"text":"),","type":"text"},{"text":"拆成 bullet 列出每个主题","type":"text","marks":[{"type":"strong"}]},{"text":";","type":"text"},{"text":"summary","type":"text","marks":[{"type":"code_inline"}]},{"text":" 是 HTML 段落,需要拆出每个主题对应的一两句概述","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Import AI","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"周刊长文,标题形如 ","type":"text"},{"text":"Import AI 458: 主题1; 主题2; 主题3","type":"text","marks":[{"type":"code_inline"}]},{"text":"。","type":"text"},{"text":"建议默认配 ","type":"text","marks":[{"type":"strong"}]},{"text":"--deep","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":",否则 RSS summary 只是开头几句;Deep Dive 直接提炼 Jack Clark 的核心观点而非平铺事实","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"International News","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"MUST","type":"text","marks":[{"type":"strong"}]},{"text":" use the Unified Report Template for every item;只使用最近 24h RSS 条目,不用更早新闻 Smart Fill;英文标题与摘要翻译成简体中文,保留原始媒体名与链接;同一事件多家媒体重复时可合并观点但不能合并链接","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Reuters","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"reuters","type":"text","marks":[{"type":"code_inline"}]},{"text":" 使用 Google News RSS 的 ","type":"text"},{"text":"site:reuters.com","type":"text","marks":[{"type":"code_inline"}]},{"text":" fallback;报告里保留 ","type":"text"},{"text":"Reuters (Google News fallback)","type":"text","marks":[{"type":"code_inline"}]},{"text":" source,不要写成官方公开 RSS","type":"text"}]}]}]}]},{"type":"hr","attrs":{"markup":"---"}},{"type":"heading","attrs":{"level":2},"content":[{"text":"🛠️ Tools","type":"text"}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"fetch_news.py","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Arg","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Description","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Default","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"--source","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Source key(s), comma-separated. See table below.","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"all","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"--limit","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Max items per source","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"15","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"--keyword","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Comma-separated keyword filter","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"None","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"--deep","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Download article text for richer analysis","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Off","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"--save","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Force save to reports dir","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Auto for single source","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"--outdir","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Custom output directory","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"reports/YYYY-MM-DD/","type":"text","marks":[{"type":"code_inline"}]}]}]}]}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"Available Sources (44+ with user OPML)","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Category","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Key","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Name","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Global News","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"hackernews","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Hacker News","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"36kr","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"36氪","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"wallstreetcn","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"华尔街见闻","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"tencent","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"腾讯新闻","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"weibo","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"微博热搜","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"v2ex","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"V2EX","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"producthunt","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Product Hunt","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"github","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"GitHub Trending","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Tech Community","type":"text","marks":[{"type":"strong"}]},{"text":" (v2)","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"lobsters","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Lobsters","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"devto","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Dev.to","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"AI/Tech","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"huggingface","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"HF Daily Papers","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"arxiv","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"arXiv (cs.AI/cs.CL/cs.LG, v2)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"ai_newsletters","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"All AI Newsletters (aggregate)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"bensbites","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Ben's Bites","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"interconnects","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Interconnects (Nathan Lambert)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"oneusefulthing","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"One Useful Thing (Ethan Mollick)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"chinai","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"ChinAI (Jeffrey Ding)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"memia","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Memia","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"aitoroi","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"AI to ROI","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"kdnuggets","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"KDnuggets","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Chinese","type":"text","marks":[{"type":"strong"}]},{"text":" (v2)","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"sspai","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"少数派","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"infoq_cn","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"InfoQ 中文站(RSS 只给标题,","type":"text"},{"text":"推荐配 ","type":"text","marks":[{"type":"strong"}]},{"text":"--deep","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" 拿正文)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"AI Curated","type":"text","marks":[{"type":"strong"}]},{"text":" (v3)","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"aihot","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"AIHOT 中文 AI 精选(跨源 + 中文编辑稿)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"tldr_ai","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"TLDR AI 英文日刊","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"import_ai","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Import AI by Jack Clark 周刊(","type":"text"},{"text":"推荐 ","type":"text","marks":[{"type":"strong"}]},{"text":"--deep","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":")","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"International News","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"international","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"最近 24h 国际新闻聚合(BBC / Guardian / Al Jazeera / France 24 / Reuters fallback)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"bbc_top","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"BBC Top News (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"bbc_world","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"BBC World (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"bbc_chinese","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"BBC 中文 (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"guardian_world","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"The Guardian World (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"aljazeera","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Al Jazeera (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"france24","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"France 24 (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"reuters","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Reuters via Google News RSS fallback (24h)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Podcasts","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"podcasts","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"All Podcasts (aggregate)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"lexfridman","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Lex Fridman","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"80000hours","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"80,000 Hours","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"latentspace","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Latent Space","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Essays","type":"text","marks":[{"type":"strong"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"essays","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"All Essays (aggregate)","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"paulgraham","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Paul Graham","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"waitbutwhy","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Wait But Why","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"jamesclear","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"James Clear","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"farnamstreet","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Farnam Street","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"scottyoung","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Scott Young","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph"}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"dankoe","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Dan Koe","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Custom","type":"text","marks":[{"type":"strong"}]},{"text":" (v2)","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"user","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Your OPML feeds (see below)","type":"text"}]}]}]}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"自定义订阅源 (User OPML)","type":"text"}]},{"type":"paragraph","content":[{"text":"把你常看的 RSS/Atom 源写进 OPML,","type":"text"},{"text":"--source user","type":"text","marks":[{"type":"code_inline"}]},{"text":" 即可统一抓取。","type":"text"}]},{"type":"paragraph","content":[{"text":"1. 放置 OPML 文件","type":"text","marks":[{"type":"strong"}]},{"text":"(按优先级查找):","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"~/.config/news-aggregator/user_sources.opml","type":"text","marks":[{"type":"code_inline"}]},{"text":"(推荐,跨 skill 复用)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"\u003cskill_root>/user_sources.opml","type":"text","marks":[{"type":"code_inline"}]},{"text":"(本仓库内)","type":"text"}]}]}]},{"type":"paragraph","content":[{"text":"2. 文件格式","type":"text","marks":[{"type":"strong"}]},{"text":":标准 OPML 2.0,可直接从 Feedly / Inoreader / NetNewsWire 导出。参考 ","type":"text"},{"text":"user_sources.opml.example","type":"text","marks":[{"type":"code_inline"}]},{"text":":","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"xml"},"content":[{"text":"\u003coutline type=\"rss\" text=\"Simon Willison\" title=\"Simon Willison\"\n xmlUrl=\"https://simonwillison.net/atom/everything/\" />","type":"text"}]},{"type":"paragraph","content":[{"text":"只 ","type":"text"},{"text":"xmlUrl","type":"text","marks":[{"type":"code_inline"}]},{"text":" 必填,其它可选。","type":"text"}]},{"type":"paragraph","content":[{"text":"3. 运行","type":"text","marks":[{"type":"strong"}]},{"text":":","type":"text"},{"text":"python3 scripts/fetch_news.py --source user --limit 15","type":"text","marks":[{"type":"code_inline"}]}]},{"type":"heading","attrs":{"level":3},"content":[{"text":"daily_briefing.py (Morning Routines)","type":"text"}]},{"type":"paragraph","content":[{"text":"Pre-configured multi-source profiles:","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"python3 scripts/daily_briefing.py --profile \u003cprofile>","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Profile","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Sources","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Instruction File","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"general","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"HN, 36Kr, GitHub, Weibo, PH, WallStreetCN","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"instructions/briefing_general.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"finance","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"WallStreetCN, 36Kr, Tencent","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"instructions/briefing_finance.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"tech","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"GitHub, HN, Product Hunt","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"instructions/briefing_tech.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"social","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Weibo, V2EX, Tencent","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"instructions/briefing_social.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"ai_daily","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"HF Papers, AI Newsletters","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"instructions/briefing_ai_daily.md","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"reading_list","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Essays, Podcasts","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"(Use universal template)","type":"text"}]}]}]}]},{"type":"paragraph","content":[{"text":"Workflow","type":"text","marks":[{"type":"strong"}]},{"text":": Execute script → Read corresponding instruction file → Generate report following both the instruction file AND the universal template.","type":"text"}]},{"type":"hr","attrs":{"markup":"---"}},{"type":"heading","attrs":{"level":2},"content":[{"text":"⚠️ Rules (Strict)","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Language","type":"text","marks":[{"type":"strong"}]},{"text":": ALL output in ","type":"text"},{"text":"Simplified Chinese (简体中文)","type":"text","marks":[{"type":"strong"}]},{"text":". Keep well-known English proper nouns (ChatGPT, Python, etc.).","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Time","type":"text","marks":[{"type":"strong"}]},{"text":": ","type":"text"},{"text":"MANDATORY","type":"text","marks":[{"type":"strong"}]},{"text":" field. Never skip. If missing in JSON, mark as \"Unknown Time\". Preserve \"Real-time\" / \"Today\" / \"Hot\" as-is.","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Anti-Hallucination","type":"text","marks":[{"type":"strong"}]},{"text":": Only use data from the JSON. Never invent news items. Use simple SVO sentences. Do not fabricate causal relationships.","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Smart Keyword Expansion","type":"text","marks":[{"type":"strong"}]},{"text":": When user says \"AI\" → auto-expand to ","type":"text"},{"text":"\"AI,LLM,GPT,Claude,Agent,RAG,DeepSeek\"","type":"text","marks":[{"type":"code_inline"}]},{"text":". Similar expansions for other domains.","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Smart Fill","type":"text","marks":[{"type":"strong"}]},{"text":": If results \u003c 5 items in a time window, supplement with high-value items from wider range. Mark supplementary items with ⚠️. ","type":"text"},{"text":"Exception","type":"text","marks":[{"type":"strong"}]},{"text":": International News sources are a hard 24h window; do not supplement with older items.","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Save","type":"text","marks":[{"type":"strong"}]},{"text":": Always save report to ","type":"text"},{"text":"reports/YYYY-MM-DD/","type":"text","marks":[{"type":"code_inline"}]},{"text":" before displaying.","type":"text"}]}]}]},{"type":"hr","attrs":{"markup":"---"}},{"type":"heading","attrs":{"level":2},"content":[{"text":"📋 Interactive Menu","type":"text"}]},{"type":"paragraph","content":[{"text":"When the user says ","type":"text"},{"text":"\"如意如意\"","type":"text","marks":[{"type":"strong"}]},{"text":" or asks for \"menu/help\":","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Read ","type":"text"},{"text":"templates.md","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Display the menu","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Execute the user's selection using the ","type":"text"},{"text":"Universal Workflow","type":"text","marks":[{"type":"strong"}]},{"text":" above","type":"text"}]}]}]},{"type":"hr","attrs":{"markup":"---"}},{"type":"heading","attrs":{"level":2},"content":[{"text":"Requirements","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Python 3.8+, ","type":"text"},{"text":"pip install -r requirements.txt","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Playwright (for HF Papers & Ben's Bites): ","type":"text"},{"text":"playwright install chromium","type":"text","marks":[{"type":"code_inline"}]}]}]}]},{"type":"hr","attrs":{"markup":"---"}}]},"metadata":{"date":"2026-06-05","name":"news-aggregator-skill","author":"@skillopedia","source":{"stars":1117,"repo_name":"news-aggregator-skill","origin_url":"https://github.com/cclank/news-aggregator-skill/blob/HEAD/SKILL.md","repo_owner":"cclank","body_sha256":"32bb615143786e39ed6de3972b7254d88ff8ddd6ea39b0121d83a65af2a4a7a5","cluster_key":"dfebca473493d99886d67f3164e9008e0ae52c7a822746a0f6c2370c93074333","clean_bundle":{"format":"clean-skill-bundle-v1","source":"cclank/news-aggregator-skill/SKILL.md","attachments":[{"id":"a6702a2b-a15c-5efc-92fc-b7fa64f35d91","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/a6702a2b-a15c-5efc-92fc-b7fa64f35d91/attachment.md","path":".agent/workflows/daily_briefing.md","size":715,"sha256":"d28b1376120ebf5e214f10255d4751351a567adfac1b0c9bb16670c129b5f752","contentType":"text/markdown; charset=utf-8"},{"id":"0e64c8bf-4af7-5ada-8381-6fb44de82198","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/0e64c8bf-4af7-5ada-8381-6fb44de82198/attachment","path":".gitignore","size":720,"sha256":"383e5fdc9aee2735da0e3472b2908f319863373dfece20283abb6c3fb75377e1","contentType":"text/plain; charset=utf-8"},{"id":"4e8b3a55-b34c-540b-b2c9-e5654b54104b","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/4e8b3a55-b34c-540b-b2c9-e5654b54104b/attachment.md","path":"MISTAKES.md","size":6319,"sha256":"76c8fb35661974ae4af5119399a9e6fee43271094b987f5bbe778b16e37c51ee","contentType":"text/markdown; charset=utf-8"},{"id":"3da886a0-7712-5dfd-828e-cfb22722e0f0","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/3da886a0-7712-5dfd-828e-cfb22722e0f0/attachment.md","path":"README.md","size":7076,"sha256":"017e6eadf47ab6b22138132306ccaecd53a4943736b5af92c6c33d4a95a5cb49","contentType":"text/markdown; charset=utf-8"},{"id":"31e5e0da-e698-5c89-b325-ba9a3b1e3cd1","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/31e5e0da-e698-5c89-b325-ba9a3b1e3cd1/attachment.md","path":"implementation_plan.md","size":1824,"sha256":"6315c05536d733d15f8ef6dedbc06e87308fb77abe75150e567a05090c0fb5be","contentType":"text/markdown; charset=utf-8"},{"id":"a66140c9-4515-5012-a2ed-4feba71deef4","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/a66140c9-4515-5012-a2ed-4feba71deef4/attachment.md","path":"instructions/briefing_ai_daily.md","size":1633,"sha256":"f5b282dafc627b9532b2a9e5ae8ff7fb1b7ff6f0d2088674e04a526241473517","contentType":"text/markdown; charset=utf-8"},{"id":"34d7c9e0-f3d9-5ade-b76c-728504721039","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/34d7c9e0-f3d9-5ade-b76c-728504721039/attachment.md","path":"instructions/briefing_finance.md","size":2109,"sha256":"e399fad155f46b4617888889fdfe444bcb5025b13888355a545cc7c71f78f39c","contentType":"text/markdown; charset=utf-8"},{"id":"466ddddc-5ef4-53ff-9432-659ce0e3e918","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/466ddddc-5ef4-53ff-9432-659ce0e3e918/attachment.md","path":"instructions/briefing_general.md","size":3092,"sha256":"0a105ecb4a573bef9735ddb1ab434b40c580e3d648e51b12ffc9329f7dcedb60","contentType":"text/markdown; charset=utf-8"},{"id":"0770f3be-06f5-51aa-ad2b-a214db587fc8","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/0770f3be-06f5-51aa-ad2b-a214db587fc8/attachment.md","path":"instructions/briefing_github.md","size":1165,"sha256":"0eb26afb7687d2b403689fdaa72eb0149740d5cef5684a8353f6992a98abfc4a","contentType":"text/markdown; charset=utf-8"},{"id":"4c4c2d8b-2723-5bc2-a99f-94e10907ccf8","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/4c4c2d8b-2723-5bc2-a99f-94e10907ccf8/attachment.md","path":"instructions/briefing_social.md","size":1554,"sha256":"b338470298839e40819f7ae2bfae37a7ff956d910eb47ea292ceb39d79d1c798","contentType":"text/markdown; charset=utf-8"},{"id":"e771133f-57dc-5018-8cff-b9cfc0b707fa","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/e771133f-57dc-5018-8cff-b9cfc0b707fa/attachment.md","path":"instructions/briefing_tech.md","size":1491,"sha256":"2d8d118e6346b9490899ab0909faed4fa6eb7766980a1d973b8ce042cbeda5b8","contentType":"text/markdown; charset=utf-8"},{"id":"3666a8c6-48dc-561b-a388-43e350fef561","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/3666a8c6-48dc-561b-a388-43e350fef561/attachment.txt","path":"requirements.txt","size":24,"sha256":"2c081c1999175987aca18adf80b955273f88cc96b4b188ace8b1991aaa971ca7","contentType":"text/plain; charset=utf-8"},{"id":"68089907-8f4e-5509-8dd3-73561e0b2dcd","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/68089907-8f4e-5509-8dd3-73561e0b2dcd/attachment.py","path":"scripts/daily_briefing.py","size":7988,"sha256":"eb1fcac399aae4daadb010765f0526e1f2fb8d96b7a08a65d6268a03b091c659","contentType":"text/x-python; charset=utf-8"},{"id":"b4d825df-21b5-5dea-8022-cc63d371928d","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/b4d825df-21b5-5dea-8022-cc63d371928d/attachment.py","path":"scripts/debug_hf_detail.py","size":1962,"sha256":"d31190d5b2bf276688df3b9e2d5d48f6ef8ea4fe21611dc2065d0275b34518ee","contentType":"text/x-python; charset=utf-8"},{"id":"75dd40b3-23e0-5c13-a566-f72c61cf9dd9","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/75dd40b3-23e0-5c13-a566-f72c61cf9dd9/attachment.py","path":"scripts/fetch_bensbites.py","size":4540,"sha256":"263662ff2f3be1cd21278a6605286a5002442077f9fe3c54aa4da70ddc91fc7a","contentType":"text/x-python; charset=utf-8"},{"id":"17e74b37-a2c2-5d4f-93df-b75c0532fab3","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/17e74b37-a2c2-5d4f-93df-b75c0532fab3/attachment.py","path":"scripts/fetch_generic_playwright.py","size":2613,"sha256":"718d3cf04335aa7654ff95ddfa5ef26876b2e6ee3337dafd6a9f1365090bfe7b","contentType":"text/x-python; charset=utf-8"},{"id":"736ecd1c-3f8f-51d8-a7a6-6985d0ababa8","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/736ecd1c-3f8f-51d8-a7a6-6985d0ababa8/attachment.py","path":"scripts/fetch_hf_papers_playwright.py","size":4224,"sha256":"3e137369c3ab9f26843a12fb4c5f0b25280b26105ae186ec3f9110b009e749ef","contentType":"text/x-python; charset=utf-8"},{"id":"63019648-b446-5244-b30b-0d3967c7a406","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/63019648-b446-5244-b30b-0d3967c7a406/attachment.py","path":"scripts/fetch_news.py","size":41833,"sha256":"7be3590fa4bffef334ce2ca0d4fb97a9ce921fed503bf8ad29249416f95738b4","contentType":"text/x-python; charset=utf-8"},{"id":"1515eb32-f3f3-583e-b99b-7853b6685376","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/1515eb32-f3f3-583e-b99b-7853b6685376/attachment.py","path":"scripts/fetch_user_feeds.py","size":3473,"sha256":"e18e2f73dc3935a61f0254ce590b874338b0318292c48ee2bb3c9f9dffc63452","contentType":"text/x-python; charset=utf-8"},{"id":"63e6e527-6a4d-5ca2-9886-29988ed7761a","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/63e6e527-6a4d-5ca2-9886-29988ed7761a/attachment.py","path":"scripts/process_general_json.py","size":1960,"sha256":"c32b98463a254133132458616bff8ce92b3990c372c90a329fde7ad826383462","contentType":"text/x-python; charset=utf-8"},{"id":"99abcf6c-574c-5e0e-8d4c-ffac46e29654","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/99abcf6c-574c-5e0e-8d4c-ffac46e29654/attachment.py","path":"scripts/rss_parser.py","size":4255,"sha256":"80f7a89cb686d7e63a3eac1c1fc7c1d05be716520c44b9f2fd43d9a4e13829b3","contentType":"text/x-python; charset=utf-8"},{"id":"413c2b26-a330-5219-ba3e-22c50dac5ec6","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/413c2b26-a330-5219-ba3e-22c50dac5ec6/attachment.py","path":"scripts/test_all_sources.py","size":4590,"sha256":"97531ca8c6f2f2ed7972afe9657412c6bd724000d989e0624290add950b8509a","contentType":"text/x-python; charset=utf-8"},{"id":"8fb809bb-185a-59fd-9d33-2df33b4ce4aa","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/8fb809bb-185a-59fd-9d33-2df33b4ce4aa/attachment.md","path":"templates.md","size":5129,"sha256":"3a1d68164c112fd8d80e7b1ed170433facb5f19358f6bfaff77756bc9851dcf2","contentType":"text/markdown; charset=utf-8"},{"id":"dafb0727-9bec-5370-a176-8e20889fec60","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/dafb0727-9bec-5370-a176-8e20889fec60/attachment.example","path":"user_sources.opml.example","size":2147,"sha256":"6ae0bdd357ba79796ffbe070d734d2b4a854e7474059d7a3a0dedc4c574e4cf5","contentType":"text/plain; charset=utf-8"}],"bundle_sha256":"cb73aaa3251c63897c9b83a968ed74455275fd9075c7d3c1ebbad0cb75ac9f35","attachment_count":24,"text_attachments":22,"attachment_storage":"skillopedia-attachments-v1","binary_attachments":2,"excluded_attachments":[]},"cluster_size":1,"skill_md_path":"SKILL.md","import_metadata":{"date":"2026-06-05","author":"@skillopedia","version":"v1","category":"integrations-apis","category_label":"Integrations"},"exact_dupes_collapsed_into_this":0},"version":"v1","category":"integrations-apis","import_tag":"clean-skills-v1","description":"Comprehensive news aggregator that fetches, filters, and deeply analyzes real-time content from 44+ sources including Hacker News, Lobsters, Dev.to, GitHub, arXiv, Hugging Face Papers, AIHOT, TLDR AI, Import AI, BBC, The Guardian, Al Jazeera, France 24, Reuters fallback, AI Newsletters, WallStreetCN, Weibo, 少数派, InfoQ 中文, Podcasts, and user-defined OPML feeds. Use when user requests 'daily scans', 'tech news', 'finance updates', 'AI briefings', 'international news', 'deep analysis', or says '如意如意' to open the interactive menu."}},"renderedAt":1782981621386}

News Aggregator Skill Fetch real-time hot news from 44+ sources (including international news + AI curated aggregators + user-defined OPML feeds), generate deep analysis reports in Chinese. --- 🔄 Universal Workflow (3 Steps) Every news request follows the same workflow, regardless of source or combination: Step 1: Fetch Data Step 2: Generate Report Read the output JSON and format every item using the Unified Report Template below. Translate all content to Simplified Chinese . Step 3: Save & Present Save the report to , then display the full content to the user. --- 📰 Unified Report Template…