Agent Skills
› opensquilla/opensquilla
› paper-citation-integrity-gate
paper-citation-integrity-gate
GitHub用于在论文写作流程中验证引用完整性的确定性门禁,通过解析引用映射摘要与目标数量进行比对,确保引用有效且无缺失。
Trigger Scenarios
需要验证论文引用计数是否达标时
检查引用条目有效性及弱引用问题时
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


