moa-rl-env / moav2 /src /platform /electron /electron-shell.ts
natnael kahssay
feat: use real moav2 source as RL task suite — symlinked sandbox, 3 real service tasks
ce25387
import type { PlatformShell } from '../../core/platform/types'
export function createElectronShell(): PlatformShell {
return {
openExternal: (url: string) => {
const { shell } = (window as any).require('electron')
shell.openExternal(url)
}
}
}