docs: document summon extension requirement for delegate and load tools#9231
Merged
Conversation
When a recipe specifies an explicit extensions block, default platform extensions like summon are not included. This means the delegate and load tools silently disappear. Add notes to the subagents guide, recipe reference, and subrecipes guide explaining the requirement and the auto-injection behavior for sub_recipes. Fixes #7570 Signed-off-by: Douwe Osinga <douwe@squareup.com>
1 task
Contributor
|
Documentation preview deployed: https://pr-9231.goose-pr-previews-poc.pages.dev |
tlongwell-block
approved these changes
May 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When a recipe specifies an explicit
extensionsblock, default platform extensions likesummonare not included. This means thedelegateandloadtools silently disappear.This adds notes to three docs pages:
subagents.mdx) — note under Extension Control explaining that recipes with explicitextensionsmust includesummonrecipe-reference.md) — note after Extension Types explaining the behavior and showing the required YAMLsubrecipes.md) — note thatsub_recipesauto-injectssummonThe subagents tutorial was not updated since it uses natural language delegation in regular sessions where
summonis enabled by default.Fixes #7570