Files
openchamber/scripts/oc-dev.mjs
T

694 lines
30 KiB
JavaScript
Raw Normal View History

2026-07-01 13:25:43 +03:00
#!/usr/bin/env node
/**
* OpenChamber local development helper.
*
* This script owns the interactive `bun run oc-dev` menu and the equivalent
* non-interactive commands for common local workflows: web deploys, mobile
* builds/device deploys, Electron, VS Code, and maintainer release tasks.
*
* Personal or machine-specific options are intentionally kept out of git.
* The only supported user config is:
*
* ~/.config/openchamber/oc-dev.json
*
* See `scripts/oc-dev.config.example.json` for the shape. The config can set
* local device/app preferences such as `ios.deviceName`, `ios.useXcodeBeta`,
* and `ios.xcodeAppName`, and can define `remoteDeployments`. Remote deploy
* menu entries are shown only when configured. Maintainer-only actions such as
* release creation are hidden unless `features.releaseTools` is true.
*
* Menus are platform-aware: macOS-only iOS/Xcode actions are hidden off macOS.
* Direct unsupported commands fail with a clear error instead of relying on
* prompts for safety.
*/
import { spawn, spawnSync } from 'node:child_process';
import { existsSync, mkdirSync, readdirSync, readFileSync, rmSync, statSync, unlinkSync } from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import { cancel, intro, isCancel, log, outro, select, text } from '@clack/prompts';
import { RELEASE_PACKAGE_FILES } from './bump-version.mjs';
2026-07-01 13:25:43 +03:00
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const repoRoot = path.resolve(__dirname, '..');
const configPath = path.join(os.homedir(), '.config', 'openchamber', 'oc-dev.json');
const GLOBAL_PORT = '2606';
const TESTING_PORT = '1202';
const TESTING_DIR = 'testing-dev';
const REMOTE_RUNTIME_ENV = 'PATH=$HOME/.opencode/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH; if [ -z "${OPENCODE_BINARY:-}" ]; then OPENCODE_CANDIDATE=$(command -v opencode 2>/dev/null || true); if [ -n "$OPENCODE_CANDIDATE" ]; then export OPENCODE_BINARY="$OPENCODE_CANDIDATE"; fi; fi';
const isTty = Boolean(process.stdout.isTTY) && Boolean(process.stdin.isTTY);
const isMac = process.platform === 'darwin';
function printHelp() {
console.log(`Usage:
bun run oc-dev [action] [options]
node scripts/oc-dev.mjs [action] [options]
2026-07-01 13:25:43 +03:00
Actions:
build-deploy-web Build web package and deploy
remote-deploy-web Deploy to configured remote target
start-web-dev Start web development loop
start-mobile-dev Start mobile app with dev server live reload
mobile-tools Mobile build/sync/deploy helper menu
start-electron-app Start Electron app in dev mode
2026-07-02 17:43:33 +03:00
prepare-opencode-cli Download/cache bundled OpenCode CLI for Electron
2026-07-01 13:25:43 +03:00
build-electron-app Build Electron app artifacts
start-vscode-extension Build + launch VS Code extension host
install-vscode-extension-local Build, package, and install local VSIX
create-release Validate and bump release version
Options:
-a, --action <action>
--deployment-mode <global|testing>
--remote-id <id> Remote deployment id from ${configPath}
--target <test-api|test-ui> Compatibility alias for remote deployment selection
2026-07-20 12:54:46 +03:00
--web-mode <hmr|hmr-react-scan|hmr-lan|full>
2026-07-01 13:25:43 +03:00
--mobile-mode <ios-sim-local|ios-sim-lan|android-local|android-lan>
--mobile-task <task>
--adb-address <host:port> Wireless ADB address for android-connect
2026-07-01 13:25:43 +03:00
--vsix-cleanup <delete|keep>
--version <semver>
-h, --help
Mobile tasks:
build, sync, android-devices, android-connect, android-deploy-usb, android-run, android-logcat,
2026-07-01 13:25:43 +03:00
ios-sim-build, ios-sim-run, ios-sim-serve, ios-sim-kill, ios-device-sync-debug
`);
}
function parseArgs(argv) {
const options = {};
for (let index = 0; index < argv.length; index += 1) {
const arg = argv[index];
const readValue = () => {
const value = argv[index + 1];
if (!value || value.startsWith('-')) throw new Error(`Missing value for ${arg}`);
index += 1;
return value;
};
switch (arg) {
case '-h':
case '--help':
options.help = true;
break;
case '-a':
case '--action':
options.action = readValue();
break;
case '--deployment-mode':
options.deploymentMode = readValue();
break;
case '--remote-id':
options.remoteId = readValue();
break;
case '--target':
options.target = readValue();
break;
case '--web-mode':
options.webMode = readValue();
break;
case '--mobile-mode':
options.mobileMode = readValue();
break;
case '--mobile-task':
options.mobileTask = readValue();
break;
case '--adb-address':
options.adbAddress = readValue();
break;
2026-07-01 13:25:43 +03:00
case '--vsix-cleanup':
options.vsixCleanup = readValue();
break;
case '--version':
options.version = readValue();
break;
default:
if (arg.startsWith('-')) throw new Error(`Unknown option: ${arg}`);
if (options.action) throw new Error(`Unexpected argument: ${arg}`);
options.action = arg;
break;
}
}
return options;
}
function loadConfig() {
if (!existsSync(configPath)) return { remoteDeployments: [] };
try {
const parsed = JSON.parse(readFileSync(configPath, 'utf8'));
return {
...parsed,
remoteDeployments: Array.isArray(parsed.remoteDeployments) ? parsed.remoteDeployments : [],
};
} catch (error) {
throw new Error(`Failed to read ${configPath}: ${error.message}`);
}
}
function quote(value) {
return `'${String(value).replaceAll("'", "'\\''")}'`;
}
function run(command, args, options = {}) {
const result = spawnSync(command, args, {
cwd: options.cwd || repoRoot,
env: { ...process.env, ...(options.env || {}) },
stdio: options.capture ? 'pipe' : 'inherit',
encoding: 'utf8',
shell: options.shell || false,
});
if (result.status !== 0 && !options.allowFail) {
throw new Error(`${options.label || [command, ...args].join(' ')} failed`);
}
return result.stdout?.trim() || '';
}
function step(label, fn) {
log.step(label);
const result = fn();
log.success(`${label} completed`);
return result;
}
// The release notes source plus the files generated from it; all go into the release commit.
// CHANGELOG.md is legacy (older installs read it for update notes); it is
// refreshed only while it exists.
const RELEASE_CHANGELOG_FILES = ['changelog', 'packages/vscode/CHANGELOG.md', ...(existsSync(path.join(repoRoot, 'CHANGELOG.md')) ? ['CHANGELOG.md'] : [])];
function printReleaseNextSteps(version) {
log.success(`Release v${version} prepared locally`);
log.info('Next steps (only the release files are staged, unrelated changes stay out):');
console.log(` git add ${[...RELEASE_PACKAGE_FILES, ...RELEASE_CHANGELOG_FILES].join(' ')}`);
console.log(` git commit -m "release v${version}"`);
console.log(` git tag v${version}`);
console.log(` git push origin main v${version}`);
console.log('');
console.log('Pushing the tag is what starts the GitHub Actions release; pushing main alone does not.');
}
2026-07-01 13:25:43 +03:00
function normalizeAction(action = '') {
const normalized = action.toLowerCase();
const aliases = {
'deploy-web': 'build-deploy-web',
'build/deploy-web': 'build-deploy-web',
'web-dev': 'start-web-dev',
'mobile-dev': 'start-mobile-dev',
'ios-sim-dev': 'start-mobile-dev',
mobile: 'mobile-tools',
'mobile-menu': 'mobile-tools',
'remote-deploy-web': 'remote-deploy-web',
'electron-dev': 'start-electron-app',
2026-07-02 17:43:33 +03:00
'opencode-cli': 'prepare-opencode-cli',
'electron-opencode-cli': 'prepare-opencode-cli',
2026-07-01 13:25:43 +03:00
'electron-build': 'build-electron-app',
'vscode-dev': 'start-vscode-extension',
'vscode-install-local': 'install-vscode-extension-local',
release: 'create-release',
};
return aliases[normalized] || normalized;
}
function ensurePromptable() {
if (!isTty) throw new Error('Missing required option and no TTY is available for prompting.');
}
async function chooseValue(current, choices, message) {
if (current) return current;
ensurePromptable();
const value = await select({ message, options: choices });
if (isCancel(value)) {
cancel('Operation cancelled.');
process.exit(130);
}
return value;
}
async function chooseText(current, message, placeholder) {
if (current) return current;
ensurePromptable();
const value = await text({ message, placeholder });
if (isCancel(value)) {
cancel('Operation cancelled.');
process.exit(130);
}
return value;
}
function validateAdbAddress(address) {
const normalized = String(address || '').trim();
if (!/^[^\s:]+:\d{1,5}$/.test(normalized)) {
throw new Error('Invalid wireless ADB address. Use host:port, e.g. 192.168.1.139:38181');
}
const port = Number(normalized.split(':').at(-1));
if (!Number.isInteger(port) || port < 1 || port > 65535) {
throw new Error('Invalid wireless ADB port. Use a port between 1 and 65535.');
}
return normalized;
}
2026-07-01 13:25:43 +03:00
function detectLanIp() {
for (const addresses of Object.values(os.networkInterfaces())) {
for (const address of addresses || []) {
if (address.family === 'IPv4' && !address.internal) return address.address;
}
}
return '';
}
function removeFilesByPrefixSuffix(directory, prefix, suffix) {
if (!existsSync(directory)) return;
for (const entry of readdirSync(directory)) {
if (!entry.startsWith(prefix) || !entry.endsWith(suffix)) continue;
unlinkSync(path.join(directory, entry));
}
}
function latestFileByExtensions(directory, extensions) {
if (!existsSync(directory)) return '';
return readdirSync(directory)
.filter((entry) => extensions.some((extension) => entry.endsWith(extension)))
.map((entry) => {
const filePath = path.join(directory, entry);
return { filePath, mtimeMs: statSync(filePath).mtimeMs };
})
.sort((left, right) => right.mtimeMs - left.mtimeMs)[0]?.filePath || '';
}
function resetDirectory(directory) {
mkdirSync(directory, { recursive: true });
for (const entry of ['package.json', 'package-lock.json', 'pnpm-lock.yaml', 'bun.lockb']) {
rmSync(path.join(directory, entry), { force: true });
}
rmSync(path.join(directory, 'node_modules'), { recursive: true, force: true });
}
function installedWebCli(directory) {
const cliPath = path.join(directory, 'node_modules', '@openchamber', 'web', 'bin', 'cli.js');
return existsSync(cliPath) ? cliPath : '';
}
function installedGlobalWebCli() {
const bunInstall = process.env.BUN_INSTALL || path.join(os.homedir(), '.bun');
return installedWebCli(path.join(bunInstall, 'install', 'global'));
}
2026-07-01 13:25:43 +03:00
function stopInstalledInstance(directory, port) {
const cliPath = installedWebCli(directory);
if (!cliPath) return;
run('node', [cliPath, 'stop', '--port', port], { cwd: directory, allowFail: true, label: `stop instance on ${port}` });
}
function startInstalledInstance(directory, port) {
const cliPath = installedWebCli(directory);
if (!cliPath) throw new Error(`OpenChamber CLI was not installed in ${directory}`);
run('node', [cliPath, '--port', port], {
cwd: directory,
env: {
OPENCHAMBER_UI_PASSWORD: process.env.OPENCHAMBER_PASSWORD || '',
OPENCHAMBER_HOST: '0.0.0.0',
},
label: `start instance on ${port}`,
});
}
function packageWeb() {
step('Building web bundle', () => run('bun', ['run', '--cwd', 'packages/web', 'build']));
const packOutput = step('Creating web package archive', () => run('npm', ['pack', '--pack-destination', repoRoot], { cwd: path.join(repoRoot, 'packages/web'), capture: true }));
const packageName = packOutput.split('\n').find((line) => line.trim().endsWith('.tgz'))?.trim();
if (!packageName) throw new Error('Archive creation failed: npm pack did not print a .tgz file.');
return path.join(repoRoot, packageName);
}
async function selectRemoteDeployment(config, options) {
if (options.remoteId) {
const remote = config.remoteDeployments.find((entry) => entry.id === options.remoteId);
if (!remote) throw new Error(`No remote deployment with id "${options.remoteId}" in ${configPath}`);
return remote;
}
if (options.target) {
const normalizedTarget = options.target.toLowerCase();
const apiOnly = ['test', 'testing', 'test-api', 'api', 'api-only'].includes(normalizedTarget);
const withUi = ['test-ui', 'ui', 'with-ui'].includes(normalizedTarget);
if (!apiOnly && !withUi) throw new Error('Invalid --target. Use test-api or test-ui.');
const remote = config.remoteDeployments.find((entry) => Boolean(entry.apiOnly) === apiOnly || (!entry.apiOnly && withUi));
if (remote) return remote;
}
if (config.remoteDeployments.length === 0) {
throw new Error(`No remoteDeployments configured in ${configPath}`);
}
return chooseValue(
'',
config.remoteDeployments.map((remote) => ({ value: remote.id, label: remote.label || remote.id, hint: `${remote.host}:${remote.port}` })),
'Select remote deployment',
).then((id) => config.remoteDeployments.find((entry) => entry.id === id));
}
async function deployWeb(options, config) {
const deploymentMode = (await chooseValue(options.deploymentMode, [
{ value: 'global', label: 'Global' },
{ value: 'testing', label: 'Testing' },
], 'Select installation mode')).toLowerCase();
if (!['global', 'testing'].includes(deploymentMode)) {
throw new Error('Invalid deployment mode. Use global or testing. Use remote-deploy-web for configured remote deployments.');
}
const packageFile = packageWeb();
if (deploymentMode === 'testing') {
const testingDir = path.join(os.homedir(), TESTING_DIR);
step(`Stopping testing instance on ${TESTING_PORT}`, () => stopInstalledInstance(testingDir, TESTING_PORT));
step('Preparing testing install directory', () => {
resetDirectory(testingDir);
run('bun', ['init', '-y'], { cwd: testingDir });
});
step('Installing testing package', () => run('bun', ['add', packageFile], { cwd: testingDir }));
step(`Starting testing instance on ${TESTING_PORT}`, () => startInstalledInstance(testingDir, TESTING_PORT));
return;
}
step(`Stopping global instance on ${GLOBAL_PORT}`, () => run('openchamber', ['stop', '--port', GLOBAL_PORT], { allowFail: true, label: `stop global instance on ${GLOBAL_PORT}` }));
step('Removing old global package', () => {
run('bun', ['remove', '-g', '@openchamber/web'], { allowFail: true, label: 'remove @openchamber/web' });
run('bun', ['remove', '-g', 'openchamber'], { allowFail: true, label: 'remove openchamber' });
});
step('Installing package globally', () => run('bun', ['add', '-g', packageFile]));
step(`Starting global instance on ${GLOBAL_PORT}`, () => {
const cliPath = installedGlobalWebCli();
if (!cliPath) throw new Error('Global OpenChamber CLI was not installed by bun add -g');
run('node', [cliPath, '--port', GLOBAL_PORT], { env: { OPENCHAMBER_UI_PASSWORD: process.env.OPENCHAMBER_PASSWORD || '', OPENCHAMBER_HOST: '0.0.0.0' } });
});
2026-07-01 13:25:43 +03:00
}
async function deployRemoteWeb(options, config) {
const remote = await selectRemoteDeployment(config, options);
const packageFile = packageWeb();
const host = remote.host;
const dir = remote.dir;
const port = String(remote.port);
const apiOnly = remote.apiOnly ? 'true' : 'false';
const bindHost = remote.lan === false ? '127.0.0.1' : '0.0.0.0';
2026-07-01 13:25:43 +03:00
const packageBase = path.basename(packageFile);
if (!host || !dir || !port) throw new Error(`Remote deployment ${remote.id} must define host, dir, and port.`);
step('Preparing remote directories', () => run('ssh', [host, `mkdir -p ~/${dir}/releases`]));
step(`Stopping remote instance on ${host}:${port}`, () => run('ssh', [host, `set -e; ${REMOTE_RUNTIME_ENV}; cd ~/${dir} 2>/dev/null || exit 0; PORT=${quote(port)}; TMPDIR=$(node -p "require('os').tmpdir()" 2>/dev/null || echo /tmp); PIDFILE="$TMPDIR/openchamber-${port}.pid"; INSTANCEFILE="$TMPDIR/openchamber-${port}.json"; if [ -f ./node_modules/@openchamber/web/bin/cli.js ]; then bun ./node_modules/@openchamber/web/bin/cli.js stop --port "$PORT" >/dev/null 2>&1 || node ./node_modules/@openchamber/web/bin/cli.js stop --port "$PORT" >/dev/null 2>&1 || true; fi; if command -v lsof >/dev/null 2>&1; then lsof -ti :"$PORT" | xargs -r kill >/dev/null 2>&1 || true; sleep 0.5; lsof -ti :"$PORT" | xargs -r kill -9 >/dev/null 2>&1 || true; fi; rm -f "$PIDFILE" "$INSTANCEFILE"`], { label: 'stop remote instance' }));
step('Copying package to remote', () => {
run('ssh', [host, `mkdir -p ~/${dir}/releases && rm -f ~/${dir}/releases/*.tgz`]);
run('scp', ['-q', packageFile, `${host}:~/${dir}/releases/${packageBase}`]);
});
step('Resetting remote install state', () => run('ssh', [host, `cd ~/${dir} && rm -f package.json package-lock.json pnpm-lock.yaml bun.lockb && rm -rf node_modules`]));
step('Preparing remote package manifest', () => run('ssh', [host, `set -e; cd ~/${dir}; ${REMOTE_RUNTIME_ENV}; if command -v bun >/dev/null 2>&1; then bun init -y; else npm init -y; fi`]));
step('Installing remote package', () => run('ssh', [host, `set -e; cd ~/${dir}; ${REMOTE_RUNTIME_ENV}; if command -v bun >/dev/null 2>&1; then bun add ./releases/${packageBase}; else npm install ./releases/${packageBase}; fi`]));
step(`Starting remote instance on ${host}:${port}`, () => run('ssh', [host, `set -e; cd ~/${dir}; ${REMOTE_RUNTIME_ENV}; PASSWORD_VALUE=$(grep '^export OPENCHAMBER_UI_PASSWORD=' ~/.bashrc 2>/dev/null | sed -E 's/.*=["“]?([^"”]+)["”]?/\\1/' || true); if [ -n "$PASSWORD_VALUE" ]; then export OPENCHAMBER_UI_PASSWORD="$PASSWORD_VALUE"; fi; if [ ${quote(apiOnly)} = 'true' ]; then export OPENCHAMBER_API_ONLY=true; fi; if command -v bun >/dev/null 2>&1; then OPENCHAMBER_HOST=${quote(bindHost)} bun ./node_modules/@openchamber/web/bin/cli.js --port ${quote(port)} >/dev/null 2>&1; else OPENCHAMBER_HOST=${quote(bindHost)} node ./node_modules/@openchamber/web/bin/cli.js --port ${quote(port)} >/dev/null 2>&1; fi; sleep 0.5; if command -v lsof >/dev/null 2>&1; then lsof -ti :${quote(port)} >/dev/null 2>&1 || exit 1; fi`]));
2026-07-01 13:25:43 +03:00
log.success(`Remote deployment ready: ${host}:${port}`);
}
async function startWebDev(options) {
const mode = await chooseValue(options.webMode, [
{ value: 'hmr', label: 'Web HMR' },
2026-07-20 12:54:46 +03:00
{ value: 'hmr-react-scan', label: 'Web HMR + React Scan' },
2026-07-01 13:25:43 +03:00
{ value: 'hmr-lan', label: 'Web HMR LAN/mobile' },
{ value: 'full', label: 'Web prod-like' },
], 'Select web dev mode');
2026-07-20 12:54:46 +03:00
if (mode === 'hmr-react-scan') {
run('bun', ['run', 'dev:web:hmr'], { env: { VITE_ENABLE_REACT_SCAN: '1' } });
} else if (mode === 'hmr-lan') {
2026-07-01 13:25:43 +03:00
log.info('Starting web HMR LAN/mobile loop. Open the LAN URL printed after startup.');
run('bun', ['run', 'dev:web:hmr'], { env: { OPENCHAMBER_HMR_HOST: '0.0.0.0' } });
} else if (mode === 'full') {
run('bun', ['run', 'dev:web:full']);
} else {
run('bun', ['run', 'dev:web:hmr']);
}
}
async function startMobileDev(options) {
const mobileModeChoices = [
{ value: 'ios-sim-local', label: 'iOS Simulator local' },
{ value: 'ios-sim-lan', label: 'iOS Simulator LAN' },
{ value: 'android-local', label: 'Android emulator local' },
{ value: 'android-lan', label: 'Android device LAN' },
].filter((choice) => isMac || !choice.value.startsWith('ios-'));
const mode = await chooseValue(options.mobileMode, mobileModeChoices, 'Select mobile dev mode');
if (mode.startsWith('ios-') && !isMac) {
throw new Error('iOS mobile dev actions require macOS and Xcode.');
}
const hmrPort = process.env.OPENCHAMBER_HMR_UI_PORT || '5180';
let hmrBindHost = '127.0.0.1';
let liveReloadHost = '127.0.0.1';
let platform = 'ios';
let extraArgs = [];
if (mode === 'ios-sim-lan' || mode === 'android-lan') {
hmrBindHost = '0.0.0.0';
liveReloadHost = detectLanIp();
if (!liveReloadHost) throw new Error('Could not detect LAN IP.');
}
if (mode.startsWith('android')) platform = 'android';
if (mode === 'android-local') extraArgs = ['--forwardPorts', `${hmrPort}:${hmrPort}`];
log.step(`Starting mobile UI dev server on ${hmrBindHost}:${hmrPort}`);
const devServer = spawn('bun', ['x', 'vite', '--config', 'local-dev-mobile-vite.config.mjs', '--host', hmrBindHost, '--port', hmrPort, '--strictPort'], {
cwd: repoRoot,
stdio: 'inherit',
env: { ...process.env, OPENCHAMBER_DISABLE_PWA_DEV: '1' },
});
const stopDevServer = () => {
if (!devServer.killed) devServer.kill('SIGTERM');
};
process.once('SIGINT', () => {
stopDevServer();
process.exit(130);
});
process.once('SIGTERM', () => {
stopDevServer();
process.exit(143);
});
await new Promise((resolve) => setTimeout(resolve, 6000));
run('node', ['scripts/with-mobile-env.mjs', `bunx cap run ${platform} --live-reload --host ${liveReloadHost} --port ${hmrPort} ${extraArgs.join(' ')}`], { cwd: path.join(repoRoot, 'packages/mobile') });
log.info('Mobile UI dev server is still running. Press Ctrl+C to stop.');
await new Promise((resolve) => devServer.on('exit', resolve));
}
async function mobileTools(options, config) {
const mobileTaskChoices = [
{ value: 'build', label: 'Build mobile web assets' },
{ value: 'sync', label: 'Sync native projects' },
{ value: 'android-devices', label: 'Android: list USB devices' },
{ value: 'android-connect', label: 'Android: connect wireless ADB device' },
2026-07-01 13:25:43 +03:00
{ value: 'android-deploy-usb', label: 'Android: rebuild + deploy to USB device' },
{ value: 'android-run', label: 'Android: install + launch existing APK' },
{ value: 'android-logcat', label: 'Android: logcat' },
{ value: 'ios-sim-build', label: 'iOS Simulator: build' },
{ value: 'ios-sim-run', label: 'iOS Simulator: install + launch' },
{ value: 'ios-sim-serve', label: 'iOS Simulator: browser preview' },
{ value: 'ios-sim-kill', label: 'iOS Simulator: stop browser preview' },
{ value: 'ios-device-sync-debug', label: 'iOS Device: sync + open debugger workspace' },
].filter((choice) => isMac || !choice.value.startsWith('ios-'));
const task = await chooseValue(options.mobileTask, mobileTaskChoices, 'Select mobile action');
if (task.startsWith('ios-') && !isMac) {
throw new Error('iOS mobile actions require macOS and Xcode.');
}
const mobileCwd = path.join(repoRoot, 'packages/mobile');
const mobileRun = (label, script) => step(label, () => run('bun', ['run', script], { cwd: mobileCwd }));
switch (task) {
case 'build': return mobileRun('Building mobile web assets', 'build');
case 'sync': return mobileRun('Syncing native projects', 'sync');
case 'android-devices': return mobileRun('Listing Android USB devices', 'android:devices');
case 'android-connect': {
const address = validateAdbAddress(await chooseText(options.adbAddress, 'Enter wireless ADB address', '192.168.1.139:38181'));
step(`Connecting wireless ADB device at ${address}`, () => run('node', ['scripts/with-mobile-env.mjs', `adb connect ${quote(address)}`], { cwd: mobileCwd }));
return mobileRun('Listing Android devices', 'android:devices');
}
2026-07-01 13:25:43 +03:00
case 'android-deploy-usb':
mobileRun('Building Android debug APK', 'build:android:debug');
return mobileRun('Installing and launching Android app on USB device', 'android:run');
case 'android-run': return mobileRun('Installing and launching Android app on USB device', 'android:run');
case 'android-logcat': return mobileRun('Streaming Android app logs', 'android:logcat');
case 'ios-sim-build': return mobileRun('Building iOS Simulator app', 'build:ios:simulator');
case 'ios-sim-run': return mobileRun('Installing and launching iOS Simulator app', 'sim:run');
case 'ios-sim-serve': return mobileRun('Starting iOS Simulator browser preview', 'sim:serve');
case 'ios-sim-kill': return mobileRun('Stopping iOS Simulator browser preview', 'sim:kill');
case 'ios-device-sync-debug': {
mobileRun('Syncing iOS native project', 'sync');
const deviceName = process.env.IOS_DEVICE_NAME || config.ios?.deviceName || 'iPhone Bohdan';
const xcodeAppName = process.env.XCODE_APP_NAME || config.ios?.xcodeAppName || (config.ios?.useXcodeBeta ? 'Xcode-beta' : 'Xcode');
log.info(`Target physical device: ${deviceName}`);
log.warn('CLI can sync/build/install parts of iOS, but attaching Apple\'s debugger to a physical iPhone is still Xcode\'s job. Select the device in Xcode and press Run.');
if (process.platform !== 'darwin') throw new Error('Opening Xcode requires macOS.');
return step(`Opening iOS workspace in ${xcodeAppName}`, () => run('open', ['-a', xcodeAppName, path.join(mobileCwd, 'ios/App/App.xcworkspace')]));
}
default:
throw new Error(`Unknown mobile task: ${task}`);
}
}
function startElectronApp() {
2026-07-02 17:43:33 +03:00
prepareOpenCodeCli();
2026-07-01 13:25:43 +03:00
run('bun', ['run', 'electron:dev']);
}
2026-07-02 17:43:33 +03:00
function prepareOpenCodeCli() {
step('Preparing bundled OpenCode CLI', () => run('bun', ['--filter', '@openchamber/electron', 'prepare:opencode-cli']));
}
2026-07-01 13:25:43 +03:00
function buildElectronApp() {
2026-07-02 17:43:33 +03:00
prepareOpenCodeCli();
2026-07-01 13:25:43 +03:00
run('bun', ['run', 'electron:build'], { env: { CSC_IDENTITY_AUTO_DISCOVERY: 'false' } });
const distDir = path.join(repoRoot, 'packages/electron/dist');
if (!existsSync(distDir) || !isMac) return;
const artifact = latestFileByExtensions(distDir, ['.dmg', '-mac.zip']);
if (artifact) run('open', [artifact]);
}
function startVsCodeExtension() {
const vscodeDir = path.join(repoRoot, 'packages/vscode');
removeFilesByPrefixSuffix(vscodeDir, 'openchamber-', '.vsix');
step('Building VS Code extension', () => run('bun', ['run', 'vscode:build']));
run('code', ['--extensionDevelopmentPath', vscodeDir]);
}
async function installVsCodeExtensionLocal(options) {
let cleanup = options.vsixCleanup;
if (!cleanup && isTty) {
cleanup = await chooseValue('', [
{ value: 'delete', label: 'Delete VSIX after install' },
{ value: 'keep', label: 'Keep VSIX after install' },
], 'Select VSIX cleanup mode');
}
cleanup ||= 'delete';
if (!['delete', 'keep'].includes(cleanup)) throw new Error('Invalid --vsix-cleanup. Use delete or keep.');
2026-07-01 13:25:43 +03:00
const vscodeDir = path.join(repoRoot, 'packages/vscode');
step('Building VS Code extension', () => run('bun', ['run', '--cwd', 'packages/vscode', 'build']));
step('Removing found VSIX package(s) before install flow', () => removeFilesByPrefixSuffix(vscodeDir, 'openchamber-', '.vsix'));
2026-07-01 13:25:43 +03:00
step('Packaging VSIX', () => run('bunx', ['vsce', 'package', '--no-dependencies'], { cwd: vscodeDir }));
step('Installing VSIX locally', () => {
run('code', ['--uninstall-extension', 'fedaykindev.openchamber'], { label: 'uninstall old extension', allowFail: true });
run('code --install-extension packages/vscode/openchamber-*.vsix', [], { shell: true, label: 'install VSIX' });
});
if (cleanup === 'delete') {
step('Removing local VSIX package(s) after install', () => removeFilesByPrefixSuffix(vscodeDir, 'openchamber-', '.vsix'));
}
2026-07-01 13:25:43 +03:00
}
async function createRelease(options) {
if (!options.config?.features?.releaseTools) {
throw new Error(`Release tools are disabled. Set features.releaseTools=true in ${configPath} to enable this maintainer task.`);
}
let version = options.version;
if (!version) {
ensurePromptable();
version = await text({ message: 'Enter release version', placeholder: '1.4.7' });
if (isCancel(version)) {
cancel('Operation cancelled.');
process.exit(130);
}
}
if (!/^\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?$/.test(version)) throw new Error('Invalid version format. Use semver, e.g. 1.4.7 or 1.4.7-beta.1');
// Turns changelog/unreleased.md into changelog/<version>.md dated today and
// regenerates the outputs; fails when nothing was written for the release.
step('Promoting the changelog', () => run('node', ['scripts/changelog/build.mjs', '--release', version]));
2026-07-01 13:25:43 +03:00
step('Validating codebase', () => run('bun', ['run', 'release:prepare']));
step(`Bumping version to ${version}`, () => run('node', ['scripts/bump-version.mjs', version]));
printReleaseNextSteps(version);
2026-07-01 13:25:43 +03:00
}
async function chooseAction(config) {
const options = [
{ value: 'build-deploy-web', label: 'Build/Deploy web' },
{ value: 'start-web-dev', label: 'Start web dev' },
{ value: 'start-mobile-dev', label: 'Start mobile dev' },
{ value: 'mobile-tools', label: 'Mobile tools' },
{ value: 'start-electron-app', label: 'Start Electron app' },
2026-07-02 17:43:33 +03:00
{ value: 'prepare-opencode-cli', label: 'Prepare bundled OpenCode CLI' },
2026-07-01 13:25:43 +03:00
{ value: 'build-electron-app', label: 'Build Electron app' },
{ value: 'start-vscode-extension', label: 'Start VS Code extension' },
{ value: 'install-vscode-extension-local', label: 'Install VS Code extension locally' },
];
if (config.features?.releaseTools) {
options.push({ value: 'create-release', label: 'Create Release' });
}
if (config.remoteDeployments.length > 0) {
options.splice(1, 0, { value: 'remote-deploy-web', label: 'Deploy configured remote web' });
}
const action = await chooseValue('', options, 'Select OpenChamber dev action');
return action;
}
async function main() {
const options = parseArgs(process.argv.slice(2));
if (options.help) {
printHelp();
return;
}
const config = loadConfig();
const interactive = !options.action;
if (interactive) intro('OpenChamber dev');
let action = normalizeAction(options.action || await chooseAction(config));
switch (action) {
case 'build-deploy-web':
await deployWeb(options, config);
break;
case 'remote-deploy-web':
await deployRemoteWeb(options, config);
break;
case 'start-web-dev':
await startWebDev(options);
break;
case 'start-mobile-dev':
await startMobileDev(options);
break;
case 'mobile-tools':
await mobileTools(options, config);
break;
case 'start-electron-app':
startElectronApp();
break;
2026-07-02 17:43:33 +03:00
case 'prepare-opencode-cli':
prepareOpenCodeCli();
break;
2026-07-01 13:25:43 +03:00
case 'build-electron-app':
buildElectronApp();
break;
case 'start-vscode-extension':
startVsCodeExtension();
break;
case 'install-vscode-extension-local':
await installVsCodeExtensionLocal(options);
break;
case 'create-release':
options.config = config;
await createRelease(options);
break;
default:
throw new Error(`Unknown action: ${action}`);
}
if (interactive) outro('Done');
}
main().catch((error) => {
log.error(error.message);
process.exit(1);
});