Research Tools

Tools and utilities for research workflows, including document management, PDF processing, and research automation.

See also: Command Line Tools , Web Publishing , AI & LLM Tools

  • A command-line tool that intelligently renames academic PDFs based on their content, extracting metadata like title, authors, and publication year.

    Example usage:
    # Rename a single PDF
    rename-academic-pdf paper.pdf
    
    # Process multiple PDFs
    rename-academic-pdf *.pdf
    
    # Use a custom naming pattern
    rename-academic-pdf --pattern "{year}_{first_author}_{title}" paper.pdf
    
    # Dry run to preview changes
    rename-academic-pdf --dry-run downloads/*.pdf