trace-citations
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseTrace Citations
追踪引用关系
Map the citation graph around one focal paper into useful buckets.
Use this when the human wants lineage, influence, and strong versus weak citation edges around a paper.
将某篇核心论文周边的引用图谱划分为实用类别。当用户想要了解某篇论文的传承脉络、影响力以及强/弱引用关联时,可使用此工具。
Arguments
参数说明
- The positional argument is the focal paper query. Quote multi-word titles.
- controls whether to expand a second hop from the strongest first-hop edges.
--depth 1|2 - and
--max-references <n>cap the first-hop fetch sizes.--max-citations <n> - caps how many first-hop anchors get expanded at depth two.
--second-hop-limit <n>
- 位置参数为核心论文的查询内容。多词标题需加引号。
- 控制是否从最强的第一跳关联扩展至第二跳。
--depth 1|2 - 和
--max-references <n>限制第一跳的获取数量上限。--max-citations <n> - 限制在深度为2时,有多少个第一跳锚点会被扩展。
--second-hop-limit <n>
Workflow
工作流程
- Run .
python scripts/run.py ... - Read for strong references behind the focal paper.
result.foundations - Read for strong citing descendants.
result.direct_descendants - Read for medium-confidence connectors with rich context or intent signal.
result.bridge_nodes - Read for low-signal edges that are probably less useful.
result.weak_edges - If , read
depth=2only after the first-hop picture looks sensible.result.second_hop
- 运行 。
python scripts/run.py ... - 查看 获取核心论文背后的强关联参考文献。
result.foundations - 查看 获取强关联的后续引用文献。
result.direct_descendants - 查看 获取具有丰富上下文或意图信号的中等置信度关联文献。
result.bridge_nodes - 查看 获取低信号关联的文献,这类文献可能实用性较低。
result.weak_edges - 如果设置了 ,需在第一跳图谱内容合理的前提下,再查看
depth=2。result.second_hop
Output
输出结果
- The script prints the unified JSON envelope described in .
output_contract.md - The underlying workflow result is .
CitationTraceResult.to_dict() - and
result.reference_count_examinedshow the first-hop search breadth.result.citation_count_examined
- 脚本会输出 中描述的统一JSON包。
output_contract.md - 底层工作流程的结果为 。
CitationTraceResult.to_dict() - 和
result.reference_count_examined显示第一跳搜索的广度。result.citation_count_examined
When To Escalate
需升级处理的情况
- The focal paper resolves incorrectly.
- The API returns very sparse context and intent data, making edge interpretation weak.
- The first-hop graph is too noisy and needs a tighter focal paper choice before going to depth two.
- 核心论文解析错误。
- API返回的上下文和意图数据极为稀疏,导致关联关系的解读可信度低。
- 第一跳图谱过于杂乱,需要先选定更精准的核心论文,再进行第二跳扩展。