From 647ea1deec73bd50ce1f5804c7ba2ce50c1d24b3 Mon Sep 17 00:00:00 2001
From: dianed-square <73617011+dianed-square@users.noreply.github.com>
Date: Mon, 1 Dec 2025 15:10:33 -0800
Subject: [PATCH] docs: promote planning guide (#5934)
---
documentation/docs/guides/config-files.md | 2 +-
documentation/docs/guides/{multi-model => }/creating-plans.md | 2 +-
documentation/docs/guides/environment-variables.md | 4 ++--
documentation/docs/guides/multi-model/index.mdx | 4 ++--
.../docs/guides/sessions/smart-context-management.md | 2 +-
documentation/docs/tutorials/lead-worker.md | 2 +-
.../docs/tutorials/plan-feature-devcontainer-setup.md | 2 +-
documentation/docusaurus.config.ts | 4 ++--
8 files changed, 11 insertions(+), 11 deletions(-)
rename documentation/docs/guides/{multi-model => }/creating-plans.md (99%)
diff --git a/documentation/docs/guides/config-files.md b/documentation/docs/guides/config-files.md
index 010476f6c7..7d0246070f 100644
--- a/documentation/docs/guides/config-files.md
+++ b/documentation/docs/guides/config-files.md
@@ -33,7 +33,7 @@ The following settings can be configured at the root level of your config.yaml f
| `GOOSE_MAX_TURNS` | [Maximum number of turns](/docs/guides/sessions/smart-context-management#maximum-turns) allowed without user input | Integer (e.g., 10, 50, 100) | 1000 | No |
| `GOOSE_LEAD_PROVIDER` | Provider for lead model in [lead/worker mode](/docs/guides/environment-variables#leadworker-model-configuration) | Same as `GOOSE_PROVIDER` options | Falls back to `GOOSE_PROVIDER` | No |
| `GOOSE_LEAD_MODEL` | Lead model for lead/worker mode | Model name | None | No |
-| `GOOSE_PLANNER_PROVIDER` | Provider for [planning mode](/docs/guides/multi-model/creating-plans) | Same as `GOOSE_PROVIDER` options | Falls back to `GOOSE_PROVIDER` | No |
+| `GOOSE_PLANNER_PROVIDER` | Provider for [planning mode](/docs/guides/creating-plans) | Same as `GOOSE_PROVIDER` options | Falls back to `GOOSE_PROVIDER` | No |
| `GOOSE_PLANNER_MODEL` | Model for planning mode | Model name | Falls back to `GOOSE_MODEL` | No |
| `GOOSE_TOOLSHIM` | Enable tool interpretation | true/false | false | No |
| `GOOSE_TOOLSHIM_OLLAMA_MODEL` | Model for tool interpretation | Model name (e.g., "llama3.2") | System default | No |
diff --git a/documentation/docs/guides/multi-model/creating-plans.md b/documentation/docs/guides/creating-plans.md
similarity index 99%
rename from documentation/docs/guides/multi-model/creating-plans.md
rename to documentation/docs/guides/creating-plans.md
index 10188458b1..9dce591a6c 100644
--- a/documentation/docs/guides/multi-model/creating-plans.md
+++ b/documentation/docs/guides/creating-plans.md
@@ -1,5 +1,5 @@
---
-sidebar_position: 17
+sidebar_position: 87
title: Creating Plans Before Working
sidebar_label: Creating Plans
---
diff --git a/documentation/docs/guides/environment-variables.md b/documentation/docs/guides/environment-variables.md
index 96af6932d9..00c9fa2e4b 100644
--- a/documentation/docs/guides/environment-variables.md
+++ b/documentation/docs/guides/environment-variables.md
@@ -84,7 +84,7 @@ export GOOSE_LEAD_FALLBACK_TURNS=2
### Planning Mode Configuration
-These variables control goose's [planning functionality](/docs/guides/multi-model/creating-plans).
+These variables control goose's [planning functionality](/docs/guides/creating-plans).
| Variable | Purpose | Values | Default |
|----------|---------|---------|---------|
@@ -201,7 +201,7 @@ These variables allow you to override the default context window size (token lim
| `GOOSE_CONTEXT_LIMIT` | Override context limit for the main model | Integer (number of tokens) | Model-specific default or 128,000 |
| `GOOSE_LEAD_CONTEXT_LIMIT` | Override context limit for the lead model in [lead/worker mode](/docs/tutorials/lead-worker) | Integer (number of tokens) | Falls back to `GOOSE_CONTEXT_LIMIT` or model default |
| `GOOSE_WORKER_CONTEXT_LIMIT` | Override context limit for the worker model in lead/worker mode | Integer (number of tokens) | Falls back to `GOOSE_CONTEXT_LIMIT` or model default |
-| `GOOSE_PLANNER_CONTEXT_LIMIT` | Override context limit for the [planner model](/docs/guides/multi-model/creating-plans) | Integer (number of tokens) | Falls back to `GOOSE_CONTEXT_LIMIT` or model default |
+| `GOOSE_PLANNER_CONTEXT_LIMIT` | Override context limit for the [planner model](/docs/guides/creating-plans) | Integer (number of tokens) | Falls back to `GOOSE_CONTEXT_LIMIT` or model default |
**Examples**
diff --git a/documentation/docs/guides/multi-model/index.mdx b/documentation/docs/guides/multi-model/index.mdx
index cd1fa5ee41..8cf61d4b86 100644
--- a/documentation/docs/guides/multi-model/index.mdx
+++ b/documentation/docs/guides/multi-model/index.mdx
@@ -24,8 +24,8 @@ import TabItem from '@theme/TabItem';
/>