Files
openclaw/src/gateway/session-lifecycle-state.ts
clay-datacurve 7b61ca1b06 Session management improvements and dashboard API (#50101)
* fix: make cleanup "keep" persist subagent sessions indefinitely

* feat: expose subagent session metadata in sessions list

* fix: include status and timing in sessions_list tool

* fix: hide injected timestamp prefixes in chat ui

* feat: push session list updates over websocket

* feat: expose child subagent sessions in subagents list

* feat: add admin http endpoint to kill sessions

* Emit session.message websocket events for transcript updates

* Estimate session costs in sessions list

* Add direct session history HTTP and SSE endpoints

* Harden dashboard session events and history APIs

* Add session lifecycle gateway methods

* Add dashboard session API improvements

* Add dashboard session model and parent linkage support

* fix: tighten dashboard session API metadata

* Fix dashboard session cost metadata

* Persist accumulated session cost

* fix: stop followup queue drain cfg crash

* Fix dashboard session create and model metadata

* fix: stop guessing session model costs

* Gateway: cache OpenRouter pricing for configured models

* Gateway: add timeout session status

* Fix subagent spawn test config loading

* Gateway: preserve operator scopes without device identity

* Emit user message transcript events and deduplicate plugin warnings

* feat: emit sessions.changed lifecycle event on subagent spawn

Adds a session-lifecycle-events module (similar to transcript-events)
that emits create events when subagents are spawned. The gateway
server.impl.ts listens for these events and broadcasts sessions.changed
with reason=create to SSE subscribers, so dashboards can pick up new
subagent sessions without polling.

* Gateway: allow persistent dashboard orchestrator sessions

* fix: preserve operator scopes for token-authenticated backend clients

Backend clients (like agent-dashboard) that authenticate with a valid gateway
token but don't present a device identity were getting their scopes stripped.
The scope-clearing logic ran before checking the device identity decision,
so even when evaluateMissingDeviceIdentity returned 'allow' (because
roleCanSkipDeviceIdentity passed for token-authed operators), scopes were
already cleared.

Fix: also check decision.kind before clearing scopes, so token-authenticated
operators keep their requested scopes.

* Gateway: allow operator-token session kills

* Fix stale active subagent status after follow-up runs

* Fix dashboard image attachments in sessions send

* Fix completed session follow-up status updates

* feat: stream session tool events to operator UIs

* Add sessions.steer gateway coverage

* Persist subagent timing in session store

* Fix subagent session transcript event keys

* Fix active subagent session status in gateway

* bump session label max to 512

* Fix gateway send session reactivation

* fix: publish terminal session lifecycle state

* feat: change default session reset to effectively never

- Change DEFAULT_RESET_MODE from "daily" to "idle"
- Change DEFAULT_IDLE_MINUTES from 60 to 0 (0 = disabled/never)
- Allow idleMinutes=0 through normalization (don't clamp to 1)
- Treat idleMinutes=0 as "no idle expiry" in evaluateSessionFreshness
- Default behavior: mode "idle" + idleMinutes 0 = sessions never auto-reset
- Update test assertion for new default mode

* fix: prep session management followups (#50101) (thanks @clay-datacurve)

---------

Co-authored-by: Tyler Yust <TYTYYUST@YAHOO.COM>
2026-03-19 12:12:30 +09:00

170 lines
4.8 KiB
TypeScript

import { updateSessionStoreEntry, type SessionEntry } from "../config/sessions.js";
import type { AgentEventPayload } from "../infra/agent-events.js";
import { loadSessionEntry } from "./session-utils.js";
import type { GatewaySessionRow, SessionRunStatus } from "./session-utils.types.js";
type LifecyclePhase = "start" | "end" | "error";
type LifecycleEventLike = Pick<AgentEventPayload, "ts"> & {
data?: {
phase?: unknown;
startedAt?: unknown;
endedAt?: unknown;
aborted?: unknown;
stopReason?: unknown;
};
};
type LifecycleSessionShape = Pick<
GatewaySessionRow,
"updatedAt" | "status" | "startedAt" | "endedAt" | "runtimeMs" | "abortedLastRun"
>;
type PersistedLifecycleSessionShape = Pick<
SessionEntry,
"updatedAt" | "status" | "startedAt" | "endedAt" | "runtimeMs" | "abortedLastRun"
>;
export type GatewaySessionLifecycleSnapshot = Partial<LifecycleSessionShape>;
function isFiniteTimestamp(value: unknown): value is number {
return typeof value === "number" && Number.isFinite(value) && value > 0;
}
function resolveLifecyclePhase(event: LifecycleEventLike): LifecyclePhase | null {
const phase = typeof event.data?.phase === "string" ? event.data.phase : "";
return phase === "start" || phase === "end" || phase === "error" ? phase : null;
}
function resolveTerminalStatus(event: LifecycleEventLike): SessionRunStatus {
const phase = resolveLifecyclePhase(event);
if (phase === "error") {
return "failed";
}
const stopReason = typeof event.data?.stopReason === "string" ? event.data.stopReason : "";
if (stopReason === "aborted") {
return "killed";
}
return event.data?.aborted === true ? "timeout" : "done";
}
function resolveLifecycleStartedAt(
existingStartedAt: number | undefined,
event: LifecycleEventLike,
): number | undefined {
if (isFiniteTimestamp(event.data?.startedAt)) {
return event.data.startedAt;
}
if (isFiniteTimestamp(existingStartedAt)) {
return existingStartedAt;
}
return isFiniteTimestamp(event.ts) ? event.ts : undefined;
}
function resolveLifecycleEndedAt(event: LifecycleEventLike): number | undefined {
if (isFiniteTimestamp(event.data?.endedAt)) {
return event.data.endedAt;
}
return isFiniteTimestamp(event.ts) ? event.ts : undefined;
}
function resolveRuntimeMs(params: {
startedAt?: number;
endedAt?: number;
existingRuntimeMs?: number;
}): number | undefined {
const { startedAt, endedAt, existingRuntimeMs } = params;
if (isFiniteTimestamp(startedAt) && isFiniteTimestamp(endedAt)) {
return Math.max(0, endedAt - startedAt);
}
if (
typeof existingRuntimeMs === "number" &&
Number.isFinite(existingRuntimeMs) &&
existingRuntimeMs >= 0
) {
return existingRuntimeMs;
}
return undefined;
}
export function deriveGatewaySessionLifecycleSnapshot(params: {
session?: Partial<LifecycleSessionShape> | null;
event: LifecycleEventLike;
}): GatewaySessionLifecycleSnapshot {
const phase = resolveLifecyclePhase(params.event);
if (!phase) {
return {};
}
const existing = params.session ?? undefined;
if (phase === "start") {
const startedAt = resolveLifecycleStartedAt(existing?.startedAt, params.event);
const updatedAt = startedAt ?? existing?.updatedAt;
return {
updatedAt,
status: "running",
startedAt,
endedAt: undefined,
runtimeMs: undefined,
abortedLastRun: false,
};
}
const startedAt = resolveLifecycleStartedAt(existing?.startedAt, params.event);
const endedAt = resolveLifecycleEndedAt(params.event);
const updatedAt = endedAt ?? existing?.updatedAt;
return {
updatedAt,
status: resolveTerminalStatus(params.event),
startedAt,
endedAt,
runtimeMs: resolveRuntimeMs({
startedAt,
endedAt,
existingRuntimeMs: existing?.runtimeMs,
}),
abortedLastRun: resolveTerminalStatus(params.event) === "killed",
};
}
export function derivePersistedSessionLifecyclePatch(params: {
entry?: Partial<PersistedLifecycleSessionShape> | null;
event: LifecycleEventLike;
}): Partial<PersistedLifecycleSessionShape> {
const snapshot = deriveGatewaySessionLifecycleSnapshot({
session: params.entry ?? undefined,
event: params.event,
});
return {
...snapshot,
updatedAt: typeof snapshot.updatedAt === "number" ? snapshot.updatedAt : undefined,
};
}
export async function persistGatewaySessionLifecycleEvent(params: {
sessionKey: string;
event: LifecycleEventLike;
}): Promise<void> {
const phase = resolveLifecyclePhase(params.event);
if (!phase) {
return;
}
const sessionEntry = loadSessionEntry(params.sessionKey);
if (!sessionEntry.entry) {
return;
}
await updateSessionStoreEntry({
storePath: sessionEntry.storePath,
sessionKey: sessionEntry.canonicalKey,
update: async (entry) =>
derivePersistedSessionLifecyclePatch({
entry,
event: params.event,
}),
});
}