Complete automated R data package creation pipeline. Runs all steps from setup to final build in sequence. For more granular control, use individual wrapper functions: setup(), process(), collect(), generate(), and build().
Examples
if (FALSE) { # \dontrun{
# Full pipeline in one call, prompting for metadata interactively.
fairenough(base_path = "path/to/my-data-package")
# With an LLM-backed chat for variable descriptions.
chat <- ellmer::chat_openai(model = "gpt-4o-mini")
fairenough(base_path = "path/to/my-data-package", chat = chat)
} # }