Install or update Orbit Code
Choose your editor or the desktop app. Versions below are checked against GitHub, the Marketplace, Open VSX and npm every time the site builds.
What you need
Claude Code, signed in
For the live session. Without it you still get the 3D graph of your code.
VS Code 1.100 or newer
Or an editor built on it, such as Cursor, Windsurf or VSCodium. The desktop app needs no editor.
git
For diffs in the file card. The graph works without it.
Pick where to install
One command installs and updates
macOS and Linux
curl -fsSL https://orbit-code.imshaikot.com/install.sh | shWindows PowerShell
irm https://orbit-code.imshaikot.com/install.ps1 | iexFinds every VS Code based editor on your machine and installs the newest build. Run it again whenever you want to update.
Orbit Code for VS Code
Marketplace 0.2.1
Version 0.2.1 on the Visual Studio Marketplace, updated Sep 14, 2026. Needs VS Code 1.100.0 or newer.
Install Claude Code
Sign in once in a terminal. Orbit starts your own claude CLI, so skip this if you only want the graph.
Claude Code docsInstall the extension
Search for Orbit Code in the Extensions view, open the listing in VS Code, or run this in a terminal.
Open in VS Codecode --install-extension imshaikot.orbit-codeOpen Orbit
Reload the window, then run Orbit Code: Open from the Command Palette or click the Orbit icon in the activity bar.
Updating
VS Code keeps Marketplace extensions up to date on its own, so there is nothing to do.
Cursor, Windsurf and VSCodium
Release 0.2.1
These editors install from Open VSX, where Orbit Code is not listed yet. The install script puts version 0.2.1 into every one of them it finds.
Install Claude Code
Sign in once in a terminal. Orbit starts your own claude CLI, so skip this if you only want the graph.
Claude Code docsInstall the extension
To install into one editor only, add its name at the end: sh -s -- --editor cursor.
macOS and Linux
curl -fsSL https://orbit-code.imshaikot.com/install.sh | shOr download orbit-code-0.2.1.vsix and use Install from VSIXWindows PowerShell
irm https://orbit-code.imshaikot.com/install.ps1 | iexOpen Orbit
Reload the window, then run Orbit Code: Open from the Command Palette or click the Orbit icon in the activity bar.
Updating
Run the same command again to install the newest version over the old one.
Orbit Code desktop app
From source
A window of its own for any folder, on macOS, Windows and Linux, with no editor needed. There is no packaged build yet, so run it from source for now.
Install Claude Code
Sign in once in a terminal. Orbit starts your own claude CLI, so skip this if you only want the graph.
Claude Code docsClone and install
Needs git, Node 22 or newer and Yarn 4 through Corepack.
git clone https://github.com/imshaikot/orbit-code.gitcd orbit-code && corepack enable && yarn installOpen a folder
Builds the app and opens your project in it.
yarn desktop --folder /path/to/your/project
Updating
Pull the newest code, then start it again.
git pull && yarn install && yarn desktop --folder /path/to/your/projectBuild the extension yourself
Always available
Build the newest code on the main branch into a .vsix and install it in VS Code. Needs git, Node 22 or newer and Yarn 4 through Corepack.
Clone and install
git clone https://github.com/imshaikot/orbit-code.gitcd orbit-code && corepack enable && yarn installPackage and install
Builds a production .vsix and installs it with the code command.
yarn install-localOpen Orbit
Reload the window, then run Orbit Code: Open from the Command Palette or click the Orbit icon in the activity bar.
Updating
Pull, then package and install again.
git pull && yarn install && yarn install-localThe indexer on its own
From source
Index any repository into the dependency graph JSON that Orbit draws. It is not on npm yet, so run it from a clone.
Clone and build
git clone https://github.com/imshaikot/orbit-code.gitcd orbit-code && corepack enable && yarn installyarn buildIndex a folder
yarn index /path/to/project --out graph.json
Updating
Pull and build again.
git pull && yarn install && yarn buildChecked Sep 14, 2026.