You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "Open in Coder" deeplink (/templates/<name>/workspace) supports pre-filling individual parameters via param.*, but there's no way to reference a preset by name.
This means sharing a deeplink for a preset requires manually encoding every parameter into the URL. These URLs are long, hard to maintain, and drift out of sync when the preset is updated in the template.
The frontend already fetches presets for the creation page (CreateWorkspacePage.tsx#L80) — this would just look up the matching preset by name and apply its parameters as autofill values. The other URL query params are parsed nearby (L60-L63, L410-L434). Should compose with existing query params (mode=auto, param.* overrides, disable_params).
This discussion was drafted with assistance from Claude Code.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Problem
The "Open in Coder" deeplink (
/templates/<name>/workspace) supports pre-filling individual parameters viaparam.*, but there's no way to reference a preset by name.This means sharing a deeplink for a preset requires manually encoding every parameter into the URL. These URLs are long, hard to maintain, and drift out of sync when the preset is updated in the template.
Proposal
The frontend already fetches presets for the creation page (
CreateWorkspacePage.tsx#L80) — this would just look up the matching preset by name and apply its parameters as autofill values. The other URL query params are parsed nearby (L60-L63, L410-L434). Should compose with existing query params (mode=auto,param.*overrides,disable_params).This discussion was drafted with assistance from Claude Code.
All reactions