A custom IDE built on VSCode/Windsurf with Heady branding and built-in AI.
HeadyAI-IDE is a fully branded development environment that bundles:
- HeadyBuddy sidebar — AI assistant right in your editor
- Heady Dark theme — Purple (#7B68EE), gold (#FFD700), deep blue (#1a1a2e)
- AI-first keybindings —
Ctrl+Shift+Hfor command palette - Pre-installed extensions — ESLint, Prettier, GitLens, Docker, Python
HeadyAI-IDE uses the extension + configuration approach rather than a full VSCode fork:
- Product JSON override — Custom branding (name, icon, colors)
- Built-in extension — HeadyBuddy sidebar panel
- Default settings — Heady Dark theme, AI-first keybindings
- Pre-installed extensions — Curated stack for Heady development
cd extensions/vscode
npm install
npx vsce package
code --install-extension heady-ide-0.1.0.vsixcd HeadyAI-IDE
yarn install
yarn run compile
yarn run gulp vscode-win32-x64-archive # Windows
yarn run gulp vscode-linux-x64-archive # LinuxCreate a .env file in your project root:
HEADY_API_KEY=your_api_key
BACKEND_URL=http://localhost:3300| Area | Details |
|---|---|
| Name | nameShort: "HeadyAI-IDE", applicationName: "headyai-ide" |
| Icon | Sacred Geometry infinity symbol |
| Theme | Heady Dark: purple accents, deep blue background |
| Sidebar | HeadyBuddy panel for in-editor AI chat |
| Keybindings | Ctrl+Shift+H opens Heady command palette |
| Shortcut | Action |
|---|---|
Ctrl+Shift+H |
Open Heady command palette |
/buddy |
Chat with HeadyBuddy in terminal |
/deploy |
Trigger deployment pipeline |
/status |
Show system health |
HeadyAI-IDE/
├── product.json # Branding overrides
├── resources/ # Icons and assets
├── extensions/
│ └── heady-ide-extension/ # Built-in HeadyBuddy panel
└── src/vs/workbench/ # Theme and UI customizations
- HeadyAI-IDE Guide — Full implementation guide
- HeadyBuddy Quickstart — Set up the AI companion
- IDE Integration Docs — Deep integration patterns