From c45ce49430c7091dde9833ab0e0ac32aa2ec1df2 Mon Sep 17 00:00:00 2001 From: Mohammad Shahzeb Alam Date: Wed, 29 Oct 2025 20:33:47 +0530 Subject: [PATCH] Docs quick tip slot4 (#4948) Signed-off-by: Mohammad Shahzeb Alam Co-authored-by: taniandjerry <126204004+taniandjerry@users.noreply.github.com> --- documentation/docs/guides/tips.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/documentation/docs/guides/tips.md b/documentation/docs/guides/tips.md index 5b4c06bc46..22622f0529 100644 --- a/documentation/docs/guides/tips.md +++ b/documentation/docs/guides/tips.md @@ -47,8 +47,11 @@ You don’t need to get it right the first time. Iterating on prompts and tools ### Keep Goose updated Regularly [update](/docs/guides/updating-goose) Goose to benefit from the latest features, bug fixes, and performance improvements. -### Keep Recipes Idempotent -Write "[recipes](/docs/guides/recipes/session-recipes)" so they can run multiple times without causing unintended side effects. This ensures safer re-runs and easier debugging in automated workflows. +### Pair Two Models to Save Money +Use [lead/worker model](/docs/tutorials/lead-worker/) to have goose use a "lead" model for early planning before handing the task to a lower-cost "worker" model for execution. -### Add Clear Logging -Include informative log messages in your recipes for each major step. It makes debugging and troubleshooting much faster when something fails. +### Make Recipes Safe to Re-run +Write [recipes](/docs/guides/recipes/session-recipes) that check your current state before acting, so they can be run multiple times without causing any errors or duplication. + +### Add Logging to Recipes +Inlcude informative log messages in your recipes for each major step to make debugging and troubleshooting easier should something fail.