Void is the open-source Cursor alternative.
Use AI agents on your codebase, checkpoint and visualize changes, and bring any model or host locally. Void sends messages directly to providers without retaining your data.
This repo contains the full sourcecode for Void. If you're new, welcome!
We've paused work on the Void IDE (this repo) to explore a few novel coding ideas. We want to focus on innovation over feature-parity. Void will continue running, but without maintenance some existing features might stop working over time. Depending on the direction of our new work, we might not resume Void as an IDE.
We won't be actively reviewing Issues and PRs, but we will respond to all email inquiries on building and maintaining your own version of Void while we're paused.
Void is a fork of the vscode repository. For a guide to the codebase, see VOID_CODEBASE_GUIDE.
For a guide on how to develop your own version of Void, see HOW_TO_CONTRIBUTE and void-builder.
For a local macOS ARM packaging guide, see MacPack.
- Agent checkpoint resume: recover malformed XML tool calls such as incomplete
read_fileoutputs. - Agent checkpoint resume: continue tool execution when XML tool calls are emitted inside reasoning content.
edit_filematching: tolerate whitespace and comment differences when locatingORIGINALblocks.- macOS ARM packaging: see MacPack.
- agent capability enhance like claude-code: see ENHENCE-LIKE-CLAUDE.
- try to build your own custom agent: see BUILD-CUSTOM-AGENT.
You can run the development build like this:
npm run watchOpen another terminal:
./scripts/code.shIf you just want to quickly launch and see it, you can also try:
./scripts/code.shBut it's recommended to run npm run watch first, as this is the standard development workflow for a VSCode/Void fork — changes are continuously compiled.
Extensions to install:
- Python
- Python Debugger
- Black Formatter
Note: Do not install Pylance — it causes recognition conflicts. Installing the Python extension may automatically install Pylance; if that happens, uninstall Pylance separately.
Press command+shift+P and open Open User Settings (JSON), then set the following:
{
"editor.fontSize": 13,
"python.languageServer": "None",
"workbench.editor.empty.hint": "hidden",
"explorer.confirmDelete": false,
"window.openFoldersInNewWindow": "on",
"explorer.confirmDragAndDrop": false,
"python.autoComplete.extraPaths": [],
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"files.autoSave": "afterDelay",
"extensions.ignoreRecommendations": true,
"window.autoDetectColorScheme": false
}You can always reach us in our Discord server or contact us via email: hello@voideditor.com.
