Hyperlink shortcut labels in DevSessionUI footer#7259
Open
nickwesselman wants to merge 4 commits intonwesselman/dev-console-shortcutfrom
Open
Hyperlink shortcut labels in DevSessionUI footer#7259nickwesselman wants to merge 4 commits intonwesselman/dev-console-shortcutfrom
nickwesselman wants to merge 4 commits intonwesselman/dev-console-shortcutfrom
Conversation
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Apr 13, 2026
26db21d to
2a7a395
Compare
fe40fdc to
660d519
Compare
6fe15bf to
b2880a1
Compare
660d519 to
880aac9
Compare
4 tasks
880aac9 to
672c0d4
Compare
b2880a1 to
9a408b5
Compare
4 tasks
672c0d4 to
a8b0bbc
Compare
9a408b5 to
5e5ddf6
Compare
5e5ddf6 to
880c5f8
Compare
a8b0bbc to
e126d1d
Compare
When the terminal supports hyperlinks, the shortcut labels (p, c, g) are rendered as clickable OSC 8 links and the separate URL list is hidden. When hyperlinks are not supported, labels render as plain text with the URL list shown below as before. Adds terminalSupportsHyperlinks() to @shopify/cli-kit/node/system and makes boolean check ordering consistent (status.isReady first). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Only hide the URL list when hyperlinked shortcuts are actually rendered (canUseShortcuts && terminalSupportsHyperlinks), not just when the terminal supports hyperlinks. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…terminalSupportsPrompting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
e126d1d to
dbabaf1
Compare
Contributor
Differences in type declarationsWe detected differences in the type declarations generated by Typescript for this branch compared to the baseline ('main' branch). Please, review them to ensure they are backward-compatible. Here are some important things to keep in mind:
New type declarationsWe found no new type declarations in this PR Existing type declarationspackages/cli-kit/dist/public/node/system.d.ts@@ -87,6 +87,12 @@ export declare function exec(command: string, args: string[], options?: ExecOpti
* @returns A Promise resolving after the number of seconds.
*/
export declare function sleep(seconds: number): Promise<void>;
+/**
+ * Check if the terminal supports OSC 8 hyperlinks.
+ *
+ * @returns True if the terminal supports hyperlinks.
+ */
+export declare function terminalSupportsHyperlinks(): boolean;
/**
* Check if the standard input and output streams support prompting.
*
|
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.

WHY are these changes introduced?
Clean up
app devfooter (especially for non-embedded apps) by using hyperlinks when supported.Checklist
pnpm changeset add