Agent Skills
› opensquilla/opensquilla
› paper-citation-integrity-gate
paper-citation-integrity-gate
GitHub用于论文写作流程的确定性引用完整性校验。解析引用目标与映射摘要,验证引用数量是否达标及条目有效性,拦截不合规结果并警告未用文献,确保元数据质量。
Trigger Scenarios
meta-paper-write流程中citation_map之后
需要验证引用计数和来源真实性的场景
Install
npx skills add opensquilla/opensquilla --skill paper-citation-integrity-gate -g -y
SKILL.md
Frontmatter
{
"name": "paper-citation-integrity-gate",
"metadata": {
"requires": {
"anyBins": [
"python",
"python3"
]
}
},
"entrypoint": {
"parse": "text",
"stdin": "{{ with.payload }}",
"command": "python {baseDir}\/scripts\/audit.py",
"timeout": 30
},
"provenance": {
"origin": "opensquilla-original",
"license": "Apache-2.0"
},
"description": "Deterministic citation-count and provenance gate for meta-paper-write. Checks the citation_map summary against the numeric paper citation target without trusting an LLM verdict.",
"user-invocable": false,
"disable-model-invocation": true
}
Paper citation integrity gate
Internal deterministic gate used after citation_map. It parses the requested
integer citation target and the map's machine-readable SUMMARY, then blocks
when distinct cited keys are below target or any cited entry is invalid or
weak. Unused bibliography entries are reported as a warning, not a blocker.
Version History
- 95673be Current 2026-08-07 00:58


