arXiv Package Builder
Bundle a LaTeX project into a submission-ready archive for arXiv upload.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up β so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/arxiv-package-mathews-tom/β the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates β they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description β no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the βWhat this skill doesβ section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Package a TeX/LaTeX project into a clean tarball or zip for arXiv upload: file selection, build-artifact exclusion, 00README.XXX generation, ancillary file organization, archive validation. Triggers on: "package for arXiv", "create arXiv tarball", "bundle submission", "zip for arXiv", "prepare arXiv upload", "arXiv submission archive". Companion to arxiv-preflight and arxiv-figures.
What this skill does
arXiv Submission Packager
Purpose
Assemble a TeX/LaTeX project into a clean, correctly structured .tar.gz or
.zip archive ready for arXiv upload. Handles file selection, artifact
exclusion, directory structure, 00README generation, and validation of the
final package.
Companion skills:
arxiv-preflightβ validate before packagingarxiv-figuresβ optimize figures before packaging
Workflow
1. Inventory
Scan the project directory. Classify every file:
INCLUDE β Required
- Main
.texfile(s) - All
\input/\includetargets (recursively trace) - All
\includegraphicstargets .bblfiles (pre-processed bibliography).indfiles (pre-processed index).gls/.nlsfiles (glossary/nomenclature)- Custom
.sty,.cls,.bstfiles not in TeX Live 00README.XXX(if present)anc/directory contents (ancillary files)
EXCLUDE β Build Artifacts
.aux,.log,.toc,.lot,.lof,.out,.nav,.snm,.vrb.dvi,.ps,.pdf(except figure PDFs and ancillary PDFs).synctex,.synctex.gz,.fls,.fdb_latexmk.blg,.ilg,.glg,.nlg(log files from bib/index/glossary processing)*.bak,*~,*.swp,*.swo(editor backups).DS_Store,Thumbs.db,desktop.ini(OS artifacts)
EXCLUDE β Should Not Submit
- Journal templates / style guides (unless custom
.styneeded for compilation) - Referee letters, cover letters
- Build scripts (
Makefile,latexmkrc) β not needed by arXiv .git/,.svn/, version control directories- IDE configs (
.vscode/,.idea/,.texpadtmp/)
FLAG β Needs Decision
.bibfiles (include alongside.bblor omit β arXiv processes both)- Multiple
.texfiles with\documentclass(needs00README.XXXwithtoplevelfile) - Large data files (ancillary or exclude)
2. Generate 00README.XXX
Create or update the 00README.XXX file when needed:
# Auto-generated by arxiv-package
# Main TeX file (only if ambiguous β multiple \documentclass files)
main.tex toplevelfile
# Files to exclude from processing
cover-letter.pdf ignore
notes.txt ignore
# Optional directives
# nostamp
# nohypertex
Only generate if:
- Multiple
.texfiles contain\documentclass(declaretoplevelfile) - Files need explicit
ignoredirectives - User requests
nostampor other directives
3. Validate Structure
Before creating the archive:
- All
\input/\includetargets resolve to files in the package - All
\includegraphicstargets resolve to files in the package - All
\bibliographytargets have corresponding.bblfiles - No absolute paths in any TeX source
- No filenames with spaces or special characters
anc/directory contains no.texfiles- No hidden files (will be deleted by arXiv upon announcement)
- Total uncompressed size is reasonable (flag >50MB β may need exception request)
4. Create Archive
# From project root, create tar.gz excluding unwanted files
tar czf submission.tar.gz \
--exclude='*.aux' --exclude='*.log' --exclude='*.toc' \
--exclude='*.lot' --exclude='*.lof' --exclude='*.out' \
--exclude='*.nav' --exclude='*.snm' --exclude='*.vrb' \
--exclude='*.dvi' --exclude='*.synctex*' \
--exclude='*.fls' --exclude='*.fdb_latexmk' \
--exclude='*.blg' --exclude='*.ilg' --exclude='*.glg' \
--exclude='*.bak' --exclude='*~' --exclude='*.swp' \
--exclude='.git' --exclude='.svn' \
--exclude='.DS_Store' --exclude='Thumbs.db' \
--exclude='.vscode' --exclude='.idea' \
[list of files/directories to include]
# Or create zip
zip -r submission.zip [files] \
-x '*.aux' -x '*.log' -x '*.toc' ...
Prefer explicit file inclusion over directory-wide inclusion with exclusions. This prevents accidental inclusion of sensitive or unnecessary files.
5. Verify Archive
After creation:
- List archive contents β verify no unexpected files
- Extract to temporary directory
- Attempt compilation in the extracted directory (if TeX toolchain available)
- Report archive size (compressed and uncompressed)
- Compare file list against the include/exclude inventory
6. Report
# arXiv Package Report
**Archive:** submission.tar.gz
**Compressed size:** [size]
**Uncompressed size:** [size]
**File count:** [count]
## Contents
| File | Size | Type |
|------|------|------|
| main.tex | 45 KB | Source |
| references.bbl | 12 KB | Bibliography |
| fig1.pdf | 380 KB | Figure |
| anc/data.csv | 1.2 MB | Ancillary |
## Excluded
| File | Reason |
|------|--------|
| main.aux | Build artifact |
| main.log | Build artifact |
| referee-response.pdf | Not for submission |
## 00README.XXX
[Contents if generated]
## Verification
- [ ] Archive extracts cleanly
- [ ] All source references resolve
- [ ] Compilation succeeds (if tested)
- [ ] No sensitive files included
Archive Format Notes
.tar.gzpreferred over.zip(standard in academic TeX workflows)- arXiv accepts both
.tar(gzipped) and.zip - Do not nest archives (no
.tar.gzinside a.zip) - Files should be at root level or in logical subdirectories β no wrapper directory unless the project uses subdirectories for organization
Core Principles
- Explicit inclusion over blanket exclusion. Build the file list from what's needed, not from everything minus what's not needed. This catches files that shouldn't be submitted but aren't in the exclusion list.
- Verify after packaging. The archive is the submission. Test it, not the source directory.
- Preserve directory structure. If the project uses subdirectories for figures or sections, maintain that structure. TeX paths depend on it.
- No sensitive files. Check for
.env, credentials, personal notes, referee correspondence before packaging.
Related skills
DOCX Document Editor
Prat011
Create, edit, and analyze Word documents with tracked changes and comments.
Audit Reproducibility
pedrohcgs
Verify numeric claims in manuscripts match actual analysis outputs within tolerance.
Environment Snapshot
pedrohcgs
Capture your project's exact language versions, packages, and dependencies for reproducible research.
Deep Research
shobcoder
Research complex topics thoroughly with verified sources and structured findings.