├── .Rbuildignore ├── .claude └── settings.local.json ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── issue_template.md ├── SUPPORT.md └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── pr-commands.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── directory.R ├── doc-helper-cli.R ├── doc-helper-roxygen.R ├── doc-helper-testthat.R ├── helper-add-remove.R ├── helper-class.R ├── helper-package.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── init-addin.R ├── init-helper.R ├── options.R ├── prompt.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── chores.Rproj ├── codecov.yml ├── cran-comments.md ├── inst ├── example.R ├── figs │ ├── addin.gif │ ├── logo.png │ └── logo.psd ├── prompts │ ├── cli-replace.md │ ├── roxygen-prefix.md │ └── testthat-replace.md ├── rstudio │ └── addins.dcf └── template.md ├── man-roxygen └── manual-interface.R ├── man ├── chores-package.Rd ├── cli_helper.Rd ├── directory.Rd ├── dot-init_addin.Rd ├── dot-init_helper.Rd ├── figures │ └── logo.png ├── helper_options.Rd ├── prompt.Rd ├── roxygen_helper.Rd └── testthat_helper.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon.png │ ├── favicon-48x48.png │ ├── favicon.ico │ ├── favicon.svg │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── directory.md │ ├── helper-add-remove.md │ ├── helper-class.md │ ├── helper-init.md │ ├── init-addin.md │ ├── prompt.md │ └── utils.md │ ├── test-directory.R │ ├── test-helper-add-remove.R │ ├── test-helper-class.R │ ├── test-helper-init.R │ ├── test-init-addin.R │ ├── test-prompt-dir │ ├── boop-replace.md │ └── wop-prefix.md │ ├── test-prompt.R │ └── test-utils.R └── vignettes ├── .gitignore ├── chores.Rmd ├── custom.Rmd └── gallery.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/directory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/directory.R -------------------------------------------------------------------------------- /R/doc-helper-cli.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/doc-helper-cli.R -------------------------------------------------------------------------------- /R/doc-helper-roxygen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/doc-helper-roxygen.R -------------------------------------------------------------------------------- /R/doc-helper-testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/doc-helper-testthat.R -------------------------------------------------------------------------------- /R/helper-add-remove.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/helper-add-remove.R -------------------------------------------------------------------------------- /R/helper-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/helper-class.R -------------------------------------------------------------------------------- /R/helper-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/helper-package.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/init-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/init-addin.R -------------------------------------------------------------------------------- /R/init-helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/init-helper.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/options.R -------------------------------------------------------------------------------- /R/prompt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/prompt.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chores.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/chores.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/example.R -------------------------------------------------------------------------------- /inst/figs/addin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/figs/addin.gif -------------------------------------------------------------------------------- /inst/figs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/figs/logo.png -------------------------------------------------------------------------------- /inst/figs/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/figs/logo.psd -------------------------------------------------------------------------------- /inst/prompts/cli-replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/prompts/cli-replace.md -------------------------------------------------------------------------------- /inst/prompts/roxygen-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/prompts/roxygen-prefix.md -------------------------------------------------------------------------------- /inst/prompts/testthat-replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/prompts/testthat-replace.md -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /inst/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/inst/template.md -------------------------------------------------------------------------------- /man-roxygen/manual-interface.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man-roxygen/manual-interface.R -------------------------------------------------------------------------------- /man/chores-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/chores-package.Rd -------------------------------------------------------------------------------- /man/cli_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/cli_helper.Rd -------------------------------------------------------------------------------- /man/directory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/directory.Rd -------------------------------------------------------------------------------- /man/dot-init_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/dot-init_addin.Rd -------------------------------------------------------------------------------- /man/dot-init_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/dot-init_helper.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/helper_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/helper_options.Rd -------------------------------------------------------------------------------- /man/prompt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/prompt.Rd -------------------------------------------------------------------------------- /man/roxygen_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/roxygen_helper.Rd -------------------------------------------------------------------------------- /man/testthat_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/man/testthat_helper.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/favicon-48x48.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/favicon.svg -------------------------------------------------------------------------------- /pkgdown/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/site.webmanifest -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /pkgdown/favicon/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/pkgdown/favicon/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/directory.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/helper-add-remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/helper-add-remove.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/helper-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/helper-class.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/helper-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/helper-init.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/init-addin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/init-addin.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/prompt.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/_snaps/utils.md -------------------------------------------------------------------------------- /tests/testthat/test-directory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-directory.R -------------------------------------------------------------------------------- /tests/testthat/test-helper-add-remove.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-helper-add-remove.R -------------------------------------------------------------------------------- /tests/testthat/test-helper-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-helper-class.R -------------------------------------------------------------------------------- /tests/testthat/test-helper-init.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-helper-init.R -------------------------------------------------------------------------------- /tests/testthat/test-init-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-init-addin.R -------------------------------------------------------------------------------- /tests/testthat/test-prompt-dir/boop-replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-prompt-dir/boop-replace.md -------------------------------------------------------------------------------- /tests/testthat/test-prompt-dir/wop-prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-prompt-dir/wop-prefix.md -------------------------------------------------------------------------------- /tests/testthat/test-prompt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-prompt.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/chores.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/vignettes/chores.Rmd -------------------------------------------------------------------------------- /vignettes/custom.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/vignettes/custom.Rmd -------------------------------------------------------------------------------- /vignettes/gallery.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonpcouch/chores/HEAD/vignettes/gallery.Rmd --------------------------------------------------------------------------------