Learn R Programming

gooseR (version 0.1.2)

goose_continuation_prompt: Generate Continuation Prompt for Next Session

Description

Reviews current work and generates a comprehensive continuation prompt with progress tracking, file mapping, and next steps for seamless handoff to the next working session.

Usage

goose_continuation_prompt(
  path = ".",
  include_files = TRUE,
  include_todos = TRUE,
  save_to = NULL
)

Value

Path to the saved continuation prompt

Arguments

path

Path to review (default: current working directory)

include_files

Whether to include file listing (default: TRUE)

include_todos

Whether to scan for TODO comments (default: TRUE)

save_to

Path to save the continuation prompt (auto-generated if NULL)

Examples

Run this code
if (FALSE) {
# Generate continuation prompt for current project
goose_continuation_prompt()

# Generate without file listing
goose_continuation_prompt(include_files = FALSE)

# Save to specific location
goose_continuation_prompt(save_to = "project_docs/continuation.md")
}

Run the code above in your browser using DataLab