{
  "checkedAt": "2026-09-14T19:25:47.592Z",
  "version": "0.2.1",
  "script": {
    "unix": "curl -fsSL https://orbit-code.imshaikot.com/install.sh | sh",
    "windows": "irm https://orbit-code.imshaikot.com/install.ps1 | iex"
  },
  "channels": [
    {
      "id": "vscode",
      "tab": "VS Code",
      "title": "Orbit Code for VS Code",
      "summary": "Version 0.2.1 on the Visual Studio Marketplace, updated Sep 14, 2026. Needs VS Code 1.100.0 or newer.",
      "status": {
        "available": true,
        "label": "Marketplace 0.2.1"
      },
      "steps": [
        {
          "title": "Install Claude Code",
          "body": "Sign in once in a terminal. Orbit starts your own claude CLI, so skip this if you only want the graph.",
          "link": {
            "label": "Claude Code docs",
            "href": "https://docs.claude.com/en/docs/claude-code"
          }
        },
        {
          "title": "Install the extension",
          "body": "Search for Orbit Code in the Extensions view, open the listing in VS Code, or run this in a terminal.",
          "commands": [
            {
              "command": "code --install-extension imshaikot.orbit-code"
            }
          ],
          "link": {
            "label": "Open in VS Code",
            "href": "vscode:extension/imshaikot.orbit-code"
          }
        },
        {
          "title": "Open Orbit",
          "body": "Reload the window, then run Orbit Code: Open from the Command Palette or click the Orbit icon in the activity bar."
        }
      ],
      "update": {
        "body": "VS Code keeps Marketplace extensions up to date on its own, so there is nothing to do."
      },
      "links": [
        {
          "label": "Marketplace listing",
          "href": "https://marketplace.visualstudio.com/items?itemName=imshaikot.orbit-code"
        },
        {
          "label": "Extension guide",
          "href": "/docs/vscode/"
        }
      ]
    },
    {
      "id": "forks",
      "tab": "Cursor and others",
      "title": "Cursor, Windsurf and VSCodium",
      "summary": "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.",
      "status": {
        "available": true,
        "label": "Release 0.2.1"
      },
      "steps": [
        {
          "title": "Install Claude Code",
          "body": "Sign in once in a terminal. Orbit starts your own claude CLI, so skip this if you only want the graph.",
          "link": {
            "label": "Claude Code docs",
            "href": "https://docs.claude.com/en/docs/claude-code"
          }
        },
        {
          "title": "Install the extension",
          "body": "To install into one editor only, add its name at the end: sh -s -- --editor cursor.",
          "commands": [
            {
              "label": "macOS and Linux",
              "command": "curl -fsSL https://orbit-code.imshaikot.com/install.sh | sh",
              "platform": "unix"
            },
            {
              "label": "Windows PowerShell",
              "command": "irm https://orbit-code.imshaikot.com/install.ps1 | iex",
              "platform": "windows"
            }
          ],
          "link": {
            "label": "Or download orbit-code-0.2.1.vsix and use Install from VSIX",
            "href": "https://github.com/imshaikot/orbit-code/releases/download/v0.2.1/orbit-code-0.2.1.vsix"
          }
        },
        {
          "title": "Open Orbit",
          "body": "Reload the window, then run Orbit Code: Open from the Command Palette or click the Orbit icon in the activity bar."
        }
      ],
      "update": {
        "body": "Run the same command again to install the newest version over the old one."
      },
      "links": [
        {
          "label": "Releases on GitHub",
          "href": "https://github.com/imshaikot/orbit-code/releases"
        }
      ]
    },
    {
      "id": "desktop",
      "tab": "Desktop app",
      "title": "Orbit Code desktop app",
      "summary": "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.",
      "status": {
        "available": false,
        "label": "From source"
      },
      "steps": [
        {
          "title": "Install Claude Code",
          "body": "Sign in once in a terminal. Orbit starts your own claude CLI, so skip this if you only want the graph.",
          "link": {
            "label": "Claude Code docs",
            "href": "https://docs.claude.com/en/docs/claude-code"
          }
        },
        {
          "title": "Clone and install",
          "body": "Needs git, Node 22 or newer and Yarn 4 through Corepack.",
          "commands": [
            {
              "command": "git clone https://github.com/imshaikot/orbit-code.git"
            },
            {
              "command": "cd orbit-code && corepack enable && yarn install"
            }
          ]
        },
        {
          "title": "Open a folder",
          "body": "Builds the app and opens your project in it.",
          "commands": [
            {
              "command": "yarn desktop --folder /path/to/your/project"
            }
          ]
        }
      ],
      "update": {
        "body": "Pull the newest code, then start it again.",
        "commands": [
          {
            "command": "git pull && yarn install && yarn desktop --folder /path/to/your/project"
          }
        ]
      },
      "links": [
        {
          "label": "Releases on GitHub",
          "href": "https://github.com/imshaikot/orbit-code/releases"
        },
        {
          "label": "Desktop guide",
          "href": "/docs/desktop/"
        }
      ]
    },
    {
      "id": "source",
      "tab": "From source",
      "title": "Build the extension yourself",
      "summary": "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.",
      "status": {
        "available": true,
        "label": "Always available"
      },
      "steps": [
        {
          "title": "Clone and install",
          "commands": [
            {
              "command": "git clone https://github.com/imshaikot/orbit-code.git"
            },
            {
              "command": "cd orbit-code && corepack enable && yarn install"
            }
          ]
        },
        {
          "title": "Package and install",
          "body": "Builds a production .vsix and installs it with the code command.",
          "commands": [
            {
              "command": "yarn install-local"
            }
          ]
        },
        {
          "title": "Open Orbit",
          "body": "Reload the window, then run Orbit Code: Open from the Command Palette or click the Orbit icon in the activity bar."
        }
      ],
      "update": {
        "body": "Pull, then package and install again.",
        "commands": [
          {
            "command": "git pull && yarn install && yarn install-local"
          }
        ]
      },
      "links": [
        {
          "label": "Contributing guide",
          "href": "/docs/contributing/"
        },
        {
          "label": "Repository",
          "href": "https://github.com/imshaikot/orbit-code"
        }
      ]
    },
    {
      "id": "cli",
      "tab": "Indexer CLI",
      "title": "The indexer on its own",
      "summary": "Index any repository into the dependency graph JSON that Orbit draws. It is not on npm yet, so run it from a clone.",
      "status": {
        "available": false,
        "label": "From source"
      },
      "steps": [
        {
          "title": "Clone and build",
          "commands": [
            {
              "command": "git clone https://github.com/imshaikot/orbit-code.git"
            },
            {
              "command": "cd orbit-code && corepack enable && yarn install"
            },
            {
              "command": "yarn build"
            }
          ]
        },
        {
          "title": "Index a folder",
          "commands": [
            {
              "command": "yarn index /path/to/project --out graph.json"
            }
          ]
        }
      ],
      "update": {
        "body": "Pull and build again.",
        "commands": [
          {
            "command": "git pull && yarn install && yarn build"
          }
        ]
      },
      "links": [
        {
          "label": "CLI guide",
          "href": "/docs/indexer/"
        }
      ]
    }
  ],
  "releases": {
    "marketplace": {
      "version": "0.2.1",
      "date": "2026-09-14T18:22:11.85Z",
      "url": "https://marketplace.visualstudio.com/items?itemName=imshaikot.orbit-code"
    },
    "openvsx": null,
    "vsix": {
      "version": "0.2.1",
      "url": "https://github.com/imshaikot/orbit-code/releases/download/v0.2.1/orbit-code-0.2.1.vsix"
    },
    "desktop": null,
    "npm": null
  }
}
