coleam00/Archon · error

Detached workflow process group ${String(pid)} is still runn

Error message

Detached workflow process group ${String(pid)} is still running

What it means

Error "Detached workflow process group ${String(pid)} is still running" thrown in coleam00/Archon.

Source

Thrown at packages/cli/src/utils/detached-run-control.ts:570

      );
    }
    return;
  }
  if (await waitUntilGone(() => processGroupExists(pid), TERMINATION_GRACE_MS)) return;

  try {
    process.kill(-pid, 'SIGKILL');
  } catch (error) {
    if ((error as NodeJS.ErrnoException).code !== 'ESRCH') throw error;
    if (processExists(pid)) {
      throw new Error(
        `Detached workflow owner ${String(pid)} is alive but does not own process group ${String(pid)}`
      );
    }
    return;
  }
  if (!(await waitUntilGone(() => processGroupExists(pid), TERMINATION_CONFIRM_MS))) {
    throw new Error(`Detached workflow process group ${String(pid)} is still running`);
  }
}

View on GitHub (pinned to 0773b97458)

When it happens

Trigger: Thrown at packages/cli/src/utils/detached-run-control.ts:570 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of coleam00/Archon@0773b97458 (2026-09-01). Data as JSON: /api/errors/2cbb5f99265b436f. Report an issue: GitHub.