proofread
Proofread a LaTeX document for grammar, typos, notation consistency, and academic writing quality. Produces a report without editing files.
Install
mkdir -p .claude/skills/proofread && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14329" && unzip -o skill.zip -d .claude/skills/proofread && rm skill.zipInstalls to .claude/skills/proofread
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Proofread a LaTeX document for grammar, typos, notation consistency, and academic writing quality. Produces a report without editing files.About this skill
Proofread LaTeX Files
Run the proofreading protocol on LaTeX files. Produces a report of all issues found WITHOUT editing any source files.
Steps
-
Identify files to review:
- If
$ARGUMENTSis a specific filename: review that file only - If
$ARGUMENTSis "all": review all.texfiles in the current directory
- If
-
For each file, check for:
GRAMMAR: Subject-verb agreement, articles (a/an/the), tense consistency (present for established results, past for "we showed") TYPOS: Misspellings, duplicated words, search-and-replace artifacts NOTATION: Consistent use of $\mathbb{F}_p$, $\mathcal{A}$, $\lambda$; variables introduced before use; quantifiers explicit LATEX: Missing
~before\cite/\ref,\left/\rightmismatches, mismatched environments ACADEMIC QUALITY: Informal language, vague claims ("it is clear that..."), missing words -
Produce a report listing every finding with:
- Line number
- Current text
- Proposed fix
- Category and severity
-
IMPORTANT: Do NOT edit any source files. Only produce the report.
-
Present summary to the user:
- Total issues per file
- Breakdown by category
- Most critical issues highlighted
Adapted from pedrohcgs/claude-code-my-workflow (MIT license).