https://github.com/admk/bib-verify.skill
Codex skill for verifying bibliography entries against authoritative sources.
https://github.com/admk/bib-verify.skill
Last synced: 2 months ago
JSON representation
Codex skill for verifying bibliography entries against authoritative sources.
- Host: GitHub
- URL: https://github.com/admk/bib-verify.skill
- Owner: admk
- Created: 2026-03-26T11:19:24.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-03-26T11:22:43.000Z (2 months ago)
- Last Synced: 2026-03-27T04:31:50.417Z (2 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bib Verify
`$bib-verify` is a Codex skill for checking BibTeX or `.bbl` bibliography
entries against authoritative sources such as publisher pages, conference
proceedings, and arXiv.
It is designed for workflows where Codex needs to:
- verify citation metadata such as authors, title, venue, year, pages, DOI, or
arXiv ID
- check whether links embedded in bibliography entries actually resolve
- produce one report per entry and a consolidated verification report
- suggest corrected BibTeX entries when mismatches are found
## Files
- `SKILL.md`: the skill definition and workflow instructions
- `agents/openai.yaml`: UI metadata for the skill
- `scripts/extract_bbl_entries.py`: generate one report stub per `\bibitem`
- `scripts/aggregate_bib_reports.py`: combine per-entry reports into one summary
- `references/report-template.md`: template used for each verification report
## Usage
Install or place this repo under your Codex skills directory so the skill is
available as `$bib-verify`.
Example prompt:
```text
Use $bib-verify to verify the bibliography entries in build/paper.bbl and
produce a consolidated report.
```
## Workflow Summary
1. Find the relevant `.bbl` file in the current repo.
2. Extract `\bibitem` blocks into report stubs.
3. Verify each entry against authoritative sources.
4. Aggregate the per-entry reports into one markdown summary.
The detailed operational instructions live in `SKILL.md`.