feat: initial commit — odo v0.9.4 Electron desktop app for OpenClaw management

- Electron main process with tray icon and IPC setup
- openclaw-manager.js server bridge
- Architecture design document (ODO_ARCHITECTURE.md)
- preload.js for renderer context bridge
This commit is contained in:
2026-03-19 21:10:14 +10:00
commit a1e7e66ae1
9 changed files with 10786 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"name": "odo",
"version": "0.9.4",
"description": "ODO — OpenClaw Dashboard Orchestrator",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux"
},
"build": {
"appId": "com.openclaw.odo",
"productName": "ODO",
"files": [
"main.js",
"preload.js",
"server/openclaw-manager.js",
"assets/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": ["dmg"],
"icon": "assets/icon.icns"
},
"win": {
"target": ["nsis"],
"icon": "assets/icon.ico"
},
"linux": {
"target": ["AppImage"],
"icon": "assets/icon.png",
"category": "Development"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false
}
},
"author": "",
"license": "MIT",
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}