docs(scripting): match protocol names to the Editor and list the missing ones - #883
Open
neurowave wants to merge 4 commits into
Open
docs(scripting): match protocol names to the Editor and list the missing ones#883neurowave wants to merge 4 commits into
neurowave wants to merge 4 commits into
Conversation
…ing ones The type picker labels three protocols differently from the docs: the blank protocol is Blank rather than Util, and the listener action and transition condition entries have no trailing Script. The protocols overview also listed 7 of the 10 available protocols, omitting the blank protocol (which already has a page in the sidebar) and both file format protocols.
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
Match the terse imperative form the existing entries use.
The overview and the create step now say Blank, matching the picker, so the page title and headings should not still say Util. Other protocol pages are titled '<Protocol> Scripts' after the picker label.
unit-testing.mdx still referred to Util Scripts after the protocol page was retitled.
lancesnider
requested changes
Aug 23, 2026
| --- | ||
| title: "Unit Testing" | ||
| description: "Write and run unit tests for your Util Scripts using Test scripts." | ||
| description: "Write and run unit tests for your Blank Scripts using Test scripts." |
Collaborator
There was a problem hiding this comment.
This doesn't really make sense. You don't write test for blank scripts.
|
|
||
| ## Creating a Listener Action Script | ||
|
|
||
| [Create a new script](/scripting/creating-scripts) and select **Listener Action Script** as the type. |
Collaborator
There was a problem hiding this comment.
In the editor they are called Listener Action Scripts
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.
Checked the protocols overview and each protocol page against
ScriptProtocoland the labels the type picker renders.Names that don't match the picker
"Util" doesn't appear anywhere in the editor. The label comes from
ScriptProtocol.utility.label, which is'Blank', so someone following the page looks for a menu entry that isn't there.Missing from the overview list
The list had 7 of the 10 protocols available today:
Both file format protocols get a one-line entry rather than a page, since neither has one yet. Verified user-reachable: the create menu renders every
availableProtocols()entry bytype.label.Interpolator is excluded, still behind
ENABLE_SCRIPTED_INTERPOLATORS(prod: enabledForEveryone: false).availableProtocols()filters exactly that one flag and nothing else.mint broken-linkspasses.