Preview the connections.list item in the connection edit sheet - #1746
Merged
RhysSullivan merged 2 commits intoAug 28, 2026
Merged
Conversation
The "What agents see" preview rendered a `- \`<prefix>\` — <description>` inventory line. That line left the execute description in UsefulSoftwareCo#1230, when the inventory was slimmed to bare integration slugs, so the preview showed text no agent reads. The account label was also marked display-only, but `connections.list` returns it to agents next to the description. Render the `connections.list` item (name, identityLabel, description) in the preview, say in the sheet copy that both fields are agent-visible, and note that the callable name stays fixed at connect time.
Merged
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.
Fixes #1745.
The "What agents see" preview in the connection edit sheet rendered a
- \` —inventory line. That line left theexecutedescription in #1230, when the inventory was slimmed to bare integration slugs, so the preview showed text no agent reads. The account label was also marked "Display-only", butconnections.listreturnsidentityLabelto agents next todescription`.connections.listitem for the connection:{ name: "…", identityLabel: "…", description: "…", ... }, in the same shape the integration sheet uses. The label field updates it live.connections.list, and that the callable name stays as it was at connect time (saved code calls that path, so it must not follow a rename).Connection.identityLabel/Connection.descriptiondoc comments in@executor-js/sdkdescribe the current surface instead of the removed inventory line.Verified with
bun run typecheck(react),bun run lint, andbun run format:check. UI-only copy and preview change; no behavior change on the server.