From baaf49e9fd2cc8236ddcb9de06e412be3a815512 Mon Sep 17 00:00:00 2001 From: pefontana Date: Wed, 15 Apr 2026 16:17:47 -0300 Subject: [PATCH] docs(delegate): remove default_toolsets from example config and docs Matches the default-config removal in the preceding commit. default_toolsets was documented for users to set but was never actually read at runtime, so showing it in the example config and the delegation user guide was misleading. No deprecation note is added: the key was always a no-op, so users who copied it from the example continue to see no behavior change. Their config.yaml still parses; the key is just silently unused, same as before. Part of Initiative 2 / M0.5. --- cli-config.yaml.example | 1 - website/docs/user-guide/features/delegation.md | 1 - 2 files changed, 2 deletions(-) diff --git a/cli-config.yaml.example b/cli-config.yaml.example index a4a5ffda7..8598ea56b 100644 --- a/cli-config.yaml.example +++ b/cli-config.yaml.example @@ -773,7 +773,6 @@ code_execution: # Supports single tasks and batch mode (up to 3 parallel). delegation: max_iterations: 50 # Max tool-calling turns per child (default: 50) - default_toolsets: ["terminal", "file", "web"] # Default toolsets for subagents # model: "google/gemini-3-flash-preview" # Override model for subagents (empty = inherit parent) # provider: "openrouter" # Override provider for subagents (empty = inherit parent) # # Resolves full credentials (base_url, api_key) automatically. diff --git a/website/docs/user-guide/features/delegation.md b/website/docs/user-guide/features/delegation.md index 2e22bada3..96299cc24 100644 --- a/website/docs/user-guide/features/delegation.md +++ b/website/docs/user-guide/features/delegation.md @@ -206,7 +206,6 @@ Delegation has a **depth limit of 2** — a parent (depth 0) can spawn children # In ~/.hermes/config.yaml delegation: max_iterations: 50 # Max turns per child (default: 50) - default_toolsets: ["terminal", "file", "web"] # Default toolsets model: "google/gemini-3-flash-preview" # Optional provider/model override provider: "openrouter" # Optional built-in provider