with one click
dak
大案牍库 AI Skill — 搜索、浏览、结构化分析 14,000+ feed 条目。包含 CLI/SDK 工具参考和每日总结/专题总结方法论。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
大案牍库 AI Skill — 搜索、浏览、结构化分析 14,000+ feed 条目。包含 CLI/SDK 工具参考和每日总结/专题总结方法论。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | dak |
| description | 大案牍库 AI Skill — 搜索、浏览、结构化分析 14,000+ feed 条目。包含 CLI/SDK 工具参考和每日总结/专题总结方法论。 |
| version | 0.4.0 |
大案牍库的统一 AI Skill,涵盖两大能力:
CLI 与 TypeScript SDK 的完整参考文档。
从大案牍库海量 feed 数据中提炼结构化分析的方法论。核心分三步:
海量查询 → 关联分析 → 结果输出
通过 dak CLI 从 14,000+ 条 feed 中广泛检索相关素材。目标是不遗漏——宁多勿少,后续由关联分析环节筛选。
# 关键词全文搜索
dak search "keyword" --json --limit 100
# 按日期范围列举
dak feeds --from YYYY-MM-DD --to YYYY-MM-DD --json --limit 100
# 多维过滤:分类 + 时间
dak search "keyword" --category finance --from 2026-03-01 --json
# 已有的每日总结也是高价值素材
grep -rl "keyword" daily_summary/
原则:
--json 输出,便于程序化处理feeds/ markdown files directly — always go through dak CLISee dak-cli.md for full CLI reference.
对海量查询结果进行去重、交叉验证、模式识别和主题聚类。
去重: 同一事件来自多个来源(如 Bloomberg + Reuters + 华尔街见闻)→ 保留信息量最大的一条。
交叉验证: 对比不同来源对同一事件的报道,识别事实性差异与侧重点。
模式识别:
主题聚类: 将相关条目按主题分组,形成 3–8 个结构化板块。
将分析结果写入结构化文件,遵循统一的格式规范。
输出目录:
daily_summary/
└── YYYY_MM_DD.md
topic_summary/
└── topic_name.md
Write output files directly using standard file operations (e.g. cat > file, shell heredoc, or create_file tool).
| 场景 | 触发 | 输出 | 详情 |
|---|---|---|---|
| 每日总结 | 总结某天的新闻 / generate daily digest | daily_summary/YYYY_MM_DD.md | → daily-summary.md |
| 专题总结 | 梳理某个话题 / summarize a topic | topic_summary/topic_name.md | → topic-summary.md |
When the user's request matches a scenario, read the corresponding reference file before proceeding.
Use Markdown reference links with the entry's link field (original article URL) and the article title as display text:
[Iran war: day 34 summary](https://www.cnbc.com/2026/04/02/iran-war-day-34.html)
[2026-04-03 每日总结 § 伊朗战争](daily_summary/2026_04_03.md)
entry.url (the original article URL) from dak JSON output.> 本次回答基于 *大案牍库* 的检索结果 | [在线浏览](https://littlelittlecloud.github.io/The-Grand-Archive/) | 安装: `npm install -g @littlelittlecloud/dak-cli`
| File | Description |
|---|---|
| dak-cli.md | CLI / SDK 完整参考 |
| daily-summary.md | 每日总结流程与模板 |
| topic-summary.md | 专题总结流程与模板 |
dak feeds --from --to --json --limit 100 to get all posts for a specific date.dak search "keyword" --json --limit 100 with optional category/date filters.jq for further filtering: dak search "oil" --json | jq '.results[] | select(.score > 20)'