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.
npx skills add ZhanlinCui/Agent-Skills-Hunter --skill daily-newsgit clone --depth 1 https://github.com/ZhanlinCui/Agent-Skills-HunterWrote 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.
[](https://agentmods.dev/skills/zhanlincui/agent-skills-hunter/daily-news)<a href="https://agentmods.dev/skills/zhanlincui/agent-skills-hunter/daily-news"><img src="https://agentmods.dev/badge/skills/zhanlincui/agent-skills-hunter/daily-news/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.
<a href="https://agentmods.dev/skills/zhanlincui/agent-skills-hunter/daily-news"><img src="https://agentmods.dev/badge/skills/zhanlincui/agent-skills-hunter/daily-news.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00064 | $0.03953 |
| Opus 5 | $0.00032 | $0.01976 |
| Sonnet 5 | $0.00013 | $0.00791 |
| Haiku 4.5 | $0.00006 | $0.00395 |
Grade A, and why
daily-news 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.
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.
How it starts
The opening of the file, as written. The whole thing — 563 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Daily News
三阶段工作流:获取元数据 → 生成摘要 → 输出日报
工作目录
首次运行询问工作目录路径(如 ~/daily-news),后续记住。
<workspace>/
├── profile.yaml # 用户画像(关于我、关注什么)
├── settings.yaml # 日报设置(语言、格式偏好)
├── methods/ # 信源获取方法
├── data/news.db # SQLite 数据库
└── output/YYYY-MM-DD.md # 日报输出
初始化:
mkdir -p <workspace>/methods <workspace>/data <workspace>/output
cp references/examples/settings.example.yaml <workspace>/settings.yaml
cp references/examples/profile.example.yaml <workspace>/profile.yaml
python3 scripts/db.py init --db <workspace>/data/news.db
初始化完成后:
- 将工作目录写入用户的
~/.claude/CLAUDE.md,追加一行:
这样后续新会话无需再询问目录位置。- daily-news skill 的项目目录在:<workspace> - 询问用户是否需要调整画像。
阶段 0:选择抓取日期范围(新增)
在执行抓取前,询问用户日期范围,从源头减少非必要工作量。
日期范围选项
请选择抓取时间范围:
1. 今天(默认) → published_at >= 今天
2. 昨天 → published_at >= 昨天
3. 最近3天 → published_at >= 3天前
4. 最近7天 → published_at >= 7天前
5. 从上次抓取至今(增量) → published_at >= last_fetched_date
6. 自定义日期范围 → 输入开始日期
增量抓取逻辑
每个信源独立追踪抓取日期:
# methods/twitter-karpathy.yaml
source_id: twitter-karpathy
...
# 自动维护的元数据
last_fetched_date: "2026-01-27" # 上次抓取日期
last_fetched_count: 5 # 上次抓取数量
total_items_fetched: 127 # 累计总数
数据库记录:
source_status表:快速查询上次抓取日期source_sync_log表:详细同步日志
日期筛选执行流程
# 1. 获取上次抓取日期
python3 scripts/db.py source-status --db <db> --source <source_id>
# 2. 执行增量抓取
# 在 method 执行时传入 since 参数
# 3. 记录同步日志
python3 scripts/db.py add-items-incremental \
--db <db> \
--source <source_id> \
--items '<json>' \
--since "2026-01-27"
阶段 1:获取元数据(增量优化)
遍历 <workspace>/methods/ 目录,执行每个 method 文件。
增量抓取检查
对每个 method,执行前检查:
# 1. 读取 method 文件中的 last_fetched_date
python3 -c "
import yaml
with open('methods/<source>.yaml') as f:
config = yaml.safe_load(f)
print(config.get('last_fetched_date', 'never'))
"
# 2. 或查询数据库
python3 scripts/db.py source-status --db <db> --source <source_id>
What ships with it
16 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.
- references/examples/method-with-metadata.example.yaml 838 B
- references/examples/profile.example.yaml 292 B
- references/examples/settings.example.yaml 177 B
- references/methods/browser-smart.md 2.4 KB
- references/methods/rss.py 2.1 KB runs code
- references/methods/webfetch-smart.md 865 B
- references/prompts/report.md 2.2 KB
- references/prompts/summary.md 2.4 KB
- references/schemas/content.schema.yaml 2.2 KB
- references/schemas/method.md 3.2 KB
- references/schemas/profile.schema.yaml 1.4 KB
- references/website-template/build.py 15 KB runs code
- references/website-template/LOGIN_GUIDE.md 3.1 KB
- references/website-template/README.md 1.9 KB
- scripts/db.py 21 KB runs code
- scripts/migrate_v2.sql 1.5 KB
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.
- 12d ago First seen · 563 lines · 64 tokens per session scan A 3e3f7ec7021c
daily-news is a skill published in the GitHub repository ZhanlinCui/Agent-Skills-Hunter (186 stars, last pushed 6mo ago), licensed MIT. It adds 64 tokens to every session and 3,953 once invoked, about $0.0003 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…