Skills overleaf
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.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/aloth/olcli" ~/.claude/skills/clawdbot-skills-overleaf && rm -rf "$T"
manifest:
skills/aloth/olcli/SKILL.mdsource content
Overleaf Skill
Manage Overleaf LaTeX projects via the
olcli CLI.
Installation
# Homebrew (recommended) brew tap aloth/tap && brew install olcli # npm npm install -g @aloth/olcli
Authentication
Get your session cookie from Overleaf:
- Log into overleaf.com
- Open DevTools (F12) → Application → Cookies
- Copy the value of
overleaf_session2
olcli auth --cookie "YOUR_SESSION_COOKIE"
Verify with:
olcli whoami
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
Commands Reference
| Command | Description |
|---|---|
| Authenticate with session cookie |
| Check authentication status |
| List all projects |
| Show project details |
| Download project files |
| Upload local changes |
| Bidirectional sync |
| Upload a single file |
| Download a single file |
| Download as zip archive |
| Trigger compilation |
| Compile and download PDF |
| Download compile outputs |
Tips
- Auto-detect project: Run commands from a synced directory (contains
) to skip the project argument.olcli.json - Dry run: Use
to preview changes before uploadingolcli push --dry-run - Force overwrite: Use
to overwrite local changesolcli pull --force - Project ID: You can use project ID instead of name (24-char hex from URL)
Troubleshooting
Session expired
Get a fresh cookie from the browser and run
olcli auth again.
Compilation fails
Check the Overleaf web editor for detailed error logs.