Features β’ Quick Start β’ π Advanced Usage β’ πΊοΈ Roadmap β’ π€ Contributing
OneCite is a command-line tool and Python library for citation management. It accepts DOIs, paper titles, arXiv IDs, and mixed inputs, and outputs formatted bibliographic entries.
Researchers frequently accumulate reference lists in ad-hoc formatsβDOIs copied from browser tabs, arXiv IDs from paper PDFs, titles typed by hand, and BibTeX fragments from various sources. Cleaning these into consistent BibTeX output is tedious and error-prone. OneCite parses raw reference text and attempts metadata lookup against configured sources such as CrossRef, PubMed, arXiv, and Semantic Scholar. The result is a reproducible processing layer that reports unresolved entries and produces auditable BibTeX where metadata can be found.
| Feature | Description |
|---|---|
| Fuzzy Matching | Attempt to match incomplete references against configured academic metadata sources. |
| Multiple Formats | Input .txt/.bib β Output BibTeX. |
| 4-stage Pipeline | A 4-stage process (clean β query β validate β format) to produce consistent output. |
| Field Completion | Fill available fields returned by metadata sources, such as journal, volume, pages, authors, and abstract. |
| π 7+ Citation Types | Handles journal articles, conference papers, books, software, datasets, theses, and preprints. |
| Multi-Source Lookup | Uses source-specific routes for CrossRef, arXiv, PubMed, Semantic Scholar, Google Books, and others. |
| Many Identifier Types | Accepts DOI, PMID, arXiv ID, ISBN, GitHub URL, Zenodo DOI, or plain text queries. |
| ποΈ Interactive Mode | Manually select the correct entry when multiple potential matches are found. |
| Custom Templates | YAML-based presets that provide a fallback BibTeX entry type when auto-detection is inconclusive. |
Install and try OneCite in a few steps.
# Recommended: Install from PyPI
pip install oneciteCreate a file named references.txt with your mixed-format references:
# references.txt
# Add blank lines between entries to avoid misidentification
10.1038/nature14539
Attention is all you need, Vaswani et al., NIPS 2017
Goodfellow, I., Bengio, Y., & Courville, A. (2016). Deep Learning. MIT Press.
https://github.com/tensorflow/tensorflow
10.5281/zenodo.3233118
arXiv:2103.00020
Smith, J. (2020). Neural Architecture Search. PhD Thesis. Stanford University.
Execute the command to process your file and generate a clean .bib output.
onecite process references.txt -o results.bib --quietYour results.bib file now contains entries of different types.
View Complete Output (results.bib)
@article{LeCun2015Deep,
doi = "10.1038/nature14539",
title = "Deep learning",
author = "LeCun, Yann and Bengio, Yoshua and Hinton, Geoffrey",
journal = "Nature",
year = 2015,
volume = 521,
number = 7553,
pages = "436-444",
publisher = "Springer Science and Business Media LLC",
url = "https://doi.org/10.1038/nature14539",
type = "journal-article",
abstract = "Deep learning allows computational models that are composed of multiple processing layers to learn representations of data with multiple levels of abstraction...",
}
@inproceedings{Vaswani2017Attention,
arxiv = "1706.03762",
title = "Attention Is All You Need",
author = "Vaswani, Ashish and Shazeer, Noam and Parmar, Niki and Uszkoreit, Jakob and Jones, Llion and Gomez, Aidan N. and Kaiser, Lukasz and Polosukhin, Illia",
year = 2017,
booktitle = "Advances in Neural Information Processing Systems (NeurIPS)",
url = "https://arxiv.org/abs/1706.03762",
}
# ... and 5 more entries ...Direct String and Stdin Input
onecite process "10.1038/nature14539"
onecite process "Attention is all you need, Vaswani et al., NIPS 2017"
echo "10.1038/nature14539" | onecite process -Interactive Disambiguation
For ambiguous entries, use the --interactive flag to manually select the correct match and ensure accuracy.
Command:
onecite process ambiguous.txt --interactiveExample Interaction:
Found multiple possible matches for "Deep learning Hinton":
1. Deep learning
Authors: LeCun, Yann; Bengio, Yoshua; Hinton, Geoffrey
Journal: Nature, 2015
DOI: 10.1038/nature14539
2. Deep belief networks
Authors: Hinton, Geoffrey E.
Journal: Scholarpedia, 2009
DOI: 10.4249/scholarpedia.5947
Please select (1-2, 0=skip): 1
Selected: Deep learning
π Use as a Python Library
Use OneCite directly in your Python scripts.
from onecite import process_references
# A callback can be used for non-interactive selection (e.g., always choose the best match)
def auto_select_callback(candidates):
return 0 # Index of the best candidate
result = process_references(
input_content="Deep learning review\nLeCun, Bengio, Hinton\nNature 2015",
input_type="txt",
template_name="journal_article_full",
output_format="bibtex",
interactive_callback=auto_select_callback
)
print('\n\n'.join(result['results']))π» CLI Commands & Options
OneCite provides a command-line interface with the following commands and options:
The main command for processing references through the OneCite pipeline.
Usage:
onecite process <input_file> [OPTIONS]Arguments:
input_file- Input file path,-for stdin, or a reference string (e.g., DOI, title)
Options:
| Option | Short | Description | Default |
|---|---|---|---|
--input-type |
Input format: txt or bib |
txt |
|
--template |
Fallback BibTeX entry-type preset when auto-detection is inconclusive | journal_article_full |
|
--output-format |
Output format (currently only bibtex supported) |
bibtex |
|
--output |
-o |
Output file path (default: stdout) | - |
--interactive |
Enable interactive mode for ambiguous matches | False |
|
--quiet |
-q |
Suppress verbose logging output | False |
--json |
Print a stable JSON envelope instead of BibTeX text | False |
|
--ndjson |
Print newline-delimited JSON events for streaming automation workflows | False |
|
--fail-on-unresolved |
Return exit code 2 when any entry cannot be resolved |
False |
|
--google-scholar |
Enable Google Scholar as an additional data source (requires scholarly package) | False |
Examples:
# Process a text file
onecite process references.txt -o results.bib
# Process a BibTeX file with auto-detection
onecite process references.bib
# Process with interactive mode
onecite process ambiguous.txt --interactive
# Use stdin
echo "10.1038/nature14539" | onecite process -
# Process a direct string (DOI)
onecite process "10.1038/nature14539"
# Process with custom template
onecite process references.txt --template conference_paper
# Enable Google Scholar (requires scholarly package)
onecite process references.txt --google-scholar
# Quiet mode for scripts
onecite process references.txt -o results.bib --quiet
# Automation-friendly JSON with unresolved-entry exit-code handling
onecite process references.txt --json --fail-on-unresolved
# Streaming NDJSON for automation
onecite process references.txt --ndjsonDisplay the installed OneCite version.
Usage:
onecite --versionAlternative command to display version information.
Usage:
onecite versionList the bundled fallback BibTeX templates and the fields they request.
Usage:
onecite templates
onecite templates --jsonRun a small deterministic regression suite for covered DOI lookup, arXiv lookup, PMID/PubMed lookup, GitHub software URLs, Zenodo/DataCite dataset DOIs, and mixed valid/invalid batches. The command is designed for CI and automation workflows that need a machine-readable pass/fail check; it is not a comprehensive citation-accuracy benchmark.
Usage:
onecite benchmark [OPTIONS]Options:
| Option | Description | Default |
|---|---|---|
--cases |
Path to a custom benchmark suite JSON file | bundled golden cases |
--min-success-rate |
Minimum covered-case pass rate required for exit code 0 |
1.0 |
--json |
Print the benchmark report as JSON | False |
--live |
Use live external APIs instead of bundled offline fixtures | False |
Examples:
onecite benchmark
onecite benchmark --json
onecite benchmark --live --json
onecite benchmark --cases my_cases.json --min-success-rate 1.0 --jsonThe repository baseline record is stored at benchmarks/leaderboard.json, with
reproduction instructions in benchmarks/README.md.
Check the local installation health for automation and CI. The doctor command checks package importability, bundled templates, packaged benchmark resources, the repository-contained OneCite Skill, and the offline benchmark regression check.
Usage:
onecite doctor
onecite doctor --jsonThe JSON output is a stable envelope with schema_version, tool,
command, status, environment, summary, and checks fields.
The repository includes a local skill package at skills/onecite/SKILL.md.
It gives automation and contributor workflows a repeatable procedure for
reference cleanup, benchmark and doctor checks, and explicit
reporting of unresolved entries.
The skill is repository-contained and does not install itself into any local
tool memory.
When --input-type is not specified, OneCite automatically detects the input type:
- Files ending with
.bibare treated as BibTeX format - All other files and strings are treated as plain text
OneCite supports several template presets for different entry types:
journal_article_full- Full journal article entry (default)conference_paper- Conference proceedings paperbook- Book entrythesis- Thesis/dissertation entrydataset- Dataset entrysoftware- Software/code entry
0- Success1- Error occurred (invalid input, processing failure, etc.)2- One or more entries were unresolved when--fail-on-unresolvedwas used
For onecite benchmark and onecite doctor, exit code 0 means the
configured checks passed and exit code 1 means at least one check failed.
- OneCite Skill β Repository-contained operating guide for local citation-cleanup workflows
- Benchmarking β Small deterministic regression suite, configurable pass-rate gate, and baseline record
- Enhanced CLI β Automation-friendly JSON, NDJSON, summaries, and exit codes for reference processing
Contributions are always welcome! Please see CONTRIBUTING.md for development guidelines and instructions on how to submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
OneCite
Star on GitHub β’ Web App β’ π Report an Issue β’ Discussions
