mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-04 13:21:40 +00:00
* fix(apps): address native Skills review feedback * feat(apps): add native Automations parity * fix(ios): preserve automation editor selection * fix(android): page automation discovery * chore(apps): refresh native source inventory * fix(ios): refresh invalid automation diagnostics * chore(apps): sync native localization * fix(cron): stabilize paginated snapshots * refactor(cron): split pagination helpers * fix(apps): address final native review feedback * chore(apps): refresh native source inventory * fix(ios): dedupe automation list actions * chore: keep release note in PR context * fix(ci): repair current main architecture gates * fix(ios): default new skill requirement fields * fix(ios): retain queued automation reservations
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { randomUUID } from "node:crypto";
|
|
|
|
const gatewayProcessInstanceId = randomUUID();
|
|
|
|
/** Stable for one Gateway process; changes across every restart, including PID reuse. */
|
|
export function getGatewayProcessInstanceId(): string {
|
|
return gatewayProcessInstanceId;
|
|
}
|