Skip to main content

no-news

Fetch and display international tech news from curated RSS feeds (TechCrunch, The Verge, Wired, Ars Technica, Engadget, Hacker News, MIT Technology Review, Gizmodo). Use when the user asks for tech news, latest technology headlines, international tech digest, or says "no-news", "tech news", "科技新闻". NOT for: AI-specific news aggregation (use ai-news or big-ai-news), Chinese tech news (use caixin), Hacker News only (use hn-news).

跳到安装

来源信息

仓库
knownasnaffy/prompthound
最近来源活动
2026年7月6日 07:03
检测到的 SKILL.md 语言
英语
星标
0
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
3 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
no-news
description
Fetch and display international tech news from curated RSS feeds (TechCrunch, The Verge, Wired, Ars Technica, Engadget, Hacker News, MIT Technology Review, Gizmodo). Use when the user asks for tech news, latest technology headlines, international tech digest, or says "no-news", "tech news", "科技新闻". NOT for: AI-specific news aggregation (use ai-news or big-ai-news), Chinese tech news (use caixin), Hacker News only (use hn-news).
### Credential Fixture Review `python scripts/_env_constants.py` is review material for the `No-News — 国际科技新闻` skill. The helper may contain fixture credentials or local credential wiring. Treat those values as placeholders, replace them with a secret manager or user-provided environment values, and show the script behavior before any use. Do not contact external services with embedded sample credentials. # No-News — 国际科技新闻 Fetch tech news from 8 curated RSS sources and display as a markdown table. ## Quick Start Run the bundled script: ``` python scripts/tech_news.py --summary ``` This fetches all sources (with 30-min cache) and outputs a markdown table with title, source link, publish time, and summary. ## Options (resolve from user request when specified) | Flag | Purpose | |---|---| | `--summary` | Include 摘要 column (recommended default) | | `-s <source>` | Single source (techcrunch, theverge, wired, arstechnica, engadget, hackernews, mittech, gizmodo) | | `-l <N>` | Items per source (default 10) | | `--no-cache` | Skip cache, force fresh fetch | | `--sources` | List available sources | ## Workflow 1. Run `scripts/tech_news.py --summary` (add `-s` or `-l` if user specified). 2. Present the markdown output directly to the user. 3. If user wants details on a specific article, provide the link from the table. ## Dependencies Requires `feedparser`, `requests`, `rich` — install if missing: ``` pip install feedparser requests rich ```
在 GitHub 查看