Install
$ agentstack add skill-zechang-xiong-chinese-reference-formatter-skill-chinese-reference-formatter-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Chinese Reference Formatter
Overview
Convert one or more Chinese or English reference titles into通用中文论文参考文献条目 and BibTeX. Always verify bibliographic metadata from public sources before formatting; do not invent missing references.
Workflow
- Read
references/chinese-reference-rules.mdbefore formatting. - For each input title, search public metadata sources and compare title, authors, year, venue, DOI/ISBN/URL.
- Prefer DOI, publisher, university repository, official journal, official conference, official standards, or patent pages over aggregators.
- If no DOI or official page exists, require a strong title match plus matching author/year/venue from at least one credible source.
- If sources conflict and no source is clearly authoritative, return an ambiguity note instead of choosing.
- If no clear match exists, output
未找到与“”明确对应的公开文献。 - Normalize confirmed metadata to JSON and run
scripts/format_reference.pyto produce the reference entry plus BibTeX.
Search Sources
Use sources appropriate to the document type:
- DOI and publisher metadata: Crossref, DataCite, official publisher pages.
- Broad scholarly metadata: OpenAlex, Semantic Scholar.
- Computer science papers: DBLP, arXiv, conference/open-review pages.
- Biomedical papers: PubMed/NCBI and official journal pages.
- Chinese references: DOI/publisher pages, university repositories, official journal pages; use CNKI/Wanfang metadata when reachable from web search.
- Standards, patents, books, theses: official standards bodies, patent offices, publishers, library catalogs, university repositories.
Formatting
The formatter accepts a JSON object, a JSON list, or { "items": [...] } through stdin or --input.
python scripts/format_reference.py --start 1 < metadata.json
Common normalized fields:
{
"type": "article",
"title": "Paper title",
"authors": ["Family, Given", "中文作者"],
"journal": "Journal name",
"booktitle": "Proceedings name",
"year": 2026,
"volume": "12",
"issue": "3",
"pages": "1-10",
"doi": "10.xxxx/example",
"url": "https://example.org",
"access_date": "2026-05-07",
"sources": ["https://source.example"]
}
Supported type values include article, inproceedings, book, chapter, thesis, report, standard, patent, newspaper, and online.
Default output for each resolved item:
````text 标准参考文献:[1] ... BibTeX:
...
核验来源:...
````
Preserve the user's input order. Start numbering at [1] unless the user gives a different starting number. Do not append to a project .bib file unless the user explicitly asks.
Conflict Rules
- DOI or official source metadata wins over aggregator metadata.
- Publisher version wins over preprint metadata when formatting the published version.
- Preprint metadata is valid only when the user asks for the preprint or no published version exists.
- If author order, year, venue, or page range conflicts, state the conflict and cite the competing sources.
- Use the actual current date for online access dates unless the source provides a citation access date or the user specifies one.
Common Mistakes
- Do not format from title guesses alone.
- Do not silently translate titles or author names.
- Do not list more than three authors before
等oret al. - Do not force a school-specific thesis requirement unless the user explicitly provides that institution's rules.
- Do not count online resources or standards as ordinary journal/conference papers unless the user's style guide explicitly says to.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Zechang-Xiong
- Source: Zechang-Xiong/chinese-reference-formatter-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.