# Send Overleaf to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "overleaf-skill",
    "name": "Overleaf",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aloth/overleaf-skill",
    "canonicalUrl": "https://clawhub.ai/aloth/overleaf-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/overleaf-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=overleaf-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "LICENSE.md",
      "references/API.md",
      "README.md",
      "package.json",
      "scripts/install.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "overleaf-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T19:24:40.811Z",
      "expiresAt": "2026-05-13T19:24:40.811Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=overleaf-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=overleaf-skill",
        "contentDisposition": "attachment; filename=\"overleaf-skill-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "overleaf-skill"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/overleaf-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/overleaf-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/overleaf-skill",
    "agentUrl": "https://openagent3.xyz/skills/overleaf-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/overleaf-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/overleaf-skill/agent.md"
  }
}
```
## Documentation

### 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

Debug authentication issues:

olcli check

Clear stored credentials:

olcli logout

### 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_Paper

# 2. Compile to ensure everything builds
olcli compile

# 3. Download the .bbl file (arXiv requires .bbl, not .bib)
olcli output bbl -o main.bbl

# 4. Download any other needed outputs
olcli output aux -o main.aux    # If needed

# 5. Package for submission
zip arxiv.zip *.tex main.bbl figures/*.pdf

# 6. Verify the package compiles locally (optional)
# Then upload arxiv.zip to arxiv.org

### Commands Reference

CommandDescriptionolcli auth --cookie <value>Authenticate with session cookieolcli whoamiCheck authentication statusolcli logoutClear stored credentialsolcli checkShow config paths and credential sourcesolcli listList all projectsolcli info [project]Show project detailsolcli pull [project] [dir]Download project filesolcli push [dir]Upload local changesolcli sync [dir]Bidirectional syncolcli upload <file> [project]Upload a single fileolcli download <file> [project]Download a single fileolcli zip [project]Download as zip archiveolcli compile [project]Trigger compilationolcli pdf [project]Compile and download PDFolcli output [type]Download compile outputs

### Tips

Auto-detect project: Run commands from a synced directory (contains .olcli.json) to skip the project argument
Dry run: Use olcli push --dry-run to preview changes before uploading
Force overwrite: Use olcli pull --force to overwrite local changes
Project ID: You can use project ID instead of name (24-char hex from URL)
Debug auth: Run olcli check to see where credentials are loaded from
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aloth
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T19:24:40.811Z
- Expires at: 2026-05-13T19:24:40.811Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/overleaf-skill)
- [Send to Agent page](https://openagent3.xyz/skills/overleaf-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/overleaf-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/overleaf-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/overleaf-skill)