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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Vercel News
Vercel News
C
Check Point Blog
G
Google Developers Blog
博客园 - 司徒正美
量子位
Engineering at Meta
Engineering at Meta
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
A
About on SuperTechFans
美团技术团队
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Cloudflare Blog
U
Unit 42

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(ui): align overview session labels · openclaw/opencla...
Maple778 · 2026-05-15 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ import {

1111

import { refreshVisibleToolsEffectiveForCurrentSession } from "../controllers/agents.ts";

1212

import { loadSessions } from "../controllers/sessions.ts";

1313

import { pushUniqueTrimmedSelectOption } from "../select-options.ts";

14+

import { isCronSessionKey, resolveSessionDisplayName } from "../session-display.ts";

1415

import {

1516

buildAgentMainSessionKey,

1617

isSubagentSessionKey,

@@ -439,127 +440,6 @@ async function switchChatThinkingLevel(state: AppViewState, nextThinkingLevel: s

439440

}

440441

}

441442442-

/* Channel display labels. */

443-

const CHANNEL_LABELS: Record<string, string> = {

444-

imessage: "iMessage",

445-

telegram: "Telegram",

446-

discord: "Discord",

447-

signal: "Signal",

448-

slack: "Slack",

449-

whatsapp: "WhatsApp",

450-

matrix: "Matrix",

451-

email: "Email",

452-

sms: "SMS",

453-

};

454-455-

const KNOWN_CHANNEL_KEYS = Object.keys(CHANNEL_LABELS);

456-457-

/** Parsed type / context extracted from a session key. */

458-

export type SessionKeyInfo = {

459-

/** Prefix for typed sessions (Subagent:/Cron:). Empty for others. */

460-

prefix: string;

461-

/** Human-readable fallback when no label / displayName is available. */

462-

fallbackName: string;

463-

};

464-465-

function capitalize(s: string): string {

466-

return s.charAt(0).toUpperCase() + s.slice(1);

467-

}

468-469-

/**

470-

* Parse a session key to extract type information and a human-readable

471-

* fallback display name. Exported for testing.

472-

*/

473-

export function parseSessionKey(key: string): SessionKeyInfo {

474-

const normalized = normalizeLowercaseStringOrEmpty(key);

475-476-

// Main session.

477-

if (key === "main" || key === "agent:main:main") {

478-

return { prefix: "", fallbackName: "Main Session" };

479-

}

480-481-

// Subagent.

482-

if (key.includes(":subagent:")) {

483-

return { prefix: "Subagent:", fallbackName: "Subagent:" };

484-

}

485-486-

// Cron job.

487-

if (normalized.startsWith("cron:") || key.includes(":cron:")) {

488-

return { prefix: "Cron:", fallbackName: "Cron Job:" };

489-

}

490-491-

// Direct chat: agent:<x>:<channel>:direct:<id>.

492-

const directMatch = key.match(/^agent:[^:]+:([^:]+):direct:(.+)$/);

493-

if (directMatch) {

494-

const channel = directMatch[1];

495-

const identifier = directMatch[2];

496-

const channelLabel = CHANNEL_LABELS[channel] ?? capitalize(channel);

497-

return { prefix: "", fallbackName: `${channelLabel} · ${identifier}` };

498-

}

499-500-

// Group chat: agent:<x>:<channel>:group:<id>.

501-

const groupMatch = key.match(/^agent:[^:]+:([^:]+):group:(.+)$/);

502-

if (groupMatch) {

503-

const channel = groupMatch[1];

504-

const channelLabel = CHANNEL_LABELS[channel] ?? capitalize(channel);

505-

return { prefix: "", fallbackName: `${channelLabel} Group` };

506-

}

507-508-

// Channel-prefixed legacy keys, for example "imessage:g-...".

509-

for (const ch of KNOWN_CHANNEL_KEYS) {

510-

if (key === ch || key.startsWith(`${ch}:`)) {

511-

return { prefix: "", fallbackName: `${CHANNEL_LABELS[ch]} Session` };

512-

}

513-

}

514-515-

// Unknown: return key as-is.

516-

return { prefix: "", fallbackName: key };

517-

}

518-519-

export function resolveSessionDisplayName(

520-

key: string,

521-

row?: SessionsListResult["sessions"][number],

522-

): string {

523-

const label = normalizeOptionalString(row?.label) ?? "";

524-

const displayName = normalizeOptionalString(row?.displayName) ?? "";

525-

const { prefix, fallbackName } = parseSessionKey(key);

526-527-

const applyTypedPrefix = (name: string): string => {

528-

if (!prefix) {

529-

return name;

530-

}

531-

const prefixPattern = new RegExp(`^${prefix.replace(/[.*+?^${}()|[\\]\\]/g, "\\$&")}\\s*`, "i");

532-

return prefixPattern.test(name) ? name : `${prefix} ${name}`;

533-

};

534-535-

if (label && label !== key) {

536-

return applyTypedPrefix(label);

537-

}

538-

if (displayName && displayName !== key) {

539-

return applyTypedPrefix(displayName);

540-

}

541-

return fallbackName;

542-

}

543-544-

export function isCronSessionKey(key: string): boolean {

545-

const normalized = normalizeLowercaseStringOrEmpty(key);

546-

if (!normalized) {

547-

return false;

548-

}

549-

if (normalized.startsWith("cron:")) {

550-

return true;

551-

}

552-

if (!normalized.startsWith("agent:")) {

553-

return false;

554-

}

555-

const parts = normalized.split(":").filter(Boolean);

556-

if (parts.length < 3) {

557-

return false;

558-

}

559-

const rest = parts.slice(2).join(":");

560-

return rest.startsWith("cron:");

561-

}

562-563443

type SessionOptionEntry = {

564444

key: string;

565445

label: string;