evo-bibtex-parser

SkillFiles & storage

Parses BibTeX files using bibtexparser 1.4.2 and cleans LaTeX/BibTeX artifacts from fields like title, author, year, DOI, and venue. Produces a normalized list of citation dictionaries ready for verification.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the evo-bibtex-parser skill

What this skill tells your AI

The instructions your AI receives, as published by openlair/openskill in tasks-evolved/citation-check/environment/skills/evo-bibtex-parser/SKILL.md and read by ahel’s review.

Parses BibTeX files and cleans LaTeX artifacts for citation verification.

Key Functions

  • parse_bibtex_file(file_path) - Parse a .bib file, returns list of entry dicts
  • clean_bibtex_artifacts(text) - Remove {}, \commands, LaTeX escapes from strings
  • extract_citation_metadata(entries) - Extract and clean metadata from parsed entries

Usage

import sys
sys.path.insert(0, '/app/environment/skills/evo-bibtex-parser/scripts')
from utils import parse_bibtex_file, clean_bibtex_artifacts, extract_citation_metadata

entries = parse_bibtex_file('/root/test.bib')
citations = extract_citation_metadata(entries)
for c in citations:
    print(c['title'], c['doi'])

Notes

  • Uses bibtexparser 1.4.2 (NOT v2.x)
  • homogenize_fields=True standardizes field names to lowercase
  • Handles @article (journal), @inproceedings (booktitle), @book entries
  • Cleans curly braces, LaTeX commands, special characters

Signals

GitHub stars
89
Forks
4
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
evo-bibtex-parser
Source
github.com/openlair/openskill