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
Fix Conductor deep link URL: it is conductor://prompt=… not conductor://new?prompt=…
The previous default URL template was a best-guess derived from the
Conductor changelog (v0.36.4 mentions "prompt and path parameters" for
the Linear integration). It turns out the actual working format is
structurally unusual:
conductor://prompt=<percent-encoded text>
No host, no `?` — the `prompt=…` sits directly after `://`. This was
discovered the hard way in slack-flow: an earlier Claude session there
tested ~25 candidate formats (conductor://new?prompt=,
conductor://open?prompt=, conductor://workspace?prompt=, etc.) before
landing on this one. The committed slack-flow ConductorBridge.swift
uses exactly this format.
Changes:
- DEFAULT_SETTINGS.urlConfig.template flipped to conductor://prompt={prompt}
- mergeWithDefaults() migrates any stored URL on a known-broken list to
the new default, so users who already saved settings with the
previous bad default get auto-fixed on next load (no manual reset).
- conductor-url tests updated to assert the new format.
- Two new storage tests covering migration + preservation of custom
templates.
- README documents the unusual shape with an explicit "don't be fooled"
note.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
0 commit comments