paper-compilation
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: paper-compilation description: Compile LaTeX papers to PDF with automatic error detection, chktex style checking, and citation/reference validation.
Malicious tool definition detected
Usage: python fix_latex_errors.py --tex main.tex --log compile.log --output fixed.tex python fix_latex_errors.py --tex main.tex --log compile.log --dry-run python fix_latex_errors.py --tex main.tex --auto-detect --output fixed.tex """ import argparse import os import re import sys class LatexFix: """A fix to apply to LaTeX content.""" def __init__(self, name: str, description: str): self.name = name self.description = description self.applied = False def __repr__(self): return f"Fix({self.name})
Tool: scripts/fix_latex_errors.py [2/2] Description: errors[:10]: print(f" [{e['type']}] {e['message'][:80]}", file=sys.stderr) # Apply fixes all_fixes = [] content, fixes = fix_html_tags(content) all_fixes.extend(fixes) content, fixes = fix_mismatched_environments(content) all_fixes.extend(fixes) content, fixes = fix_missing_figures(content, tex_dir) all_fixes.extend(fixes) content, fixes = fix_missing_math_mode(content) all_fixes.extend(fixes) if args.dry_run: print(f"
Passed Files (1)Click to expand
Tool passed security scan