Awesome-Agent-Skills-for-Empirical-Research visual-audit
Perform adversarial visual audit of Quarto or Beamer slides checking for overflow, font consistency, box fatigue, and layout issues.
install
source · Clone the upstream repo
git clone https://github.com/brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/12-pedrohcgs-claude-code-my-workflow/dot-claude/skills/visual-audit" ~/.claude/skills/brycewang-stanford-awesome-agent-skills-for-empirical-research-visual-audit && rm -rf "$T"
manifest:
skills/12-pedrohcgs-claude-code-my-workflow/dot-claude/skills/visual-audit/SKILL.mdsource content
Visual Audit of Slide Deck
Perform a thorough visual layout audit of a slide deck.
Steps
-
Read the slide file specified in
$ARGUMENTS -
For Quarto (.qmd) files:
- Render with
quarto render Quarto/$ARGUMENTS - Open in browser to inspect each slide
- Render with
-
For Beamer (.tex) files:
- Compile and check for overfull hbox warnings
-
Audit every slide for:
OVERFLOW: Content exceeding slide boundaries FONT CONSISTENCY: Inline font-size overrides, inconsistent sizes BOX FATIGUE: 2+ colored boxes on one slide, wrong box types SPACING: Missing negative margins, missing fig-align LAYOUT: Missing transitions, missing framing sentences, semantic colors
-
Produce a report organized by slide with severity and recommendations
-
Follow the spacing-first principle:
- Reduce vertical spacing with negative margins
- Consolidate lists
- Move displayed equations inline
- Reduce image/SVG size
- Last resort: font size reduction (never below 0.85em)