chore(site): allow devin: URI scheme for Devin Desktop deep links - #28214
Merged
Conversation
bpmct
approved these changes
Aug 18, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary
coder/registry#1050adds a newdevin-desktopmodule that opens Devin Desktop via adevin://deep link (Devin Desktop is Cognition's June 2, 2026 rebrand of Windsurf). Coder's frontend gates which external app URI schemes it will open with a session token,ALLOWED_EXTERNAL_APP_PROTOCOLSinsite/src/modules/apps/apps.ts.devin:isn't in that list yet, so without this change the "Open" button on that app would return the raw URL with the$SESSION_TOKENplaceholder unsubstituted, an unusable link.Change
Add
"devin:"toALLOWED_EXTERNAL_APP_PROTOCOLS, next to the existing"windsurf:"entry.Validation
pnpm exec biome check --error-on-warnings src/modules/apps/apps.ts: clean.pnpm exec vitest run src/modules/apps/apps.test.ts: 21/21 pass.make pre-commit: passes.Sequencing
coder/registry#1050should not be merged until this lands in a released Coder version, otherwise thedevin-desktopmodule's deep link would be broken on deployments running an older Coder version. Tracked together in REG-77 / DEVEX-777.