[docs] Self-healing documentation fixes from issue analysis - 2026-05-07#30709
Merged
pelikhan merged 1 commit intoMay 7, 2026
Merged
Conversation
Add engine.mcp (tool-timeout, session-timeout) to the Allowed Import Fields list, the Field-Specific Merge Semantics table, and a new "Importing MCP Gateway Settings" section with a worked example. Closes gap introduced by feat: support importing engine.mcp.tool-timeout and session-timeout from shared workflows (#30686). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the imports reference documentation to include support for importing MCP gateway timeout settings via engine.mcp from shared workflows, matching existing parser/schema behavior.
Changes:
- Adds
engine.mcpto the “Allowed Import Fields” list for shared workflows. - Documents merge semantics for imported
engine.mcp.tool-timeout/engine.mcp.session-timeout(consumer override + first-wins across imports). - Adds a new “Importing MCP Gateway Settings” section with a worked example.
Show a summary per file
| File | Description |
|---|---|
| docs/src/content/docs/reference/imports.md | Documents engine.mcp import support, merge semantics, and provides an example for shared timeout configuration. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 1/1 changed files
- Comments generated: 0
Contributor
Author
There was a problem hiding this comment.
🧠 Reviewed using Matt Pocock's skills by Matt Pocock Skills Reviewer · ● 2.9M
This was referenced May 7, 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.
Self-Healing Documentation Fixes
This PR was automatically created by the Daily Documentation Healer workflow.
Gaps Fixed
imports.mdmissingengine.mcpimport support — The feature added in feat commit e409999 (feat: support importing engine.mcp.tool-timeout and session-timeout from shared workflows) was not reflected in the imports reference documentation. Three locations were updated:engine.mcp(without engine identifier) as an importable fieldtool-timeoutandsession-timeoutRoot Cause
DDUw scanned the last 24 hours of merged PRs, but the large squash commit bundles many changesets together, making it harder to detect individual feature additions. The
engine.mcpimport feature was added topkg/parser/import_field_extractor.goand the JSON schema (main_workflow_schema.json) but no corresponding documentation update was included in the commit.💡 DDUw Improvement Suggestions
DDUw Improvement Suggestions
Gap class: New importable frontmatter fields not reflected in
docs/src/content/docs/reference/imports.md.Specific step that failed: Step 4 (Identify Documentation Gaps) — DDUw did not cross-reference the "Allowed Import Fields" list against the JSON schema's
enginefield oneOf variants to detect the new MCP-only engine variant.Suggested improvements:
pkg/parser/schemas/main_workflow_schema.jsonfor anyoneOfvariants under theenginefield definition that are not mentioned indocs/src/content/docs/reference/imports.md.import_field_extractor.goshould trigger a review ofimports.mdto ensure the "Allowed Import Fields" section and "Field-Specific Merge Semantics" table are updated.References: §25467911393