goose_continuation_prompt: Generate Continuation Prompt for Next Session

View source: R/goose_essentials.R

goose_continuation_promptR Documentation

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
)

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)

Value

Path to the saved continuation prompt

Examples

## Not run: 
# 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")

## End(Not run)


gooseR documentation built on Feb. 6, 2026, 5:07 p.m.