优质资讯

优质资讯 is a skill for Claude Code, Codex from laborany/laborany. It costs 49 tokens per session (2,181 once invoked), scanned A, original, MIT.

An RSS news aggregator that collects AI and technology articles from 92 selected blogs and outputs Markdown or HTML reports.

In plain words
What is it for?
Use it to collect recent articles, search for a subject, select particular publishers, and generate formatted news reports.
Why use it?
It brings many sources into one place and lets you narrow results by keywords, topics, dates, or source.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to collect recent articles, search for a subject, select particular publishers, and generate formatted news reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/laborany/laborany/rss-news-aggregator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add laborany/laborany --skill rss-news-aggregator
Clone the repo
git clone --depth 1 https://github.com/laborany/laborany

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 优质资讯

README.md
[![agentmods](https://agentmods.dev/badge/skills/laborany/laborany/rss-news-aggregator/github.svg)](https://agentmods.dev/skills/laborany/laborany/rss-news-aggregator)
Your own site
<a href="https://agentmods.dev/skills/laborany/laborany/rss-news-aggregator"><img src="https://agentmods.dev/badge/skills/laborany/laborany/rss-news-aggregator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 优质资讯

Your own site · 80×15
<a href="https://agentmods.dev/skills/laborany/laborany/rss-news-aggregator"><img src="https://agentmods.dev/badge/skills/laborany/laborany/rss-news-aggregator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,181 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.02181
Opus 5 $0.00024 $0.01091
Sonnet 5 $0.00010 $0.00436
Haiku 4.5 $0.00005 $0.00218

Measured 12d ago against content hash f0aa563c4556, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

优质资讯 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/fetch_rss.py, scripts/filter_content.py, scripts/generate_report.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/rss-news-aggregator/SKILL.md · 240 lines

How it starts

The opening of the file, as written. The whole thing — 240 lines — stays where its author put it; the contents beside it link to each section on GitHub.

优质资讯 - RSS 资讯聚合工具

从全球 92 个高质量技术博客采集最新的 AI/科技资讯,支持多维度过滤和智能质量评估。

✨ 功能特性

  • 多源聚合:从 92 个精选 RSS 源(HN Popularity Contest 2025)采集资讯
  • 智能过滤:支持关键词搜索、自然语言查询、主题分类、时间范围、精准来源筛选
  • 质量评估:基于来源权威性、内容质量、时效性自动评分排序(0-100 分)
  • 双格式输出:Markdown(便于编辑)+ HTML(Linear 简约风格 + 卡片布局)
  • 实时更新:直接从 RSS feeds 获取,分钟级时效性

🚀 快速开始

方式 1:获取最近 3 天的所有资讯

python scripts/fetch_rss.py --days 3 --output /tmp/raw.json
python scripts/filter_content.py --input /tmp/raw.json --output /tmp/filtered.json
python scripts/generate_report.py --input /tmp/filtered.json --output-dir docs/news

方式 2:搜索特定主题

# 搜索 "Claude" 相关资讯
python scripts/fetch_rss.py --days 7 --output /tmp/raw.json
python scripts/filter_content.py --input /tmp/raw.json --query "Claude" --output /tmp/filtered.json
python scripts/generate_report.py --input /tmp/filtered.json --output-dir docs/news

方式 3:精准过滤特定来源

# 只获取 Simon Willison 和 Gary Marcus 的文章
python scripts/fetch_rss.py --days 3 --sources "simonwillison.net,garymarcus.substack.com" --output /tmp/raw.json
python scripts/filter_content.py --input /tmp/raw.json --output /tmp/filtered.json
python scripts/generate_report.py --input /tmp/filtered.json --output-dir docs/news

📋 使用流程

步骤 1:获取 RSS 数据

python scripts/fetch_rss.py [选项]

选项

  • --days N:获取最近 N 天的资讯(默认 3 天)
  • --sources "source1,source2":只获取指定来源(可选)
  • --output FILE:输出 JSON 文件路径

步骤 2:过滤和评分

python scripts/filter_content.py [选项]

选项

  • --input FILE:输入 JSON 文件(来自步骤 1)
  • --query "关键词":搜索查询(可选)
  • --sources "source1,source2":过滤特定来源(可选)
  • --min-quality N:最低质量分数 0-100(可选)
  • --output FILE:输出 JSON 文件路径

步骤 3:生成报告

python scripts/generate_report.py [选项]

选项

  • --input FILE:输入 JSON 文件(来自步骤 2)
  • --output-dir DIR:输出目录(默认 docs/news
  • --format md|html|both:输出格式(默认 both)

步骤 4:查看报告

  • Markdowndocs/news/rss-news-YYYY-MM-DD.md
  • HTML:在浏览器中打开 docs/news/rss-news-YYYY-MM-DD.html

📊 数据源分类

Read the full file on GitHub · 240 lines

Files

What ships with it

8 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 240 lines · 49 tokens per session scan A f0aa563c4556

Subscribe to this mod's changes

优质资讯 is a skill published in the GitHub repository laborany/laborany (82 stars, last pushed 3mo ago), licensed MIT. It adds 49 tokens to every session and 2,181 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

bencium-impact-designer

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. Based on Anthropic's Frontend Designer Skill.

bencium/bencium-marketplace · 56 tokens

bencium-controlled-ux-designer

Expert UI/UX design guidance for unique, accessible interfaces. Use for visual decisions, colors, typography, layouts. Always ask before making design decisions. Use this skill when the user asks to build web components, pages, or applications.

bencium/bencium-marketplace · 56 tokens

Agentic UX Design - Relationship-Centric Interfaces

Design AI-first interfaces that build ongoing relationships through memory, trust evolution, and collaborative planning, not just isolated screen interactions.

bencium/bencium-marketplace · 33 tokens

eu-ai-act-reviewer

Review user journeys, public content, and codebases for potentially relevant EU AI Act provisions, with exact official citations, evidence gaps, application dates, and plain-language next actions. Use for EU AI Act issue-spotting, not final legal or compliance decisions.

bencium/bencium-marketplace · 58 tokens

design-audit

Premium UI/UX design audit and refinement skill. Conducts systematic visual audits of existing apps and produces phased, implementation-ready design plans. Use this skill whenever the user asks to audit a UI, improve an app's visual design, make an interface feel more polished or premium, review design consistency…

bencium/bencium-marketplace · 140 tokens

bencium-aeo

Generate AEO-optimized content (Answer Engine Optimization) for AI search visibility - ChatGPT, Claude, Gemini, AI Overviews. Use when optimizing websites for AI citations, creating FAQ schemas, evidence panels, or analyzing content for LLM extraction readiness.

bencium/bencium-marketplace · 57 tokens