feat(core): add built-in app info page#391
Merged
Merged
Conversation
IzumiSy
force-pushed
the
feat/app-info-page
branch
from
July 16, 2026 06:53
05d3b52 to
8bf9820
Compare
interacsean
approved these changes
Jul 16, 2026
IzumiSy
marked this pull request as ready for review
July 16, 2026 07:31
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.
Motivation
We received feedback that applications built on AppShell need a lightweight, built-in way to expose support/debug metadata such as the running AppShell version and app-specific release information.
The main use case is operational support: someone should be able to open a stable built-in page, confirm what app version/build they are looking at, and copy that information without each app having to implement its own screen.
Design Decision
The built-in page is implemented as a reserved internal route at
/__appinfoinstead of an auto-generated module.This keeps the page out of the default sidebar while still letting it behave like a normal page. To make it discoverable, the Command Palette injects it into the Pages list rather than the Actions list, which keeps page-specific commands separate from contextual actions.
App-specific rows are provided through a minimal
appInfo.metadataAPI onAppShell, limited to primitive values so consumers can format complex values themselves before rendering.Screen shot
Page
CommandPalette
Summary
/__appinfopage that shows the app name, AppShell version, and app-defined metadataappInfoprop onAppShelland export the related public types