Branded, cross-platform IDE wrapper that ships a portable VSCodium bundle with the OpenClaw VS Code extension pre-installed.
apps/
wrapper/ # Electron app — downloads VSCodium, installs extension, launches editor
extension/ # VS Code extension — Home screen, Setup wizard, Status panel
.github/
workflows/ # CI: build wrapper (Win/Mac/Linux) + package extension
cd apps/wrapper
npm install
npm startThe wrapper will:
- Download portable VSCodium (pinned version) to
~/.occode/vscode/ - Install any bundled
.vsixextensions - Set default settings (theme, disable welcome)
- Launch VSCodium with a custom user-data directory
cd apps/extension
npm install
npm run compileThen press F5 in VS Code to launch the Extension Development Host.
Commands:
OpenClaw: Home— branded home screen with quick linksOpenClaw: Setup Local— wizard to detect OS, check prerequisites (git, node, docker), and guide OpenClaw setupOpenClaw: Status— shows whether the OpenClaw gateway is running
# Wrapper — platform-specific installer
cd apps/wrapper && npm run build
# Extension — .vsix package
cd apps/extension && npx @vscode/vsce packageGitHub Actions builds the wrapper for Windows, macOS, and Linux on every push to main. Extension is compiled and packaged as a .vsix artifact.
PRs welcome! See AGENTS.md for the full plan and milestone tracker.
MIT