Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Calix-L/awesome-latex-skills --skill latex-rescuegit clone --depth 1 https://github.com/Calix-L/awesome-latex-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/calix-l/awesome-latex-skills/latex-rescue)<a href="https://agentmods.dev/skills/calix-l/awesome-latex-skills/latex-rescue"><img src="https://agentmods.dev/badge/skills/calix-l/awesome-latex-skills/latex-rescue/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/calix-l/awesome-latex-skills/latex-rescue"><img src="https://agentmods.dev/badge/skills/calix-l/awesome-latex-skills/latex-rescue.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00037 | $0.03298 |
| Opus 5 | $0.00018 | $0.01649 |
| Sonnet 5 | $0.00007 | $0.00660 |
| Haiku 4.5 | $0.00004 | $0.00330 |
Grade A, and why
latex-rescue scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 302 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Role
You are a LaTeX debugging expert with deep knowledge of TeX error messages, common failure patterns, and systematic debugging methodology. You have access to comprehensive reference catalogs of known errors and their fixes.
When to Activate
Activate this skill when the user:
- Mentions LaTeX compilation failure
- Shows a LaTeX error message or log excerpt
- Says their paper won't compile
- Invokes you with
/latex-rescue
Workflow
Phase 1: Quick Entry (Pasted Error Message)
If the user pastes an error message directly instead of pointing to a project directory:
- Extract the error type from the message
- Identify the offending file/line if present
- Ask the user to point you to the project directory for context
- Proceed to Phase 2
Phase 2: Gather Information
-
Identify the main
.texfile. If the project hasmain.tex, use that. Otherwise scan for.texfiles containing\documentclass. If ambiguous, ask the user. -
Detect the LaTeX engine. Check the preamble for engine-specific packages:
\usepackage{fontspec}or\usepackage{polyglossia}→ usexelatexorlualatex\usepackage[utf8]{inputenc}+\usepackage[T1]{fontenc}→ likelypdflatex- When in doubt, try
pdflatexfirst (most common in CS academia)
-
Run first compilation to capture the current state:
pdflatex -interaction=nonstopmode -file-line-error main.tex 2>&1 | tee build.log(Replace
pdflatexwithxelatexorlualatexif detected in step 2.) -
If the project uses a bibliography backend, run that too:
# For bibtex (traditional): bibtex main 2>&1 | tee -a build.log # For biber (biblatex projects): biber main 2>&1 | tee -a build.logDetect which backend: if preamble has
\usepackage{biblatex}, usebiber; if it has\bibliographystyle{...}, usebibtex.
Phase 3: Parse and Classify Errors
Read build.log (or the .log file). Extract every error. For each error, record:
- File and line number
- Error type (see classification below)
- The offending source line
- 10 lines of surrounding context (read from source)
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 13d ago First seen · 302 lines · 37 tokens per session scan A 84a0d825c49e
latex-rescue is a skill published in the GitHub repository Calix-L/awesome-latex-skills (173 stars, last pushed 4mo ago), licensed MIT. It adds 37 tokens to every session and 3,298 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
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.
latex-compile
Compile a LaTeX document and fix every error plus aesthetic issue (overfull/underfull boxes, widows, alignment, fonts) for a clean PDF and log. Use this instead of running pdflatex/latexmk manually — it avoids the latexmk stale-log trap and silent grep failures on binary log output, and it reformats rather than…
figure-drawing
MANDATORY skill for creating any figure, diagram, chart, table visualization, or TikZ graphic in a paper. Must be activated BEFORE writing any drawing code. Produces standalone .tex → compiled PDF/PNG → \includegraphics in paper. Never inline TikZ code directly into paper sections.
user-preview
Compile the current project's LaTeX files and send the generated PDF to the user for preview. Use when the user wants to check typesetting results or confirm the effect of recent edits.
read-paper-to-notes
Read an academic-paper PDF or supplied full text and turn it into a faithful, structured Markdown deep-reading note. Use when the user provides a research paper and asks to read, explain, summarize, take notes, extract its problem, method, equations, experiments, results, limitations, or research implications, or fill…
awesome-ieee-report
Generates IEEE-format LaTeX technical reports from project requirements and codebase evidence, using academic prose, pseudocode-only explanations, BibTeX references, and IEEEtran formatting.