paper-compilation

Warn

Audited by Runlayer on Feb 22, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
3
Flagged
2
Chunks
4
Flagged Files (2)
SKILL.mdHIGH
78.3%

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.

scripts/fix_latex_errors.pyHIGH
78.3%

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
scripts/compile_paper.pyOK
18.1%

Tool passed security scan

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
3
Files Flagged
2
Chunks Analyzed
4
Analyzed
Feb 22, 2026, 06:10 AM
Security Audit — runlayer — paper-compilation