From 9e8a7be6f7d0b64e6affc5ff41260336e4c48fa9 Mon Sep 17 00:00:00 2001 From: Emma Youndtsmith <90283317+emma-squared@users.noreply.github.com> Date: Wed, 21 May 2025 17:15:06 -0500 Subject: [PATCH] Docs: recipe explain flag in CLI commands (#2624) --- documentation/docs/guides/goose-cli-commands.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/documentation/docs/guides/goose-cli-commands.md b/documentation/docs/guides/goose-cli-commands.md index 4179a91fff..19caf20d23 100644 --- a/documentation/docs/guides/goose-cli-commands.md +++ b/documentation/docs/guides/goose-cli-commands.md @@ -260,6 +260,7 @@ Execute commands from an instruction file or stdin. Check out the [full guide](/ - **`--with-extension `**: Add stdio extensions (can be used multiple times in the same command) - **`--with-builtin `**: Add builtin extensions by name (e.g., 'developer' or multiple: 'developer,github') - **`--debug`**: Output complete tool responses, detailed parameter values, and full file paths +- **`--explain`**: Show a recipe's title, description, and parameters. **Usage:** @@ -281,6 +282,8 @@ goose run --recipe recipe_no_prompt.yaml #Load a recipe in debug mode goose run --recipe recipe.yaml --debug +#Show recipe details +goose run --recipe recipe.yaml --explain ``` ---