| name | polish |
| description | This skill should be used when the user asks to "polish my paper for submission", "pre-flight check", "is my paper ready to submit", "final check before submission", "prepare for submission", or needs final preparation before submitting a paper. Performs a systematic pre-flight check covering formatting, citations, figures, metadata, and build verification. Produces a checklist report with suggested fixes. |
Submission Polish
Perform a final quality check on a research paper before submission. This is the last line of defense -- catch everything that would annoy a reviewer or cause a desk rejection.
Step 1: Read Context
Read .papermill.md (Read tool) for:
- Venue: Target venue and its requirements.
- Format: Paper format (latex, markdown, rmarkdown).
- Review history: Outstanding issues from previous reviews.
If .papermill.md does not exist, the pre-flight check can still run — infer the format from the manuscript files and ask the user for the target venue. The checklist works regardless. Suggest running /papermill:init to capture venue and format persistently.
Read the complete manuscript (Read tool).
Step 2: Pre-Flight Checklist
Work through each category systematically. Report issues as they are found.
Formatting
Abstract
Citations and References
Figures and Tables
Mathematical Content
Writing Quality
Metadata
Supplementary Material
Step 3: Build Verification
Run a clean build appropriate to the paper format (Bash tool). Use the manuscript path discovered in Step 1 (from .papermill.md or by scanning for .tex/.md/.Rmd files with Glob tool). Examples:
LaTeX papers:
latexmk -pdf <path-to-main.tex>
Markdown papers:
pandoc <path-to-paper.md> -o paper.pdf
R Markdown papers:
Rscript -e "rmarkdown::render('<path-to-paper.Rmd>')"
Report:
- Number of pages
- Number of warnings (LaTeX warnings, pandoc warnings, R warnings)
- Number of undefined references
- Number of overfull/underfull hbox warnings (LaTeX; prioritize overfull)
Step 4: Present Results
Present the checklist results:
Pre-Flight Report
Status: [Ready / Issues found]
Passing: N/M checks passed
Issues:
- [issue + suggested fix]
- [issue + suggested fix]
...
Step 5: Fix Issues
Offer to fix issues directly:
- Formatting fixes: Apply them.
- Content fixes: Suggest specific changes and ask for approval.
- Style fixes: Propose rewording.
Step 6: Update State File
After all issues are resolved:
- Set
stage to submission in .papermill.md (Edit tool).
- Append a timestamped note: "Pre-flight check passed. Ready for submission to [venue]."
Step 7: Suggest Next Steps
Paper is polished and ready. Final steps:
- Submit: Follow the venue's submission instructions.
/papermill:venue: If you haven't selected a venue yet, do so now.
- Archive: Consider creating a git tag marking the submitted version.