/** * The worker-thread entrypoint: self-executing glue over `bootstrap.ts`'s {@link * runWorkerMain}, kept to the spawn wiring alone. * @module @deepseek-ai/dsh-code-runtime-worker/src/worker */ import { parentPort, workerData } from 'node:worker_threads' import { runWorkerMain } from './bootstrap.ts' import type { WorkerBootData } from './protocol.ts' // A worker always has a parent port; guard loudly rather than run detached. if (!parentPort) throw new Error('dsh-code-runtime-worker: worker entry loaded outside a worker thread') await runWorkerMain(parentPort, workerData as WorkerBootData, { stdout: process.stdout, stderr: process.stderr })