fix(skills): give the notebook mirror a fallback when the markdown tool is absent - #376
Draft
gewenyu99 wants to merge 1 commit into
Draft
fix(skills): give the notebook mirror a fallback when the markdown tool is absent#376gewenyu99 wants to merge 1 commit into
gewenyu99 wants to merge 1 commit into
Conversation
…ol is absent The integration skills name `notebooks-create-markdown` and tell the agent to use that exact tool with no search. Production MCP exposes only `notebooks-create` (rich-text `content`), so every run burns a discovery turn rediscovering that and improvising a fallback — ~130 runs a day, and it is the likeliest driver of `report` being the top orchestrator failure type. Names both shapes and the markdown-code-block workaround so the agent takes whichever the deployment offers. Correct either way, so it needs no follow-up when the tool lands. Generated-By: PostHog Desktop Task-Id: ecbe6b2f-c266-41d5-be54-272f86314c88
🧙 Wizard CIRun the Wizard CI and test your changes against wizard-workbench example apps by replying with a GitHub comment using one of the following commands: Test all apps:
Test all apps in a directory:
Test an individual app:
Show more apps
Test against a wizard branch:
Add Results will be posted here when complete. |
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.
Stops the notebook mirror wasting a turn when
notebooks-create-markdownisn't in the MCP catalog.The integration skills name that tool and tell the agent to use it verbatim, "no tool search" — but production MCP exposes only
notebooks-create(rich-textcontent). Agents rediscover this every run and improvise a fallback: ~130 runs/day leave a remark about it, and it's the likeliest driver ofreportbeing the top orchestrator failure type (24 runs/7d). This names both shapes and the markdown-code-block workaround, so the agent takes whichever the deployment offers — correct either way, no follow-up needed when the tool lands. Theaudit/events-auditskills already have an explicit "log one line and skip" path, so they're left alone.Created with PostHog Desktop