From manuscript-tools
Clean and standardize .bib files for AER/QJE economics journal submissions
npx claudepluginhub halidaee/econtools_marketplace --plugin manuscript-toolsThis skill uses the workspace's default tool permissions.
Cleans and standardizes BibTeX files for economics journal submissions (AER, QJE, etc.).
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Calculates TAM/SAM/SOM using top-down, bottom-up, and value theory methodologies for market sizing, revenue estimation, and startup validation.
Cleans and standardizes BibTeX files for economics journal submissions (AER, QJE, etc.).
/clean-bib path/to/references.bib
pip install bibtexparser
load_bib(filepath): Load and parse BibTeX files using bibtexparsersave_bib(bib_db): Convert parsed database back to properly formatted BibTeXapply_title_case(entry): Apply title case with special handling for acronyms and proper namesstandardize_journal_names(entry): Map journal abbreviations to full formal namesprune_fields(entry): Remove metadata fields (abstract, keywords, file, etc.)handle_url_doi(entry): Conditionally keep URLs only for @techreport/@unpublished typesensure_nber_format(entry): Convert NBER papers to @techreport with proper institution fieldvalidate_entry(entry): Check for required fields by entry typeclean_entry(entry): Orchestrate all cleaning operations on a single entryclean_bib_file(filepath, in_place=False): Apply all cleaning to entire file@article: Journal papers (removes URLs, standardizes journal names)@techreport: Working papers and technical reports (preserves URLs)@book: Books (validates publisher field)@inproceedings / @incollection: Conference papers (validates booktitle field)