arxiv-package

arxiv-package is a skill for Claude Code from Mathews-Tom/armory. It costs 105 tokens per session (1,740 once invoked), scanned A, original, MIT.

A packaging tool for TeX or LaTeX research projects, preparing a clean archive for arXiv, a website where researchers publish scientific papers. It selects needed source files, removes build leftovers, creates a README when needed, and checks the archive.

In plain words
What is it for?
Use it to create and validate a .tar.gz or .zip upload package for a LaTeX paper, including figures, bibliographies, custom styles, and other required files.
Why use it?
It prevents missing files and unwanted temporary files from causing problems during an arXiv submission.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the armory plugin — 85 skills shipped together

Good fit Use it to create and validate a .tar.gz or .zip upload package for a LaTeX paper, including figures, bibliographies, custom styles, and other required files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mathews-tom/armory/arxiv-package
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Mathews-Tom/armory --skill arxiv-package
Clone the repo
git clone --depth 1 https://github.com/Mathews-Tom/armory

Made for: Claude Code.

Or install armory, the plugin that ships this one along with the rest of its 85 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for arxiv-package

README.md
[![agentmods](https://agentmods.dev/badge/skills/mathews-tom/armory/arxiv-package.svg)](https://agentmods.dev/skills/mathews-tom/armory/arxiv-package)
Your own site
<a href="https://agentmods.dev/skills/mathews-tom/armory/arxiv-package"><img src="https://agentmods.dev/badge/skills/mathews-tom/armory/arxiv-package.svg" alt="Measured on agentmods" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,740 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00105 $0.01740
Opus 5 $0.00053 $0.00870
Sonnet 5 $0.00021 $0.00348
Haiku 4.5 $0.00011 $0.00174

Measured 8d ago against content hash 655d81336917, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

arxiv-package scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/arxiv-package/SKILL.md · 193 lines

How it starts

The opening of the file, as written. The whole thing — 193 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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 packaging
  • arxiv-figures — optimize figures before packaging

Workflow

1. Inventory

Scan the project directory. Classify every file:

INCLUDE — Required

  • Main .tex file(s)
  • All \input/\include targets (recursively trace)
  • All \includegraphics targets
  • .bbl files (pre-processed bibliography)
  • .ind files (pre-processed index)
  • .gls/.nls files (glossary/nomenclature)
  • Custom .sty, .cls, .bst files 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 .sty needed 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

  • .bib files (include alongside .bbl or omit — arXiv processes both)
  • Multiple .tex files with \documentclass (needs 00README.XXX with toplevelfile)
  • 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

Read the full file on GitHub · 193 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 193 lines · 105 tokens per session scan A 655d81336917

Subscribe to this mod's changes

arxiv-package is a skill published in the GitHub repository Mathews-Tom/armory (316 stars, last pushed 2d ago), licensed MIT. It adds 105 tokens to every session and 1,740 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

clinical-case-report

Structured medical case presentation for clinical rounds, conferences, and documentation. Generates SOAP-format or narrative case reports with physiologically accurate vitals, labs, and evidence-based plans. Use when the brief mentions "case report", "case presentation", "SOAP note", "clinical case", "ward rounds"…

nexu-io/open-design · 73 tokens

pm-feedback

A feedback-analysis aid that turns spreadsheet data, CSV files, pasted text, or review screenshots into organized product insights. It groups themes, identifies sentiment, examines trends and sources, calculates NPS, and extracts user types.

serejaris/personal-corp-os · 132 tokens

paper2slides

Turn an academic paper PDF into a presentation deck (.pptx) end-to-end. Use this skill whenever the user wants to "make slides from a paper", "generate a deck from this PDF", "make a PPT from this paper", "generate slides from a PDF document", "make a deck from a research paper", or supplies a research paper PDF and…

QuZhan51496/paper2anything · 120 tokens

create-quarto-report

Create a Quarto document for reproducible reports, presentations, or websites. Covers YAML configuration, code chunk options, output formats, cross-references, and rendering. Use when creating a reproducible analysis report, building a presentation with embedded code, generating HTML, PDF, or Word documents from code…

pjt222/agent-almanac · 76 tokens

6verity

A final-checking workflow for mathematical modelling competition papers, using either Typst or LaTeX to build the document. It checks the finished paper and its supporting files before submission.

jihe520/MathModelAgent · 76 tokens

sci-data-extractor

Extract structured data from scientific literature PDFs using AI-powered OCR and LLM analysis. Supports enzyme kinetics, experimental results, and literature review templates. Use when researchers need to parse tables, charts, or text from paper PDFs into Markdown or CSV. Triggers: extract data from PDF, scientific…

pantheon-org/tekhne · 96 tokens