9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
27 lines
1.0 KiB
JavaScript
27 lines
1.0 KiB
JavaScript
import { execSync } from 'node:child_process';
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { CommandExecutionError, ConfigError } from '@jackwener/opencli/errors';
|
|
export const statusCommand = cli({
|
|
site: 'chatgpt-app',
|
|
name: 'status',
|
|
access: 'read',
|
|
description: 'Check if ChatGPT Desktop App is running natively on macOS',
|
|
domain: 'localhost',
|
|
strategy: Strategy.PUBLIC,
|
|
browser: false,
|
|
args: [],
|
|
columns: ['Status'],
|
|
func: async () => {
|
|
if (process.platform !== 'darwin') {
|
|
throw new ConfigError('ChatGPT Desktop integration requires macOS (osascript is not available on this platform)');
|
|
}
|
|
try {
|
|
const output = execSync("osascript -e 'application \"ChatGPT\" is running'", { encoding: 'utf-8' }).trim();
|
|
return [{ Status: output === 'true' ? 'Running' : 'Stopped' }];
|
|
}
|
|
catch {
|
|
throw new CommandExecutionError('Error querying ChatGPT application state');
|
|
}
|
|
},
|
|
});
|