Changelog
Source:NEWS.md
checktor 0.2.0
Every check now carries a severity tier, so a clean bill of health means something precise rather than merely quiet. Checks read your examples, vignettes and demos as well as R/, which is where several of the most common rejections actually land. New checks bring part of CRAN’s incoming filter offline, covering the Date, Encoding and Version fields, the structure of Authors@R, ORCID and ROR identifiers, a detectCores() that can return NA, and a scan for a leaked credential. Existing checks are sharper and quieter, every check is callable on its own, findings can go straight to your build system, checktor runs from anywhere inside a package tree, and a package can tune checktor through Config/checktor/* fields in its own DESCRIPTION.
Breaking changes
checktor needs R 4.5.0 or later, where 0.1.0 asked only for R 3.5.0. R 4.5.0 added
tools::check_package_urls(), which the newurl_livenesscheck uses. An older installation stays on 0.1.0.The individual checks are now
lab_*(), so the doctor orders a panel of labs.diagnose_tf_usage()islab_tf_usage(), and the name afterlab_is the check nametidy()reports andConfig/checktorrefers to, which several old names did not match. The five category functions such asdiagnose_code_issues()keep their names, since they run a panel rather than one test. The names released in 0.1.0 were renamed outright rather than deprecated, so update any call todiagnose_tf_usage(),diagnose_seed_setting(),diagnose_print_cat_usage(),diagnose_roxygen_usage(),diagnose_value_tags(),diagnose_example_structure(),diagnose_package_size()ordiagnose_urls().-
Every check carries a severity tier, and
checktor()gained aseverityargument deciding which tiers the verdict is about. It defaults to policy and robustness.- A policy finding is a citable violation of CRAN Repository Policy or Writing R Extensions.
- A robustness finding is a real defect that CRAN will still accept, such as a
detectCores()that may returnNA. - An opinion finding is a convention with no authority behind it.
Every check still runs and every finding is still reported with its tier. The tier only decides what counts against a clean bill of health, so zero issues now means your package is submission ready and nothing here will crash a user.
checkup()follows the same default, so a missingNEWS.mdno longer fails a build. A check that does not run is reported as skipped rather than as passing, so a clean bill of health never includes a check that never happened.
tidy()gained askippedcolumn andsummary()askippedcount, the names are inmetadata$skipped_checks, and the printed result and everyhealth_report()format name the checks that sat out.Every check is exported, so any check
checktor()runs is one you can call yourself. The DESCRIPTION checks take(path, verbose, desc = NULL)like every other check, andissues()andtidy()gained aseveritycolumn.description_bare_rwas removed. It asked you to quote every bareRin theDescription, which is not a rule anyone enforces. Writing R Extensions asks for single quotes around other packages and external software without namingReither way, and both forms clear CRAN, solanguage_namesleaves a bareRand a quoted'R'alone alike and takes no position on which you prefer.Two checks left the default run because no authority supports them, and each stays exported for anyone who wants it. The CRAN rule behind
title_starts_with_articleapplies to theDescriptionand requires the word “package” after the article, not to theTitle. And Writing R Extensions treats single quotes as an inclusive list for non-English usage that a quoted function name fits, which is whatdescription_function_quotesruled out.
New checks
detect_cores_robustnesscatches adetectCores()result used without anNAguard. The help says it returns an integer, orNAwhen the answer is unknown, andNA - 1isNA, so the next comparison dies withmissing value where TRUE/FALSE needed. The fix isparallelly::availableCores().-
A family of checks mirrors CRAN’s incoming filter, so you see those findings offline against your own sources before you submit.
-
date_formatcatches aDatethat is not ISO 8601yyyy-mm-dd, is over a month old, or lies in the future. -
version_formatcatches aVersioncomponent with a leading zero or a suspiciously large one, while leaving a calendar-year version alone. -
encoding_utf8catches anEncodingoutside the portableUTF-8,latin1andlatin2. -
identifier_formatvalidates the ORCID and ROR identifiers inAuthors@R.
-
hardcoded_credentialsscans string literals inR/for a leaked secret, knowing the tokens and keys used by providers such as GitHub, AWS, Google, OpenAI, Anthropic and Stripe, along with PEM private keys and JSON Web Tokens. A token published to CRAN is public and must be revoked, andR CMD checkdoes not look for these. Only string literals are examined, so the same text in a comment never matches. See?lab_hardcoded_credentialsfor the full list.spellingrunsutils::aspell()over theTitleandDescriptionto mirror CRAN’s incoming spelling pass. It reads any.aspell/dictionary,inst/WORDLIST, orConfig/checktorvocabulary you already keep, and passes quietly without a spell-check backend installed. Turn it off withoptions(checktor.spelling = FALSE). When it reports a word,prescribe()prints a ready-to-paste.aspell/snippet, sinceinst/WORDLISTalone does not clear CRAN’s aspell NOTE but a.aspell/dictionary does.url_livenessfetches every URL in the DESCRIPTION,.Rdfiles and vignettes and reports the ones that return an error, a 404, or a redirect, which is whatR CMD check --as-crandoes throughtools::check_package_urls(). It runs when you are at the console and stays off in scripts, in continuous integration and underR CMD check, where a slow or unreachable network would make the result depend on the machine rather than the package. Setoptions(checktor.url_check = TRUE)orFALSEto decide for yourself. With no network reachable it comes back marked as a check that did not run, rather than calling every link broken or quietly reading as though every link resolved, while a single unreachable host among reachable ones still counts.urlsremains the offline half, catchinghttp://links and shorteners without leaving the room.-
A family of checks reads the code outside
R/, where several of the most common rejections land. Every code check used to readR/alone, so an install in an example, a write to the working directory in a vignette, or anoptions()call ininst/demothat was never put back all went unseen. Each rule below is one a maintainer has received verbatim from CRAN.-
example_interactiveasks forif (interactive())where an interactive function is hidden in\dontrun{}, so a reader sees it is not for a script. -
example_installscatches installing a package from an example, a vignette or a demo. -
example_writescatches a write to anywhere buttempdir(), judged with the same destination logic theR/check uses. The write checks now share one list of what counts as a write, so they agree with each other, and it covers the readr, data.table, arrow, spreadsheet and JSON writers alongside the base ones.write_csv(),write_rds(),fwrite(),write_xlsx(),write_parquet()andggsave()are all seen now, inR/and in examples alike. -
example_statecatchesoptions(),par()or the working directory changed and never restored. -
example_internal_nscatches:::in an example or vignette.
internal_nscovers the same rule inR/, where a:::call reaches an object another author is free to change in routine maintenance.unexported_example_nsused to suggest adding:::to an example, which is the change CRAN asks you to undo, so it now says to export the object or keep the topic internal instead. -
language_namescatches a bare programming-language, markup or statistical-computing name in theTitleorDescriptionthat CRAN asks to see single-quoted, covering names likePython,Java,C++,SQL,HTML,MATLABandSAS. It is the language counterpart tosoftware_names, kept separate because a language name and a package name are different kinds of thing. Single-letter and common-word names are left out so ordinary prose stays quiet, and you can extend the list withConfig/checktor/language_names.
Configuration and extension
checktor runs from anywhere inside a package (#12, thanks @january3). It walks up from the path you give it to find the
DESCRIPTION, so a call with your working directory inR/ortests/testthat/examines the whole package instead of failing, and a file works as well as a directory. Every entry point resolves the root the same way, andfind_package_root()is exported for custom checks. A directory outside any package still says so.A package can configure checktor through
Config/checktor/*fields in its own DESCRIPTION.disableskips a check,allowmutes reviewed findings for a whole check or acheck:substring, andsoftware_names,language_namesandacronymsextend those checks’ vocabularies. A package with no such fields is unaffected.ci_report()writes findings in the shape your build system reads, so each one lands on the line that caused it rather than in a log somebody has to scroll. Called with no arguments it examines the package, works out where it is running, and emits the right thing. GitHub Actions gets workflow commands that annotate the pull request diff, and Gitea and Forgejo read the same ones. GitLab gets a Code Quality report for the merge request diff, Azure Pipelines gets logging commands, and Checkstyle XML covers Jenkins, reviewdog and the review bots. SARIF is there for GitHub code scanning. It reports every tier, since an annotation is information rather than a verdict, andcheckup()stays the gate. Checks that did not run are named once alongside the findings, so a quiet pipeline never implies a check that never happened, and the report formats write a document even when nothing was found, which is what lets a forge clear the findings an earlier run left behind.A few checks sit outside every run, because no authority backs them or they ask about a submission workflow rather than the package itself. The summary now names them so you can find out they are there, and
metadata$on_request_checkscarries the list. Calling one is the only way to run it, and since they sit in the opinion tier, running one never changes a verdict.register_check()adds a check of your own to everychecktor()run without editing checktor’s source. Give it a name, a function returning achecktor_check_result(), a category and a severity tier, and it runs alongside the built-ins, appears inissues()andtidy(), and counts toward the verdict at its tier.unregister_check()andregistered_checks()manage the registry.The AST toolkit the built-in checks use is exported, so a registered check has the same tools:
read_r_xml(),xpath_lints(),xpath_per_file(),undesirable_function_check(),not_under_fn_with_call_xpath(), and the.Rdwalkersextract_rd_section()andcollect_rd_text(). The Writing Your Own Checks vignette walks through building and registering one.
Checks improved
Several checks are more accurate, and a few hand off to R’s own engines instead of reimplementing them.
option_changessuggests a fix.prescribe()shows the two ways out, namespacing a setting you keep for the session asoptions(<PackageName>.key = ...), or restoring a temporary change withon.exit().home_writingcatches a write whose destination resolves to the user’s home, such aswriteLines(x, "~/leaked.txt"), rather than reads likeSys.getenv("HOME").globalenv_modreports a<<-only when its target genuinely reaches.GlobalEnv, so a closure updating its parent frame and a package-level cache written as.cache <<- ...both come out clean.core_usageinspects the worker count itself and understands theparallel,snow,foreach,future,furrr,mirai,RcppParallel,data.tableandBiocParallelframeworks. It no longer keys off anmc.coresargument, which belongs tomclapply()alone, sodetectCores()and a compliantmakeCluster(2L)come out clean.roxygen_usagespots roxygen that never reachedNAMESPACE, such as a function tagged@exportthat is not actually exported, which is the real cost of a forgottendocument()run and somethingR CMD checkcannot see. It readsNAMESPACErather than file timestamps, so it behaves the same in CI.license_yearlooks for a genuinely unfilledLICENSEtemplate, a leftover<YEAR>or<COPYRIGHT HOLDER>, rather than a valid but non-current year.authorscatches an unfilledusethistemplate such asperson("First", "Last", , "you@example.com", ...), whichR CMD checkpasses because the field is present but a reviewer sends back. It also validates the field’s structure, including a person with no name or no role, anAuthors@Rthat does not parse, and a missing maintainer.title_caseandlicensehand off to R’s owntools::toTitleCase()andtools::analyze_license(), so they match R’s behaviour.licensealso catches a bareMIT, which needsMIT + file LICENSEpointing at a file that exists.value_tagswalks each.Rdwithtools::parse_Rd()and exempts data, class, package and\keyword{internal}topics, so its verdict no longer depends on the R version.print_cat_usagereports unsuppressable console output only from a function that also returns a value, and treats a verbosity gate as the guard rather than any enclosingif,fororwhile(#10, thanks @january3).
Understands more of R
checktor reads far more of the ways R is actually written, so a clean run reflects the code you wrote.
NAMESPACEis parsed with R’s ownbase::parseNamespaceFile(), so a multi-lineexport()block, anexportPattern(), and a method under a quoted non-syntactic generic such asS3method("[", foo)all read correctly. An=assignment is read as an assignment, and a classic"print.foo" <- function(x)definition, whose name parses as aSTR_CONST, is visible to every name-based exemption.An S4
setMethod("show", ...)is an output method wherecat()is the required idiom,app$cat(...)is a method call rather thanbase::cat, and a verbosity flag namedmessagescounts as a gate.A
<<-insidelocal(),setRefClass()orR6Class()binds in that scope rather than.GlobalEnv, a call in a default argument is scoped to that argument rather than the function body, and only the R chunks of a vignette are parsed, so its prose stays prose.options()andpar()both read and write, and only a named argument makes the call a write, sopar("usr")[3]and a package’s ownreset_options()stay clean. A restore factored into its own helper and registered withon.exit(restore_par(op))is recognised as the restore it is. A package’s own namespaced option such asoptions(datatable.verbose = ...)is its own state, and asetwd()oroptions()inside acallrsubprocess cannot reach the calling session. ASys.setenv()setter that captures the prior state and hands it back honours the same restore contract.file_operationsproves where a write lands, sowriteLines(x, "out.csv")is reported,writeLines(x, out_file)is trusted to the caller who passed the path, and a formal that defaults into~is still caught.if (require("pkgB"))and roxygen’s@examplesIfboth count as the conditional-Suggests guard in an example, whileinteractive()does not, because it does not make the package available. Asystem()call inside an OS branch is the platform check the fix asks for, and aninstall.packages()behind a consent prompt is consent.set.seed(123)insideif (FALSE)cannot reach the RNG, andTorFinsidequote(),expression()orsubstitute()are language tokens rather than logicals.commented_examplesreports only an\examples{}block commented out entirely, so a prose comment beside working code is left alone (#9, thanks @TanguyBarthelemy).example_structureaccepts a database, a prompt or a Shiny reactive context as a reason for\dontrun{}, and apath/to/...placeholder the same way. An install or a launcher call is not among them, since CRAN asks forif (interactive())there rather than for\dontrun{}.library_in_pkgexempts code sent to a parallel worker, whose search path starts empty.software_namescatches the R-package and software-product names CRAN asks to see quoted, along withWebAssembly, and recognisesWASM,webRandShinylivewhen quoted. Programming-language and markup names moved tolanguage_names, and a package can add its own withConfig/checktor/software_names.Smaller sharpenings round this out.
description_quoted_quoteslooks only for a recognised software name rather than scare-quoted jargon,description_lengthcounts words,description_starts_withgained its initial-capital rule,acronymsno longer reportsCMD, andurlsnames the offending URL while skipping fenced code and\verb{}spans.
Bug fixes
health_report()reports the CRAN policy findings. It skipped that panel entirely, so the citable rejections were missing from every report, and the text and HTML formats carried no findings at all. Every format now lists each failing check, and says when the sections include advisory findings that the headline total leaves out.A treatment line renders its markup instead of printing braces. The report showed
{.code message()}on screen, because the treatment reachedclias a value rather than as part of the format string.package_sizemeasures what CRAN actually limits. It honours a bare directory entry in.Rbuildignore, such as the^docs$a pkgdown package uses, testing each file’s ancestor directories as R does, so a pkgdowndocs/or a build directory left beside your sources no longer counts. It also estimates the gzipped tarball rather than summing the files on disk, which over-reported any package whose bulk is compressible text.issues()keeps the file and line of a finding that carries a label. Only the plainfile.R:12form used to parse, so a finding such asa.R:3 (otherpkg:::helper)or one from an example lost its location and could not be pointed at.library_in_pkgno longer reports a method that happens to be namedlibraryorrequire. An object calling its ownapi$library()was read as a call to the base function, which made the check awkward for packages built on reference classes.title_lengthtreats the width a package listing may truncate to as a width rather than a limit, so aTitlethat exactly fills it is no longer reported. It shows in full, and only a longer one loses its tail. The message now says how much would be cut instead of only that the title is long.mean(x, na.rm = T), the most common bareTin R, is now reported. An argument name parses asSYMBOL_SUBrather thanSYMBOL, so a guard meant to skipf(T = 1)was skipping the argument value too.prescribe()surfaces every failed check. It previously walked only the curated treatment list, so a check could fail andprescribe()would say nothing (#4, thanks @january3). Its output no longer shows raw markup either.print_cat_usageno longer reportscat()inside S3print.*andformat.*methods, where it is the required idiom and base R’s ownprint.default()uses it (#6, thanks @jhelvy).The
acronymscheck treatsprincipal component analysis (PCA)andPCA (principal component analysis)alike as explained, and reads a line-wrapped gloss (#5, thanks @january3). A gloss whose expansion is a quoted software name counts too, so writing'WebAssembly' (WASM)assoftware_namesasks satisfies both checks at once.example_diagnose_scenario()no longer prints the temporary package path, keeping machine-specific paths out of help pages.
Documentation and website
Two new vignettes explain where the rules come from (#8, thanks @TanguyBarthelemy). Where the Checks Come From maps every check to the CRAN Repository Policy or Writing R Extensions section it rests on, and to the CRAN Cookbook recipe where the authority is a convention rather than a rule. What R CMD check Checks walks through every step
R CMD checkperforms, so the line between the standard checks and checktor’s is clear.Every check’s help page gained a Source section naming the rule behind it, a CRAN policy clause, a Writing R Extensions section, a CRAN Cookbook recipe, or an honest note that no rule applies, with a link wherever one exists.
The original three vignettes gained figures. There is a coverage map of what
R CMD check,lintrandchecktoreach catch, a view of the three data frames the accessors return,checkup()running at three latencies in CI, and, for Writing Your Own Checks, the road from source to finding alongside the XPath axes around aSYMBOL_FUNCTION_CALLanchor.The pkgdown site picked up a theme drawn from the package logo, with a light and dark toggle in the navbar.
checktor 0.1.0
CRAN release: 2026-07-02
- Initial release.
- Adds
checktor()as the top-level orchestrator, running five categories of diagnostics (code, DESCRIPTION, documentation, general, CRAN policy) against an R package directory. - Adds the
checkup()boolean wrapper for CI use,prescribe()for treatment recommendations, andhealth_report()for Markdown / HTML / text reports. - All code-side diagnostics run XPath queries against the parsed AST via
xmlparsedata+xml2. Documentation-side checks walk.Rdfiles viatools::parse_Rd(). DESCRIPTION is parsed withbase::read.dcf(). - Added result accessors so you no longer navigate nested lists:
issues()(per-issue table),tidy()(per-check table),summary()(per-category), pluspassed(),is_healthy(),n_issues(),n_failed_checks(), andfailed_checks().as.data.frame()on a result is equivalent totidy(). - Expanded the CRAN-submission diagnostics with additional heuristics:
- General: flags a missing
NEWSfile (diagnose_news_file()) andREADMErelative links whose target is missing or excluded by.Rbuildignoreand so absent from the built tarball (diagnose_readme_relative_links()).diagnose_cran_comments_file()is also provided but, since acran-comments.mdis a workflow convention rather than a CRAN requirement, it is opt-in and not part of the defaultchecktor()run. - DESCRIPTION: flags
Titlefields of 65 or more characters, single-quoted function names inTitle/Description(quotes are for software names), and over-capitalized small words in theTitle. - Documentation: flags exported functions whose
.Rdlacks an\examplessection (diagnose_missing_examples()) and examples that use a Suggested package without arequireNamespace()/@examplesIfguard (diagnose_suggested_in_examples()).
- General: flags a missing