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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Jina AI
Jina AI
博客园 - 叶小钗
B
Blog RSS Feed
Recent Announcements
Recent Announcements
H
Help Net Security
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
B
Blog
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客

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(ios): hide agent sessions from recent sessions · open...
joshavant · 2026-06-06 · via Recent Commits to openclaw:main

@@ -2,6 +2,8 @@ import OpenClawChatUI

22

import SwiftUI

3344

struct CommandCenterTab: View {

5+

fileprivate static let recentSessionsFetchLimit = 200

6+57

@Environment(NodeAppModel.self) private var appModel

68

@Environment(\.colorScheme) private var colorScheme

79

@Environment(\.scenePhase) private var scenePhase

@@ -331,8 +333,7 @@ struct CommandCenterTab: View {

331333

private var sessionWorkItems: [WorkItem] {

332334

let currentSessionKey = self.appModel.chatSessionKey

333335

return self.recentChatSessions

334-

.filter { !Self.isHiddenInternalSession($0.key) }

335-

.filter { $0.key != self.appModel.defaultChatSessionKey }

336+

.filter { Self.isRecentChatSession($0.key, defaultSessionKey: self.appModel.defaultChatSessionKey) }

336337

.map { session in

337338

Self.sessionWorkItem(for: session, currentSessionKey: currentSessionKey)

338339

}

@@ -362,7 +363,7 @@ struct CommandCenterTab: View {

362363363364

do {

364365

let transport = IOSGatewayChatTransport(gateway: appModel.operatorSession)

365-

let response = try await transport.listSessions(limit: 20)

366+

let response = try await transport.listSessions(limit: Self.recentSessionsFetchLimit)

366367

self.defaultChatSessionEntry = response.sessions.first {

367368

$0.key == self.appModel.defaultChatSessionKey

368369

}

@@ -385,7 +386,7 @@ struct CommandCenterTab: View {

385386

var result: [OpenClawChatSessionEntry] = []

386387

var included = Set<String>()

387388388-

if currentSessionKey != defaultSessionKey,

389+

if Self.isRecentChatSession(currentSessionKey, defaultSessionKey: defaultSessionKey),

389390

let current = sorted.first(where: { $0.key == currentSessionKey })

390391

{

391392

result.append(current)

@@ -394,8 +395,7 @@ struct CommandCenterTab: View {

394395395396

for session in sorted {

396397

guard !included.contains(session.key) else { continue }

397-

guard session.key != defaultSessionKey else { continue }

398-

guard !Self.isHiddenInternalSession(session.key) else { continue }

398+

guard Self.isRecentChatSession(session.key, defaultSessionKey: defaultSessionKey) else { continue }

399399

result.append(session)

400400

included.insert(session.key)

401401

if result.count >= 4 { break }

@@ -491,12 +491,53 @@ struct CommandCenterTab: View {

491491

return formatter.localizedString(for: date, relativeTo: .now)

492492

}

493493494-

fileprivate static func isHiddenInternalSession(_ key: String) -> Bool {

494+

fileprivate nonisolated static func isHiddenInternalSession(_ key: String) -> Bool {

495495

let trimmed = key.trimmingCharacters(in: .whitespacesAndNewlines)

496496

guard !trimmed.isEmpty else { return false }

497497

return trimmed == "onboarding" || trimmed.hasSuffix(":onboarding")

498498

}

499499500+

nonisolated static func isRecentChatSession(_ key: String, defaultSessionKey: String) -> Bool {

501+

let trimmed = key.trimmingCharacters(in: .whitespacesAndNewlines)

502+

guard !trimmed.isEmpty else { return false }

503+

if trimmed == defaultSessionKey { return false }

504+

let normalized = trimmed.lowercased()

505+

let defaultBase = self.sessionBaseKey(defaultSessionKey)

506+

if !normalized.contains(":"),

507+

self.isDirectSessionBase(normalized, defaultBase: defaultBase)

508+

{

509+

return false

510+

}

511+

if self.isHiddenInternalSession(trimmed) { return false }

512+

return !self.isAgentDeviceSession(trimmed, defaultSessionKey: defaultSessionKey)

513+

}

514+515+

private nonisolated static func isAgentDeviceSession(_ key: String, defaultSessionKey: String) -> Bool {

516+

let parts = key

517+

.trimmingCharacters(in: .whitespacesAndNewlines)

518+

.split(separator: ":", omittingEmptySubsequences: false)

519+

guard parts.count >= 3, parts[0].lowercased() == "agent" else { return false }

520+

guard parts.count == 3 || parts[3].lowercased() == "thread" else { return false }

521+522+

let base = String(parts[2]).trimmingCharacters(in: .whitespacesAndNewlines).lowercased()

523+

let defaultKey = self.sessionBaseKey(defaultSessionKey)

524+

return self.isDirectSessionBase(base, defaultBase: defaultKey)

525+

}

526+527+

private nonisolated static func isDirectSessionBase(_ base: String, defaultBase: String) -> Bool {

528+

base == defaultBase || base == "main" || base == "global" || base.hasPrefix("node-")

529+

}

530+531+

private nonisolated static func sessionBaseKey(_ key: String) -> String {

532+

let parts = key

533+

.trimmingCharacters(in: .whitespacesAndNewlines)

534+

.split(separator: ":", omittingEmptySubsequences: false)

535+

guard parts.count >= 3, parts[0].lowercased() == "agent" else {

536+

return key.trimmingCharacters(in: .whitespacesAndNewlines).lowercased()

537+

}

538+

return String(parts[2]).trimmingCharacters(in: .whitespacesAndNewlines).lowercased()

539+

}

540+500541

private var gatewaySubtitle: String {

501542

if let server = normalized(appModel.gatewayServerName) {

502543

return "\(self.appModel.activeAgentName) on \(server)"

@@ -620,8 +661,9 @@ private struct CommandSessionsScreen: View {

620661621662

private var sessionRows: [CommandCenterTab.WorkItem] {

622663

self.sessions

623-

.filter { !CommandCenterTab.isHiddenInternalSession($0.key) }

624-

.filter { $0.key != self.appModel.defaultChatSessionKey }

664+

.filter { CommandCenterTab.isRecentChatSession(

665+

$0.key,

666+

defaultSessionKey: self.appModel.defaultChatSessionKey) }

625667

.sorted { ($0.updatedAt ?? 0) > ($1.updatedAt ?? 0) }

626668

.map {

627669

CommandCenterTab.sessionWorkItem(

@@ -658,7 +700,7 @@ private struct CommandSessionsScreen: View {

658700659701

do {

660702

let transport = IOSGatewayChatTransport(gateway: appModel.operatorSession)

661-

let response = try await transport.listSessions(limit: 200)

703+

let response = try await transport.listSessions(limit: CommandCenterTab.recentSessionsFetchLimit)

662704

self.sessions = response.sessions

663705

} catch {

664706

self.sessions = []