submit-to-cran
About
This Claude Skill automates the complete workflow for submitting an R package to CRAN, including pre-submission checks and preparing the required `cran-comments.md` file. It handles initial releases, updates to existing packages, and re-submissions after reviewer feedback. Developers should use it when their package passes local checks with zero errors and warnings and has an updated version number.
Quick Install
Claude Code
Recommendednpx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/submit-to-cranCopy and paste this command in Claude Code to install this skill
Documentation
Submit to CRAN
Full CRAN sub workflow: pre-flight checks → submission.
Use When
- Pkg ready for initial CRAN release
- Sub updated ver of existing CRAN pkg
- Re-sub after CRAN reviewer feedback
In
- Required: R pkg passing local
R CMD checkw/ 0 err + 0 warn - Required: Updated ver # in DESCRIPTION
- Required: Updated NEWS.md w/ ver changes
- Optional: Prev CRAN reviewer comments (re-subs)
Do
Step 1: Ver + NEWS Check
Verify DESCRIPTION ver:
desc::desc_get_version()
Verify NEWS.md has entry. Summarize user-facing changes.
Got: Ver follows semver. NEWS.md has matching entry.
If err: Update ver usethis::use_version() (major/minor/patch). Add NEWS.md entry.
Step 2: Local R CMD Check
devtools::check()
Got: 0 err, 0 warn, 0 notes (1 note OK new sub: "New submission").
If err: Fix all err+warn before. Read log <pkg>.Rcheck/00check.log. Notes → explain in cran-comments.md.
Step 3: Spell Check
devtools::spell_check()
Add legit words → inst/WORDLIST (one per line, sorted).
Got: No unexpected misspellings. All flagged corrected | added.
If err: Fix genuine misspellings. Tech terms → inst/WORDLIST sorted.
Step 4: URL Check
urlchecker::url_check()
Got: All URLs HTTP 200. No broken/redirected.
If err: Replace broken. \doi{} for DOI links not raw URLs. Remove dead links.
Step 5: Win-Builder
devtools::check_win_devel()
devtools::check_win_release()
Wait email (~15-30 min).
Got: 0 err + 0 warn on both release + devel. Email in 15-30 min.
If err: Address platform-specific. Common: diff compiler warns, missing sys deps, path sep diffs. Fix local + re-sub.
Step 6: R-hub Check
rhub::rhub_check()
Multi-platform (Ubuntu, Windows, macOS).
Got: All platforms pass 0 err + 0 warn.
If err: Specific platform fails → check R-hub log. Use testthat::skip_on_os() | conditional code for platform-dep behavior.
Step 7: Prep cran-comments.md
Create | update in pkg root:
## R CMD check results
0 errors | 0 warnings | 1 note
* This is a new release.
## Test environments
* local: Windows 11, R 4.5.0
* win-builder: R-release, R-devel
* R-hub: ubuntu-latest (R-release), windows-latest (R-release), macos-latest (R-release)
## Downstream dependencies
There are currently no downstream dependencies for this package.
Updates → include:
- What changed (brief)
- Response to prev reviewer feedback
- Reverse dep check results if applicable
Got: Accurate summary across all envs, explains notes.
If err: Results differ across platforms → doc all variations. CRAN reviewers check vs own tests.
Step 8: Final Pre-flight
# One last check
devtools::check()
# Verify the built tarball
devtools::build()
Got: Final check passes clean. .tar.gz built in parent dir.
If err: Last-min issue → fix + re-run all from Step 2. Don't sub w/ known fails.
Step 9: Submit
devtools::release()
Interactive checks + sub. Answer honest.
Alt: manual at https://cran.r-project.org/submit.html, upload tarball.
Got: Confirmation email from CRAN in min. Click link → finalize.
If err: Check email for rejection reasons. Common: examples too slow, missing \value tags, non-portable code. Fix + re-sub, note in cran-comments.md what changed.
Step 10: Post-Submission
Post-acceptance:
# Tag the release
usethis::use_github_release()
# Bump to development version
usethis::use_dev_version()
Got: GitHub release created w/ accepted ver tag. DESCRIPTION bumped to dev (x.y.z.9000).
If err: GH release fails → manual gh release create. CRAN acceptance delayed → wait email before tag.
Check
-
R CMD check0 err + 0 warn local - Win-builder passes (release + devel)
- R-hub passes all platforms
-
cran-comments.mdaccurate - All URLs valid
- No spelling errors
- Ver # correct + incremented
- NEWS.md current
- DESCRIPTION metadata complete + accurate
Traps
- Examples too slow: Wrap expensive in
\donttest{}. CRAN enforces time limits. - Non-std file/dir names: Avoid files triggering CRAN notes (check
.Rbuildignore) - Missing
\valuein docs: All exported fns need@returntag - Vignette build fails: Vignettes must build in clean env w/o your
.Renviron - DESCRIPTION Title: Title Case, no period at end, no "A Package for..."
- Forget rev dep checks: Updates → run
revdepcheck::revdep_check()
Examples
# Full pre-submission workflow
devtools::spell_check()
urlchecker::url_check()
devtools::check()
devtools::check_win_devel()
rhub::rhub_check()
# Wait for results...
devtools::release()
→
release-package-version— ver bumping + git taggingwrite-roxygen-docs— docs meet CRAN standardssetup-github-actions-ci— CI mirroring CRAN expectationsbuild-pkgdown-site— docs site for accepted pkgs
GitHub Repository
Related Skills
content-collections
MetaThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
polymarket
MetaThis skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.
creating-opencode-plugins
MetaThis skill helps developers create OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It provides the plugin structure, event API specifications, and implementation patterns for JavaScript/TypeScript modules. Use it when you need to intercept, monitor, or extend the OpenCode AI assistant's lifecycle with custom event-driven logic.
sglang
MetaSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
