Zed
A fast, collaborative code editor.
- Schemes
zed:- Universal links
zed.dev
Links
- Open the agent panel with a prompt
zed://agent?prompt={prompt} - Open an extension
zed://extension/{extensionId} - Clone a repository
zed://git/clone?repo={repoUrl} - Open a commit
zed://git/commit/{sha}?repo={path} - Share a skill
zed://skill?data={data} - Open a file
zed://file{path} - Open a settings page
zed://settings/{settingPath} - Open a remote project over SSH
zed://ssh/{user}@{host}:{port}/{path}
Zed's deep links are undocumented but real, and they reach most of the editor: the agent panel, a file, a remote host over SSH, an extension, a skill, git clone and commit views, and settings.
One encoding quirk matters. Zed reads query strings as form data, so + is a space and a
literal + has to be %2B. Most schemes here want %20. Zed accepts either.
zed:// and zed://open just focus the app. If a link does nothing at all, the scheme may not
be registered with your OS yet.