Overleaf
by @aloth
Sync and manage Overleaf LaTeX projects from the command line. Pull projects locally, push changes back, compile PDFs, and download compile outputs like .bbl files for arXiv submissions. Use when working with LaTeX, Overleaf, academic papers, or arXiv.
clawhub install overleaf-skillπ About This Skill
name: overleaf description: Sync and manage Overleaf LaTeX projects from the command line. Pull projects locally, push changes back, compile PDFs, and download compile outputs like .bbl files for arXiv submissions. Use when working with LaTeX, Overleaf, academic papers, or arXiv. license: MIT metadata: author: aloth version: "1.1" cli: olcli install: brew tap aloth/tap && brew install olcli
Overleaf Skill
Manage Overleaf LaTeX projects via the olcli CLI.
Installation
# Homebrew (recommended)
brew tap aloth/tap && brew install olclinpm
npm install -g @aloth/olcli
Authentication
Get your session cookie from Overleaf:
1. Log into overleaf.com
2. Open DevTools (F12) β Application β Cookies
3. Copy the value of overleaf_session2
olcli auth --cookie "YOUR_SESSION_COOKIE"
Verify with:
olcli whoami
Debug authentication issues:
olcli check
Clear stored credentials:
olcli logout
Common Workflows
Pull a project to work locally
olcli pull "My Paper"
cd My_Paper/
Edit and sync changes
# After editing files locally
olcli push # Upload changes only
olcli sync # Bidirectional sync (pull + push)
Compile and download PDF
olcli pdf # Compile and download
olcli pdf -o paper.pdf # Custom output name
olcli compile # Just compile (no download)
Download .bbl for arXiv submission
olcli output bbl # Download compiled .bbl
olcli output bbl -o main.bbl # Custom filename
olcli output --list # List all available outputs
Upload figures or assets
olcli upload figure1.png "My Paper" # Upload to project root
olcli upload diagram.pdf # Auto-detect project from .olcli.json
Download specific files
olcli download main.tex "My Paper" # Download single file
olcli zip "My Paper" # Download entire project as zip
arXiv Submission Workflow
Complete workflow for preparing an arXiv submission:
# 1. Pull your project
olcli pull "Research Paper"
cd Research_Paper2. Compile to ensure everything builds
olcli compile3. Download the .bbl file (arXiv requires .bbl, not .bib)
olcli output bbl -o main.bbl4. Download any other needed outputs
olcli output aux -o main.aux # If needed5. Package for submission
zip arxiv.zip *.tex main.bbl figures/*.pdf6. Verify the package compiles locally (optional)
Then upload arxiv.zip to arxiv.org
Commands Reference
| Command | Description |
|---------|-------------|
| olcli auth --cookie | Authenticate with session cookie |
| olcli whoami | Check authentication status |
| olcli logout | Clear stored credentials |
| olcli check | Show config paths and credential sources |
| olcli list | List all projects |
| olcli info [project] | Show project details |
| olcli pull [project] [dir] | Download project files |
| olcli push [dir] | Upload local changes |
| olcli sync [dir] | Bidirectional sync |
| olcli upload | Upload a single file |
| olcli download | Download a single file |
| olcli zip [project] | Download as zip archive |
| olcli compile [project] | Trigger compilation |
| olcli pdf [project] | Compile and download PDF |
| olcli output [type] | Download compile outputs |
Tips
.olcli.json) to skip the project argumentolcli push --dry-run to preview changes before uploadingolcli pull --force to overwrite local changesolcli check to see where credentials are loaded fromπ Tips & Best Practices
.olcli.json) to skip the project argumentolcli push --dry-run to preview changes before uploadingolcli pull --force to overwrite local changesolcli check to see where credentials are loaded from