惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
V
V2EX
T
The Blog of Author Tim Ferriss
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Hugging Face - Blog
Hugging Face - Blog
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
Recent Announcements
Recent Announcements
Vercel News
Vercel News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
美团技术团队
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(gateway): bound sessions list responses · openclaw/op...
steipete · 2026-05-04 · via Recent Commits to openclaw:main

@@ -1795,18 +1795,25 @@ export function loadGatewaySessionRow(

17951795

*/

17961796

const SESSIONS_LIST_YIELD_BATCH_SIZE = 10;

17971797

const SESSIONS_LIST_TOP_N_LIMIT = 200;

1798+

const SESSIONS_LIST_DEFAULT_LIMIT = 100;

1798179917991800

type SessionEntryPair = [string, SessionEntry];

1801+

type SessionEntrySelection = {

1802+

entries: SessionEntryPair[];

1803+

totalCount: number;

1804+

limitApplied?: number;

1805+

};

1800180618011807

function compareSessionEntryPairsByUpdatedAt(a: SessionEntryPair, b: SessionEntryPair): number {

18021808

return (b[1]?.updatedAt ?? 0) - (a[1]?.updatedAt ?? 0);

18031809

}

1804181018051811

function resolveSessionsListLimit(

18061812

opts: import("./protocol/index.js").SessionsListParams,

1813+

defaultLimit?: number,

18071814

): number | undefined {

18081815

if (typeof opts.limit !== "number" || !Number.isFinite(opts.limit)) {

1809-

return undefined;

1816+

return defaultLimit;

18101817

}

18111818

return Math.max(1, Math.floor(opts.limit));

18121819

}

@@ -1843,12 +1850,12 @@ function sortAndLimitSessionEntries(

18431850

return limit === undefined ? sorted : sorted.slice(0, limit);

18441851

}

184518521846-

export function filterAndSortSessionEntries(params: {

1853+

function filterSessionEntries(params: {

18471854

store: Record<string, SessionEntry>;

18481855

opts: import("./protocol/index.js").SessionsListParams;

18491856

now: number;

18501857

rowContext?: SessionListRowContext;

1851-

}): [string, SessionEntry][] {

1858+

}): SessionEntryPair[] {

18521859

const { store, opts, now } = params;

18531860

const rowContext = params.rowContext;

18541861

const includeGlobal = opts.includeGlobal === true;

@@ -1941,7 +1948,33 @@ export function filterAndSortSessionEntries(params: {

19411948

entries = entries.filter(([, entry]) => (entry?.updatedAt ?? 0) >= cutoff);

19421949

}

194319501944-

return sortAndLimitSessionEntries(entries, resolveSessionsListLimit(opts));

1951+

return entries;

1952+

}

1953+1954+

function selectSessionEntries(params: {

1955+

store: Record<string, SessionEntry>;

1956+

opts: import("./protocol/index.js").SessionsListParams;

1957+

now: number;

1958+

rowContext?: SessionListRowContext;

1959+

defaultLimit?: number;

1960+

}): SessionEntrySelection {

1961+

const filtered = filterSessionEntries(params);

1962+

const limit = resolveSessionsListLimit(params.opts, params.defaultLimit);

1963+

const entries = sortAndLimitSessionEntries(filtered, limit);

1964+

return {

1965+

entries,

1966+

totalCount: filtered.length,

1967+

limitApplied: limit,

1968+

};

1969+

}

1970+1971+

export function filterAndSortSessionEntries(params: {

1972+

store: Record<string, SessionEntry>;

1973+

opts: import("./protocol/index.js").SessionsListParams;

1974+

now: number;

1975+

rowContext?: SessionListRowContext;

1976+

}): [string, SessionEntry][] {

1977+

return selectSessionEntries(params).entries;

19451978

}

1946197919471980

export function listSessionsFromStore(params: {

@@ -1964,12 +1997,14 @@ export function listSessionsFromStore(params: {

19641997

const includeLastMessage = opts.includeLastMessage === true;

19651998

const hasSpawnedByFilter = typeof opts.spawnedBy === "string" && opts.spawnedBy.length > 0;

196619991967-

const entries = filterAndSortSessionEntries({

2000+

const selection = selectSessionEntries({

19682001

store,

19692002

opts,

19702003

now,

19712004

rowContext: hasSpawnedByFilter ? getRowContext() : undefined,

2005+

defaultLimit: SESSIONS_LIST_DEFAULT_LIMIT,

19722006

});

2007+

const { entries, totalCount, limitApplied } = selection;

1973200819742009

const sessions = entries.map(([key, entry], index) => {

19752010

const includeTranscriptFields = index < sessionListTranscriptFieldRows;

@@ -1993,6 +2028,9 @@ export function listSessionsFromStore(params: {

19932028

ts: now,

19942029

path: storePath,

19952030

count: sessions.length,

2031+

totalCount,

2032+

limitApplied,

2033+

hasMore: sessions.length < totalCount,

19962034

defaults: getSessionDefaults(cfg, params.modelCatalog),

19972035

sessions,

19982036

};

@@ -2028,12 +2066,14 @@ export async function listSessionsFromStoreAsync(params: {

20282066

const includeLastMessage = opts.includeLastMessage === true;

20292067

const hasSpawnedByFilter = typeof opts.spawnedBy === "string" && opts.spawnedBy.length > 0;

203020682031-

const entries = filterAndSortSessionEntries({

2069+

const selection = selectSessionEntries({

20322070

store,

20332071

opts,

20342072

now,

20352073

rowContext: hasSpawnedByFilter ? getRowContext() : undefined,

2074+

defaultLimit: SESSIONS_LIST_DEFAULT_LIMIT,

20362075

});

2076+

const { entries, totalCount, limitApplied } = selection;

2037207720382078

const sessions: GatewaySessionRow[] = [];

20392079

for (let i = 0; i < entries.length; i++) {

@@ -2089,6 +2129,9 @@ export async function listSessionsFromStoreAsync(params: {

20892129

ts: now,

20902130

path: storePath,

20912131

count: sessions.length,

2132+

totalCount,

2133+

limitApplied,

2134+

hasMore: sessions.length < totalCount,

20922135

defaults: getSessionDefaults(cfg, params.modelCatalog),

20932136

sessions,

20942137

};