mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-21 23:11:01 +00:00
* 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>
170 lines
5.2 KiB
TypeScript
170 lines
5.2 KiB
TypeScript
import os from "node:os";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { resetSubagentRegistryForTests } from "./subagent-registry.js";
|
|
import { spawnSubagentDirect } from "./subagent-spawn.js";
|
|
|
|
const callGatewayMock = vi.fn();
|
|
const updateSessionStoreMock = vi.fn();
|
|
const pruneLegacyStoreKeysMock = vi.fn();
|
|
|
|
vi.mock("../gateway/call.js", () => ({
|
|
callGateway: (opts: unknown) => callGatewayMock(opts),
|
|
}));
|
|
|
|
vi.mock("../config/config.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("../config/config.js")>();
|
|
return {
|
|
...actual,
|
|
loadConfig: () => ({
|
|
session: {
|
|
mainKey: "main",
|
|
scope: "per-sender",
|
|
},
|
|
agents: {
|
|
defaults: {
|
|
workspace: os.tmpdir(),
|
|
},
|
|
},
|
|
}),
|
|
};
|
|
});
|
|
|
|
vi.mock("../config/sessions.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("../config/sessions.js")>();
|
|
return {
|
|
...actual,
|
|
updateSessionStore: (...args: unknown[]) => updateSessionStoreMock(...args),
|
|
};
|
|
});
|
|
|
|
vi.mock("../gateway/session-utils.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("../gateway/session-utils.js")>();
|
|
return {
|
|
...actual,
|
|
resolveGatewaySessionStoreTarget: (params: { key: string }) => ({
|
|
agentId: "main",
|
|
storePath: "/tmp/subagent-spawn-model-session.json",
|
|
canonicalKey: params.key,
|
|
storeKeys: [params.key],
|
|
}),
|
|
pruneLegacyStoreKeys: (...args: unknown[]) => pruneLegacyStoreKeysMock(...args),
|
|
};
|
|
});
|
|
|
|
vi.mock("./subagent-registry.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("./subagent-registry.js")>();
|
|
return {
|
|
...actual,
|
|
countActiveRunsForSession: () => 0,
|
|
registerSubagentRun: () => {},
|
|
};
|
|
});
|
|
|
|
vi.mock("./subagent-announce.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("./subagent-announce.js")>();
|
|
return {
|
|
...actual,
|
|
buildSubagentSystemPrompt: () => "system-prompt",
|
|
};
|
|
});
|
|
|
|
vi.mock("./subagent-depth.js", () => ({
|
|
getSubagentDepthFromSessionStore: () => 0,
|
|
}));
|
|
|
|
vi.mock("../plugins/hook-runner-global.js", () => ({
|
|
getGlobalHookRunner: () => ({ hasHooks: () => false }),
|
|
}));
|
|
|
|
describe("spawnSubagentDirect runtime model persistence", () => {
|
|
beforeEach(() => {
|
|
resetSubagentRegistryForTests();
|
|
callGatewayMock.mockReset();
|
|
updateSessionStoreMock.mockReset();
|
|
pruneLegacyStoreKeysMock.mockReset();
|
|
|
|
callGatewayMock.mockImplementation(async (opts: { method?: string }) => {
|
|
if (opts.method === "sessions.patch") {
|
|
return { ok: true };
|
|
}
|
|
if (opts.method === "sessions.delete") {
|
|
return { ok: true };
|
|
}
|
|
if (opts.method === "agent") {
|
|
return { runId: "run-1", status: "accepted", acceptedAt: 1000 };
|
|
}
|
|
return {};
|
|
});
|
|
|
|
updateSessionStoreMock.mockImplementation(
|
|
async (
|
|
_storePath: string,
|
|
mutator: (store: Record<string, Record<string, unknown>>) => unknown,
|
|
) => {
|
|
const store: Record<string, Record<string, unknown>> = {};
|
|
await mutator(store);
|
|
return store;
|
|
},
|
|
);
|
|
});
|
|
|
|
it("persists runtime model fields on the child session before starting the run", async () => {
|
|
const operations: string[] = [];
|
|
callGatewayMock.mockImplementation(async (opts: { method?: string }) => {
|
|
operations.push(`gateway:${opts.method ?? "unknown"}`);
|
|
if (opts.method === "sessions.patch") {
|
|
return { ok: true };
|
|
}
|
|
if (opts.method === "agent") {
|
|
return { runId: "run-1", status: "accepted", acceptedAt: 1000 };
|
|
}
|
|
if (opts.method === "sessions.delete") {
|
|
return { ok: true };
|
|
}
|
|
return {};
|
|
});
|
|
let persistedStore: Record<string, Record<string, unknown>> | undefined;
|
|
updateSessionStoreMock.mockImplementation(
|
|
async (
|
|
_storePath: string,
|
|
mutator: (store: Record<string, Record<string, unknown>>) => unknown,
|
|
) => {
|
|
operations.push("store:update");
|
|
const store: Record<string, Record<string, unknown>> = {};
|
|
await mutator(store);
|
|
persistedStore = store;
|
|
return store;
|
|
},
|
|
);
|
|
|
|
const result = await spawnSubagentDirect(
|
|
{
|
|
task: "test",
|
|
model: "openai-codex/gpt-5.4",
|
|
},
|
|
{
|
|
agentSessionKey: "agent:main:main",
|
|
agentChannel: "discord",
|
|
},
|
|
);
|
|
|
|
expect(result).toMatchObject({
|
|
status: "accepted",
|
|
modelApplied: true,
|
|
});
|
|
expect(updateSessionStoreMock).toHaveBeenCalledTimes(1);
|
|
const [persistedKey, persistedEntry] = Object.entries(persistedStore ?? {})[0] ?? [];
|
|
expect(persistedKey).toMatch(/^agent:main:subagent:/);
|
|
expect(persistedEntry).toMatchObject({
|
|
modelProvider: "openai-codex",
|
|
model: "gpt-5.4",
|
|
});
|
|
expect(pruneLegacyStoreKeysMock).toHaveBeenCalledTimes(1);
|
|
expect(operations.indexOf("gateway:sessions.patch")).toBeGreaterThan(-1);
|
|
expect(operations.indexOf("store:update")).toBeGreaterThan(
|
|
operations.indexOf("gateway:sessions.patch"),
|
|
);
|
|
expect(operations.indexOf("gateway:agent")).toBeGreaterThan(operations.indexOf("store:update"));
|
|
});
|
|
});
|