paper-creator

Generate publication-ready LaTeX papers with test-driven compilation and OpenAlex citations.

Updated Apr 8, 2026
One-click install
npx skills add https://github.com/aimentor606/aether --skill paper-creator-aimentor606
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: paper-creator
Source: https://github.com/aimentor606/aether/tree/main/core/kortix-master/opencode/skills/GENERAL-KNOWLEDGE-WORKER/paper-creator
Command: npx skills add https://github.com/aimentor606/aether --skill paper-creator-aimentor606

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pdflatex, bibtex, python3, and includes scripts (resource) and assets (resource) components.

What problem does it solve?

Scientific authors need a reliable, reproducible workflow to write publication-quality LaTeX papers without repeatedly breaking the build or losing track of citations and figures. This Skill enforces a test-driven pipeline that scaffolds a LaTeX project, manages BibTeX entries from OpenAlex, compiles incrementally, and runs strict verification so every section is always in a compilable state.

Core Features & Use Cases

  • TDD compilation workflow: Write one section at a time, compile, and verify before proceeding to the next to avoid cascading LaTeX errors.
  • Citation automation: Convert OpenAlex search results to BibTeX entries with the included Python converter and integrate them into references.bib.
  • Reproducible build tooling: Scripts for pdflatex + bibtex compilation and a 12-check verifier that enforces PDF existence, citation/reference hygiene, figure presence, TODO removal, and overfull box limits.
  • Template and reproducibility: Minimal IMRaD LaTeX template plus guidance for venue changes, macro conventions, and figure generation best practices.
  • Use Case: An academic team with experiment results and figures can scaffold a paper, import references, iteratively draft sections, and produce a final, clean PDF that passes strict checks.

Quick Start

Scaffold a new LaTeX paper project, copy the provided template, and run the compile and verify scripts to produce an initial clean PDF for your paper slug.

Frequently Asked Questions about paper-creator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I compile LaTeX papers incrementally without breaking the build?

Compile LaTeX papers incrementally using a test-driven workflow that writes one section at a time and runs a verification suite before proceeding. This prevents cascading errors by ensuring every section remains in a compilable state throughout the drafting process.

How do I convert OpenAlex search results to BibTeX entries for academic writing?

Convert OpenAlex search results to BibTeX entries using a Python-based converter that imports citation data and integrates it directly into references.bib. This automates citation discovery and maintains reference hygiene for publication-ready LaTeX documents.

What checks should I run to verify my LaTeX paper is publication-ready?

Run a 12-check verification suite to verify LaTeX papers are publication-ready, enforcing PDF existence, citation and reference hygiene, figure presence, TODO removal, and overfull box limits. This ensures formatting and structural compliance before final submission.

Do I need pdflatex and bibtex installed to use this scientific writing workflow?

Yes, you need pdflatex, bibtex, and python3 installed to execute the reproducible build tooling and OpenAlex-to-BibTeX conversion. These dependencies are required to compile IMRaD-style LaTeX papers and run the verification checks.

Can I scaffold an IMRaD LaTeX template and import references automatically?

Yes, you can scaffold a minimal IMRaD LaTeX template and import references automatically by running the provided compile and verify scripts. The workflow integrates OpenAlex citations into BibTeX and supports iterative per-section composition with figure integration.

Why does my LaTeX compilation keep failing when I add new sections and citations?

LaTeX compilation fails when sections and citations are added without incremental verification, causing cascading errors. A test-driven compilation workflow addresses this by compiling and verifying each section individually to maintain a clean, reproducible build state.