| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 |
- /**
- * CodeGraph MCP Server
- *
- * Model Context Protocol server that exposes CodeGraph functionality
- * as tools for AI assistants like Claude.
- *
- * @module mcp
- *
- * @example
- * ```typescript
- * import { MCPServer } from 'codegraph';
- *
- * const server = new MCPServer('/path/to/project');
- * await server.start();
- * ```
- *
- * Runtime modes (decided in {@link MCPServer.start}):
- *
- * - **Direct** — one process serves one MCP client over stdio. The pre-#411
- * behavior; used when the user opts out (`CODEGRAPH_NO_DAEMON=1`), no
- * `.codegraph/` is reachable, or the daemon machinery fails for any reason.
- * - **Proxy** — what an MCP host actually talks to when sharing is on: a thin
- * stdio↔socket pipe to the shared daemon. The proxy carries the #277 PPID
- * watchdog, so a SIGKILL'd host reaps its proxy promptly. See {@link ./proxy.ts}.
- * - **Daemon** — a *detached* background process (its own session/process
- * group) that serves N proxies over a Unix-domain socket / named pipe,
- * sharing one CodeGraph + watcher + SQLite handle. Spawned on demand; never a
- * child of any host, so it survives individual sessions and is reaped by
- * client-refcount + idle timeout. See {@link ./daemon.ts} and issue #411.
- *
- * The detached-daemon + always-proxy split is the fix for the review finding
- * that the original in-process daemon (a) was the first host's child, so closing
- * that terminal severed every other client, and (b) disabled the PPID watchdog,
- * regressing #277 (orphaned daemons on host SIGKILL).
- */
- import * as fs from 'fs';
- import * as path from 'path';
- import { spawn, StdioOptions } from 'child_process';
- import { resolveServerRoot, getCodeGraphDir } from '../directory';
- import { StdioTransport } from './transport';
- import { MCPEngine } from './engine';
- import { MCPSession } from './session';
- import {
- Daemon,
- clearStaleDaemonLock,
- isProcessAlive,
- tryAcquireDaemonLock,
- } from './daemon';
- import { connectWithHello, runLocalHandshakeProxy } from './proxy';
- import { getDaemonSocketCandidates, probeDaemonIdentity } from './daemon-paths';
- import { getTelemetry } from '../telemetry';
- import { checkForUpdateInBackground } from '../upgrade/update-check';
- import { EARLY_PPID } from './early-ppid';
- import { supervisionLostReason, parsePpidPollMs, parseHostPpid } from './ppid-watchdog';
- import { installMainThreadWatchdog, WatchdogHandle } from './liveness-watchdog';
- import { armStartupHandshakeTimeout } from './startup-handshake';
- import { treatStdinFailureAsShutdown } from './stdin-teardown';
- import { HOST_PPID_ENV } from '../extraction/wasm-runtime-flags';
- /**
- * Env var that marks a process as the *detached daemon* itself (set by
- * {@link spawnDetachedDaemon} when it re-invokes the CLI). Without it a
- * `serve --mcp` invocation is a launcher that connects-or-spawns; with it, the
- * process IS the daemon and must never try to spawn another (infinite spawn).
- */
- const DAEMON_INTERNAL_ENV = 'CODEGRAPH_DAEMON_INTERNAL';
- /**
- * Retries for the detached daemon arbitrating the O_EXCL lock against a racing
- * sibling. Tiny — the lock resolves on the first round in practice; the retries
- * only cover clearing a genuinely stale (dead-pid) lockfile.
- */
- const TAKEOVER_MAX_RETRIES = 5;
- const TAKEOVER_RETRY_DELAY_MS = 100;
- /**
- * How long a launcher waits for a freshly-spawned daemon to bind its socket
- * before giving up and running in-process. The daemon binds the socket *before*
- * the (backgrounded) engine/grammar warm-up, so this only needs to cover node
- * process startup. 60 × 100ms = 6s of headroom for a cold/slow box; on the
- * common path the socket appears within a few rounds.
- */
- // Poll finely (25ms) so the proxy attaches the instant the freshly-spawned
- // daemon binds, instead of waiting up to a coarse 100ms after — shaves the
- // cold-start handshake (the window the headless agent races). Same ~6s total
- // give-up budget (240 × 25ms), just finer granularity; socket-connect probes
- // are cheap. Paired with deferring the CodeGraph load (engine.ts) off the bind
- // path, this narrows the "No such tool available" race window.
- const DAEMON_CONNECT_MAX_RETRIES = 240;
- const DAEMON_CONNECT_RETRY_DELAY_MS = 25;
- /** Whether `CODEGRAPH_NO_DAEMON` was set to a truthy value. */
- function daemonOptOutSet(): boolean {
- const raw = process.env.CODEGRAPH_NO_DAEMON;
- if (!raw) return false;
- return raw !== '0' && raw.toLowerCase() !== 'false';
- }
- /** Whether this process was spawned to BE the detached daemon. */
- function daemonInternalSet(): boolean {
- const raw = process.env[DAEMON_INTERNAL_ENV];
- return !!raw && raw !== '0' && raw.toLowerCase() !== 'false';
- }
- /**
- * Prefix every `process.stderr.write` chunk with an ISO-8601 timestamp. Called
- * once, only when this process becomes the detached daemon — whose stderr is
- * appended to `.codegraph/daemon.log`. Before #1431 no log line carried a
- * timestamp, so watchdog kills and restarts could be counted but never placed
- * in time. (The watchdog child writes its kill notice through its own
- * inherited fd 2, bypassing this wrapper — it stamps that line itself.)
- */
- export function timestampStderrLines(): void {
- const orig = process.stderr.write.bind(process.stderr);
- process.stderr.write = ((chunk: string | Uint8Array, ...rest: unknown[]) => {
- return (orig as (...args: unknown[]) => boolean)(stampLogChunk(chunk), ...rest);
- }) as typeof process.stderr.write;
- }
- /** Prepend `[<ISO-8601>] ` to a log chunk; unknown chunk types pass through. */
- export function stampLogChunk(chunk: string | Uint8Array): string | Uint8Array {
- try {
- const stamp = `[${new Date().toISOString()}] `;
- if (typeof chunk === 'string') return stamp + chunk;
- if (Buffer.isBuffer(chunk)) return Buffer.concat([Buffer.from(stamp), chunk]);
- } catch { /* stamping is best-effort; never block the write */ }
- return chunk;
- }
- /**
- * Watchdog `progressPaths` for a server keyed on `root`'s index: the SQLite DB
- * + its WAL. With these, the #850 liveness watchdog only kills on heartbeat
- * silence when the DB files are NOT advancing — the same slow-disk deferral
- * the CLI `index`/`init` path got in #1231. Without it, one >timeout
- * synchronous statement on a big DB (multi-GB index behind Windows Defender)
- * SIGKILLs a perfectly healthy daemon — and a daemon SIGKILL'd at the end of
- * nearly every session is what ratcheted the WAL leak in #1431. A true wedge
- * still dies: a wedged loop writes nothing, so the files stay still.
- */
- export function watchdogProgressPaths(root: string | null): { progressPaths?: string[] } {
- if (!root) return {};
- const dbPath = path.join(getCodeGraphDir(root), 'codegraph.db');
- return { progressPaths: [dbPath, `${dbPath}-wal`] };
- }
- /**
- * Resolve the project root the daemon machinery should key on. Returns
- * `null` when no `.codegraph/` is reachable from the candidate path — in
- * that case the caller must run in direct mode, since the daemon lockfile
- * and socket both live under `.codegraph/`.
- *
- * Uses the same resolution as the engine (#1606): up-walk first, then the
- * bounded workspace down-scan that adopts a SINGLE indexed sub-project. A
- * workspace root above one indexed child therefore gets the shared daemon
- * (one watcher, one writer, keyed on the child) instead of a direct-mode
- * server per host.
- *
- * The result is canonicalized with `realpathSync` so every client converges on
- * the same socket/lock path regardless of how it expressed the path: a client
- * launched with cwd under a symlink (e.g. macOS `/var` → `/private/var`, where
- * spawned `process.cwd()` is already realpath'd) and one that passed a
- * symlinked `rootUri` would otherwise hash to different sockets and silently
- * fail to share the daemon.
- */
- function resolveDaemonRoot(explicitPath: string | null): string | null {
- const candidate = explicitPath ?? process.cwd();
- const root = resolveServerRoot(candidate).root;
- if (!root) return null;
- try { return fs.realpathSync(root); } catch { return root; }
- }
- /**
- * Spawn the shared daemon as a fully detached background process: its own
- * session/process group (so a SIGHUP/SIGINT to the launcher's terminal can't
- * reach it) with stdio decoupled from the launcher (logs to
- * `.codegraph/daemon.log`). Re-invokes the *same* CLI faithfully across dev and
- * bundled launches by reusing `process.argv[0]` (the right node), the current
- * `process.execArgv` (carries `--liftoff-only`, so the daemon never re-execs)
- * and `process.argv[1]` (this script). The spawned process self-arbitrates the
- * O_EXCL lock, so racing launchers may each spawn one — losers exit and every
- * launcher proxies through the single winner.
- */
- function spawnDetachedDaemon(root: string): void {
- const scriptPath = process.argv[1];
- if (!scriptPath) {
- // No resolvable CLI entry point to re-invoke — let the caller fall back to
- // direct mode rather than spawn something broken.
- throw new Error('cannot resolve CLI script path to spawn the daemon');
- }
- let logFd: number | null = null;
- let stdio: StdioOptions = 'ignore';
- try {
- logFd = fs.openSync(path.join(getCodeGraphDir(root), 'daemon.log'), 'a');
- stdio = ['ignore', logFd, logFd];
- } catch {
- stdio = 'ignore'; // no log file — discard daemon output rather than fail
- }
- try {
- // The daemon has no host: scrub the threaded host pid so it can't leak
- // into the daemon's env (and from there into anything the daemon spawns),
- // where a long-dead session's host pid would trigger spurious shutdowns.
- const env: NodeJS.ProcessEnv = { ...process.env, [DAEMON_INTERNAL_ENV]: '1' };
- delete env[HOST_PPID_ENV];
- const child = spawn(
- process.execPath,
- [...process.execArgv, scriptPath, 'serve', '--mcp', '--path', root],
- {
- detached: true,
- stdio,
- windowsHide: true,
- env,
- },
- );
- child.unref();
- } finally {
- // The child holds its own dup of the log fd now; the launcher doesn't need it.
- if (logFd !== null) {
- try { fs.closeSync(logFd); } catch { /* ignore */ }
- }
- }
- }
- /**
- * MCP Server for CodeGraph
- *
- * Implements the Model Context Protocol to expose CodeGraph
- * functionality as tools that can be called by AI assistants.
- *
- * Backwards-compatible constructor and `start()` signature with the
- * pre-issue-#411 implementation: callers continue to do
- * `new MCPServer(path).start()`. Internally we now pick from direct / proxy /
- * daemon at start time.
- */
- export class MCPServer {
- private projectPath: string | null;
- // Direct-mode-only state. In daemon mode the per-connection sessions live
- // inside the Daemon class; in proxy mode there is no session at all.
- private session: MCPSession | null = null;
- private engine: MCPEngine | null = null;
- private daemon: Daemon | null = null;
- private ppidWatchdog: ReturnType<typeof setInterval> | null = null;
- // Worker-thread liveness watchdog (#850). Long-lived modes only; SIGKILLs the
- // process if the main thread wedges in a non-yielding sync loop.
- private livenessWatchdog: WatchdogHandle | null = null;
- // PPID watchdog baseline — from the CLI entry's earliest-possible capture
- // (early-ppid.ts). Capturing here (construction) already lost the race when
- // the launcher was killed during module loading (#1185).
- private originalPpid: number = EARLY_PPID;
- private hostPpid: number | null = parseHostPpid(process.env[HOST_PPID_ENV]);
- // Idempotency guard for stop().
- private stopped = false;
- private mode: 'unstarted' | 'direct' | 'proxy' | 'daemon' = 'unstarted';
- constructor(projectPath?: string) {
- this.projectPath = projectPath || null;
- }
- /**
- * Start the MCP server.
- *
- * Decision order:
- * 1. `CODEGRAPH_NO_DAEMON=1` → direct mode (unchanged pre-#411 behavior).
- * 2. `CODEGRAPH_DAEMON_INTERNAL=1` → we ARE the detached daemon; listen.
- * 3. No `.codegraph/` reachable → direct mode (the daemon's lockfile and
- * socket both live under `.codegraph/`).
- * 4. Otherwise connect to (or spawn) the shared daemon and proxy to it.
- *
- * On any unexpected failure in step 4 we transparently fall back to direct
- * mode — a misbehaving daemon must never block a session from starting.
- */
- async start(): Promise<void> {
- // Long-lived process (direct / proxy / daemon alike): flush buffered
- // telemetry opportunistically. Fire-and-forget + unref'd — adds nothing
- // to the handshake path and never keeps the process alive.
- getTelemetry().startInterval();
- // #1243: the MCP config launches the local binary, so a server left
- // running drifts behind releases with no signal. Refresh the shared
- // update-check cache in the background and log ONE stderr notice when a
- // newer version exists (stderr only — stdout is the protocol channel).
- // The notice also reaches the agent via the initialize instructions and
- // codegraph_status. Fire-and-forget: adds nothing to the handshake path.
- checkForUpdateInBackground();
- // The detached daemon process itself. Checked before the opt-out so the
- // daemon honors the same env it was spawned with (it never sets NO_DAEMON).
- if (daemonInternalSet()) {
- return this.startDaemonProcess();
- }
- // Direct mode if the user opted out. Setting the env var is sufficient to
- // get the pre-#411 single-process behavior.
- if (daemonOptOutSet()) {
- return this.startDirect('CODEGRAPH_NO_DAEMON set');
- }
- const root = resolveDaemonRoot(this.projectPath);
- if (!root) {
- // No initialized project found — daemon mode has nowhere to put its
- // socket. The fresh-checkout / outside-project case; behave as before.
- return this.startDirect('no .codegraph/ root found');
- }
- try {
- // Answer the MCP handshake LOCALLY (instant tool registration — no waiting
- // ~600ms for the daemon to spawn+bind, which produced the cold-start race)
- // and forward tool CALLS to the shared daemon, connected in the background.
- // Runs until the host disconnects; the proxy installs its own watchdog and
- // falls back to an in-process engine if the daemon never comes up.
- this.mode = 'proxy';
- await this.runProxyWithLocalHandshake(root);
- return;
- } catch (err) {
- // Belt-and-braces: a throw during proxy SETUP (before the client was served)
- // is still safe to recover from with a direct-mode session.
- const msg = err instanceof Error ? err.message : String(err);
- process.stderr.write(`[CodeGraph MCP] Proxy path failed (${msg}); falling back to direct mode.\n`);
- return this.startDirect('proxy path threw');
- }
- }
- /**
- * Stop the server. In daemon mode this triggers graceful shutdown of every
- * connected session; in direct mode it mirrors the pre-#411 behavior (close
- * cg, exit). Proxy mode never routes through here — the proxy exits itself.
- */
- stop(): void {
- if (this.stopped) return;
- this.stopped = true;
- if (this.ppidWatchdog) {
- clearInterval(this.ppidWatchdog);
- this.ppidWatchdog = null;
- }
- if (this.livenessWatchdog) {
- this.livenessWatchdog.stop();
- this.livenessWatchdog = null;
- }
- if (this.daemon) {
- void this.daemon.stop('stop()');
- // Daemon.stop calls process.exit; nothing else to do.
- return;
- }
- if (this.session) {
- this.session.stop();
- this.session = null;
- }
- if (this.engine) {
- this.engine.stop();
- this.engine = null;
- }
- process.exit(0);
- }
- /** Single-process stdio MCP session — the pre-issue-#411 code path. */
- private async startDirect(reason: string): Promise<void> {
- if (reason && process.env.CODEGRAPH_MCP_DEBUG) {
- process.stderr.write(`[CodeGraph MCP] Direct mode: ${reason}.\n`);
- }
- this.engine = new MCPEngine();
- const transport = new StdioTransport();
- this.session = new MCPSession(transport, this.engine, {
- explicitProjectPath: this.projectPath,
- });
- if (this.projectPath) {
- // Background init so the initialize response stays fast (#172).
- void this.engine.ensureInitialized(this.projectPath);
- }
- this.session.start();
- // Detect parent-process death — same logic as pre-refactor. When stdin
- // closes we go through StdioTransport's `process.exit(0)` already, but
- // SIGKILL of the parent doesn't reliably close stdin on Linux (#277).
- // Also treat a stdin `'error'` (a socket-backed stdin can fail with
- // ECONNRESET/hangup instead of a clean close) as shutdown, and destroy the
- // stream so a hung fd can't busy-spin the event loop (#799).
- treatStdinFailureAsShutdown(() => this.stop());
- // Backstop for a launch abandoned during startup (#1185): launcher killed
- // before EARLY_PPID could see it + host holding our pipes open. A server
- // that never receives a byte of MCP traffic isn't serving anyone. Armed
- // after session.start() attached the real stdin consumer.
- armStartupHandshakeTimeout(() => {
- process.stderr.write(
- '[CodeGraph MCP] No MCP traffic since startup; assuming an abandoned launch and shutting down (#1185). ' +
- 'Tune with CODEGRAPH_STARTUP_HANDSHAKE_TIMEOUT_MS (0 disables).\n'
- );
- this.stop();
- });
- this.mode = 'direct';
- this.installSignalHandlers();
- this.installPpidWatchdog();
- this.livenessWatchdog = installMainThreadWatchdog(watchdogProgressPaths(resolveDaemonRoot(this.projectPath)));
- }
- /**
- * Run as the detached shared daemon (process spawned with
- * `CODEGRAPH_DAEMON_INTERNAL=1`). Arbitrate the O_EXCL lock, then either
- * become the daemon (bind the socket, serve forever) or — if a live daemon
- * already holds the lock — exit so we don't leak a redundant process.
- *
- * No PPID watchdog and no stdin handlers: the daemon is detached on purpose
- * and reaps itself via client-refcount + idle timeout (see {@link Daemon}).
- */
- private async startDaemonProcess(): Promise<void> {
- // In daemon mode stderr IS `.codegraph/daemon.log`; stamp every line so
- // kills/restarts can be placed in time (#1431 — the log was undatable).
- timestampStderrLines();
- const root = resolveDaemonRoot(this.projectPath) ?? this.projectPath ?? process.cwd();
- for (let attempt = 0; attempt < TAKEOVER_MAX_RETRIES; attempt++) {
- const lock = tryAcquireDaemonLock(root);
- if (lock.kind === 'acquired') {
- const daemon = new Daemon(root);
- await daemon.start();
- this.daemon = daemon;
- this.mode = 'daemon';
- // The detached daemon has no PPID watchdog or stdin lifeline, so a
- // wedged main thread would pin a core forever (#850). The liveness
- // watchdog is its only recovery path.
- this.livenessWatchdog = installMainThreadWatchdog(watchdogProgressPaths(root));
- return; // the net.Server keeps the process alive
- }
- // Taken. If the holder is alive, another daemon already serves (or is
- // binding) — we're redundant; exit cleanly so the launcher proxies to it.
- const existing = lock.existing;
- if (existing && existing.pid > 0 && isProcessAlive(existing.pid)) {
- // Give a newly-elected daemon time to bind, then require its socket hello
- // to match the lock PID/version. PID existence alone accepts an unrelated
- // process after OS PID reuse and permanently wedges startup (#1553).
- const age = Date.now() - existing.startedAt;
- const stillStarting = existing.startedAt > 0 && age >= 0 && age < 10_000;
- if (stillStarting || await probeDaemonIdentity(existing)) {
- process.stderr.write(
- `[CodeGraph daemon] Another daemon (pid ${existing.pid}) already holds the lock; exiting.\n`
- );
- process.exit(0);
- }
- }
- // Holder is dead (or the record is unreadable) — clear it (pid-verified,
- // so we never delete a live daemon's lock) and retry the acquire.
- clearStaleDaemonLock(lock.pidPath, existing?.pid, { allowLivePid: true });
- await sleep(TAKEOVER_RETRY_DELAY_MS);
- }
- process.stderr.write('[CodeGraph daemon] Could not acquire the daemon lock; exiting.\n');
- process.exit(0);
- }
- /**
- * Proxy mode (the common case). Serve the MCP handshake LOCALLY for instant
- * tool registration, forwarding tool calls to the shared daemon — which is
- * connected in the background (probed, then spawned + polled if absent) so the
- * handshake never waits ~600ms on it. Runs until the host disconnects; the
- * proxy falls back to an in-process engine if the daemon never binds, so this
- * never wedges a session.
- */
- private async runProxyWithLocalHandshake(root: string): Promise<void> {
- // The daemon may relocate its socket past an in-project filesystem that can't
- // host one (ExFAT/FAT volumes, WSL2 DrvFs; #997) to the deterministic tmpdir
- // fallback. We don't read the bound path from the lockfile — both sides walk
- // the SAME ordered candidate list, so we converge on whichever the daemon
- // bound with zero coordination. The in-project candidate is tried first, so a
- // normal repo pays nothing extra (it connects on the very first probe).
- const candidates = getDaemonSocketCandidates(root);
- const connectAnyCandidate = async (): Promise<Awaited<ReturnType<typeof connectWithHello>>> => {
- for (const candidate of candidates) {
- const s = await connectWithHello(candidate);
- // A wrong-version daemon IS up — definitive; propagate so the caller
- // serves in-process instead of spawning + polling for 6s. Don't keep
- // probing fallbacks past it.
- if (s === 'version-mismatch') return s;
- if (s) return s;
- }
- return null;
- };
- const getDaemonSocket = async () => {
- // Fast path: a daemon may already be listening (on either candidate).
- const probe = await connectAnyCandidate();
- if (probe === 'version-mismatch') return null; // definitive — serve in-process, don't poll for 6s
- if (probe) return probe;
- // None reachable — spawn one (detached) and poll for its bind.
- spawnDetachedDaemon(root);
- for (let attempt = 0; attempt < DAEMON_CONNECT_MAX_RETRIES; attempt++) {
- await sleep(DAEMON_CONNECT_RETRY_DELAY_MS);
- const s = await connectAnyCandidate();
- if (s === 'version-mismatch') return null;
- if (s) return s;
- }
- return null; // never bound — the proxy serves this session in-process
- };
- await runLocalHandshakeProxy({ getDaemonSocket, makeEngine: () => new MCPEngine(), root });
- }
- /** Standard SIGINT/SIGTERM handlers that route to our `stop()` (direct mode). */
- private installSignalHandlers(): void {
- process.on('SIGINT', () => this.stop());
- process.on('SIGTERM', () => this.stop());
- }
- /**
- * PPID watchdog (#277) — direct mode only. Daemon mode is detached on purpose
- * and reaps via idle timeout; proxy mode installs its own watchdog inside
- * {@link runProxy}. So this only ever runs for an in-process direct session.
- */
- private installPpidWatchdog(): void {
- if (this.mode !== 'direct') return;
- const pollMs = parsePpidPollMs(process.env.CODEGRAPH_PPID_POLL_MS);
- if (pollMs <= 0) return;
- this.ppidWatchdog = setInterval(() => {
- const reason = supervisionLostReason({
- originalPpid: this.originalPpid,
- currentPpid: process.ppid,
- hostPpid: this.hostPpid,
- isAlive: isProcessAlive,
- });
- if (reason) {
- process.stderr.write(
- `[CodeGraph MCP] Parent process exited (${reason}); shutting down.\n`
- );
- this.stop();
- }
- }, pollMs);
- this.ppidWatchdog.unref();
- }
- }
- function sleep(ms: number): Promise<void> {
- // Deliberately NOT unref'd. During the daemon connect/takeover retry loop we
- // may be between processes — no socket bound yet, no transport, no listener
- // pinning the event loop. An unref'd timer would let Node drain the loop and
- // exit silently before we get a chance to try again.
- return new Promise((resolve) => { setTimeout(resolve, ms); });
- }
- // Export for use in CLI
- export { StdioTransport } from './transport';
- export { tools, ToolHandler } from './tools';
- // Surface a few daemon-mode bits for tests + diagnostics.
- export { Daemon } from './daemon';
- export { CodeGraphPackageVersion } from './version';
|