Core Features
Deep Links
Open Conductor and trigger actions via conductor:// URLs
Conductor registers the conductor:// URL scheme. Clicking a deep link (or opening it via open conductor://...) will activate Conductor and trigger the corresponding action.
Supported links
Prompt
conductor://prompt=<encoded prompt>Creates a new workspace in the first available repository with the given prompt pre-filled.
Prompt + repository path
conductor://prompt=<encoded prompt>&path=<repo path>Same as above, but targets the repository at the given path. Falls back to the first repo if the path doesn't match.
Linear issue
conductor://linear_id=<issue ID>&prompt=<optional prompt>Fetches the Linear issue, auto-detects the matching repository, and either navigates to an existing workspace on that issue's branch or creates a new one. Requires a connected Linear account.
Async plan
conductor://async?repo=<repo name>&plan=<base64 plan>Creates a new workspace with a base64-encoded plan attached as a markdown file. The repo parameter is optional and defaults to the first repository.
Notes
- All parameter values should be URL-encoded.
- The generic links (
prompt,path,linear_id) use a flatkey=value&key=valueformat directly afterconductor://, without a hostname or path. - The
asynclink uses standard URL structure with a hostname (conductor://async?...).