Files
openclaw/src/utils/usage-format.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

190 lines
5.2 KiB
TypeScript

import fs from "node:fs";
import path from "node:path";
import { resolveOpenClawAgentDir } from "../agents/agent-paths.js";
import { modelKey, normalizeModelRef, normalizeProviderId } from "../agents/model-selection.js";
import type { NormalizedUsage } from "../agents/usage.js";
import type { OpenClawConfig } from "../config/config.js";
import type { ModelProviderConfig } from "../config/types.models.js";
import { getCachedGatewayModelPricing } from "../gateway/model-pricing-cache.js";
export type ModelCostConfig = {
input: number;
output: number;
cacheRead: number;
cacheWrite: number;
};
export type UsageTotals = {
input?: number;
output?: number;
cacheRead?: number;
cacheWrite?: number;
total?: number;
};
type ModelsJsonCostCache = {
path: string;
mtimeMs: number;
entries: Map<string, ModelCostConfig>;
};
let modelsJsonCostCache: ModelsJsonCostCache | null = null;
export function formatTokenCount(value?: number): string {
if (value === undefined || !Number.isFinite(value)) {
return "0";
}
const safe = Math.max(0, value);
if (safe >= 1_000_000) {
return `${(safe / 1_000_000).toFixed(1)}m`;
}
if (safe >= 1_000) {
const precision = safe >= 10_000 ? 0 : 1;
const formattedThousands = (safe / 1_000).toFixed(precision);
if (Number(formattedThousands) >= 1_000) {
return `${(safe / 1_000_000).toFixed(1)}m`;
}
return `${formattedThousands}k`;
}
return String(Math.round(safe));
}
export function formatUsd(value?: number): string | undefined {
if (value === undefined || !Number.isFinite(value)) {
return undefined;
}
if (value >= 1) {
return `$${value.toFixed(2)}`;
}
if (value >= 0.01) {
return `$${value.toFixed(2)}`;
}
return `$${value.toFixed(4)}`;
}
function toResolvedModelKey(params: { provider?: string; model?: string }): string | null {
const provider = params.provider?.trim();
const model = params.model?.trim();
if (!provider || !model) {
return null;
}
const normalized = normalizeModelRef(provider, model);
return modelKey(normalized.provider, normalized.model);
}
function buildProviderCostIndex(
providers: Record<string, ModelProviderConfig> | undefined,
): Map<string, ModelCostConfig> {
const entries = new Map<string, ModelCostConfig>();
if (!providers) {
return entries;
}
for (const [providerKey, providerConfig] of Object.entries(providers)) {
const normalizedProvider = normalizeProviderId(providerKey);
for (const model of providerConfig?.models ?? []) {
const normalized = normalizeModelRef(normalizedProvider, model.id);
entries.set(modelKey(normalized.provider, normalized.model), model.cost);
}
}
return entries;
}
function loadModelsJsonCostIndex(): Map<string, ModelCostConfig> {
const modelsPath = path.join(resolveOpenClawAgentDir(), "models.json");
try {
const stat = fs.statSync(modelsPath);
if (
modelsJsonCostCache &&
modelsJsonCostCache.path === modelsPath &&
modelsJsonCostCache.mtimeMs === stat.mtimeMs
) {
return modelsJsonCostCache.entries;
}
const parsed = JSON.parse(fs.readFileSync(modelsPath, "utf8")) as {
providers?: Record<string, ModelProviderConfig>;
};
const entries = buildProviderCostIndex(parsed.providers);
modelsJsonCostCache = {
path: modelsPath,
mtimeMs: stat.mtimeMs,
entries,
};
return entries;
} catch {
const empty = new Map<string, ModelCostConfig>();
modelsJsonCostCache = {
path: modelsPath,
mtimeMs: -1,
entries: empty,
};
return empty;
}
}
function findConfiguredProviderCost(params: {
provider?: string;
model?: string;
config?: OpenClawConfig;
}): ModelCostConfig | undefined {
const key = toResolvedModelKey(params);
if (!key) {
return undefined;
}
return buildProviderCostIndex(params.config?.models?.providers).get(key);
}
export function resolveModelCostConfig(params: {
provider?: string;
model?: string;
config?: OpenClawConfig;
}): ModelCostConfig | undefined {
const key = toResolvedModelKey(params);
if (!key) {
return undefined;
}
const modelsJsonCost = loadModelsJsonCostIndex().get(key);
if (modelsJsonCost) {
return modelsJsonCost;
}
const configuredCost = findConfiguredProviderCost(params);
if (configuredCost) {
return configuredCost;
}
return getCachedGatewayModelPricing(params);
}
const toNumber = (value: number | undefined): number =>
typeof value === "number" && Number.isFinite(value) ? value : 0;
export function estimateUsageCost(params: {
usage?: NormalizedUsage | UsageTotals | null;
cost?: ModelCostConfig;
}): number | undefined {
const usage = params.usage;
const cost = params.cost;
if (!usage || !cost) {
return undefined;
}
const input = toNumber(usage.input);
const output = toNumber(usage.output);
const cacheRead = toNumber(usage.cacheRead);
const cacheWrite = toNumber(usage.cacheWrite);
const total =
input * cost.input +
output * cost.output +
cacheRead * cost.cacheRead +
cacheWrite * cost.cacheWrite;
if (!Number.isFinite(total)) {
return undefined;
}
return total / 1_000_000;
}
export function __resetUsageFormatCachesForTest(): void {
modelsJsonCostCache = null;
}