View source: R/goose_essentials.R
| goose_continuation_prompt | R Documentation |
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.
goose_continuation_prompt(
path = ".",
include_files = TRUE,
include_todos = TRUE,
save_to = NULL
)
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) |
Path to the saved continuation prompt
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.