···55\alias{bootstrapper-package}
66\title{bootstrapper: Opinionated R Package Quickstart}
77\description{
88-Quickly start new R packages, adding some opinionated default GHA, suggested extensions, etc.
88+Bootstrap new R packages with strongly opinionated defaults. Creates the package scaffold, wires up tests, README and NEWS, configures GitHub Actions and Dependabot, adds Air/Jarl setup, and drop in a default AGENTS.md for building R packages.
99}
1010\seealso{
1111Useful links:
+14
man/setup_agents.Rd
···11+% Generated by roxygen2: do not edit by hand
22+% Please edit documentation in R/bootstrapper.R
33+\name{setup_agents}
44+\alias{setup_agents}
55+\title{Configure AGENTS Defaults}
66+\usage{
77+setup_agents()
88+}
99+\value{
1010+Invisibly returns \code{NULL}.
1111+}
1212+\description{
1313+Copies an opinionated, concise AGENTS.md for R package development.
1414+}
+14
man/setup_dependabot.Rd
···11+% Generated by roxygen2: do not edit by hand
22+% Please edit documentation in R/bootstrapper.R
33+\name{setup_dependabot}
44+\alias{setup_dependabot}
55+\title{Configure Dependabot Defaults}
66+\usage{
77+setup_dependabot()
88+}
99+\value{
1010+Invisibly returns \code{NULL}.
1111+}
1212+\description{
1313+Writes a default Dependabot configuration for GitHub Actions.
1414+}
+15
man/setup_gha.Rd
···11+% Generated by roxygen2: do not edit by hand
22+% Please edit documentation in R/bootstrapper.R
33+\name{setup_gha}
44+\alias{setup_gha}
55+\title{Configure GitHub Actions Defaults}
66+\usage{
77+setup_gha()
88+}
99+\value{
1010+Invisibly returns \code{NULL}.
1111+}
1212+\description{
1313+Sets up standard GitHub Actions used by this package template and updates
1414+workflow references.
1515+}