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

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

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(agents): resolve webchat current session status · ope...
sweetcornna · 2026-06-23 · via Recent Commits to openclaw:main

@@ -574,39 +574,43 @@ export function createSessionStatusTool(opts?: {

574574

if (isImplicitRunSessionStatus) {

575575

requestedKeyRaw = opts?.runSessionKey;

576576

}

577+

let requestedKeyInput = requestedKeyRaw?.trim() ?? "";

577578578579

// Track whether this is a semantic-current request (literal "current" or a

579580

// current-client alias) BEFORE any rewrite, so visibility treats it as self.

580581

const isSemanticCurrentRequest =

581-

requestedKeyRaw === "current" ||

582+

requestedKeyInput === "current" ||

582583

isImplicitRunSessionStatus ||

583584

Boolean(

584585

resolveCurrentSessionClientAlias({

585-

key: requestedKeyRaw ?? "",

586+

key: requestedKeyInput,

586587

requesterInternalKey: effectiveRequesterKey,

587588

}),

588589

);

589590590591

// Resolve semantic "current" to the live run session key for lookup purposes (#76708).

591592

// In sandboxed channel runs there may be no separate runSessionKey because the sandbox

592593

// key already is the live requester; avoid probing literal "current" through the gateway.

593-

if (requestedKeyRaw === "current" && (opts?.runSessionKey || opts?.sandboxed === true)) {

594+

if (requestedKeyInput === "current" && (opts?.runSessionKey || opts?.sandboxed === true)) {

594595

requestedKeyRaw = opts.runSessionKey ?? effectiveRequesterKey;

596+

requestedKeyInput = requestedKeyRaw?.trim() ?? "";

595597

}

596598597599

const currentSessionAlias = resolveCurrentSessionClientAlias({

598-

key: requestedKeyRaw ?? "",

600+

key: requestedKeyInput,

599601

requesterInternalKey: effectiveRequesterKey,

600602

});

601603

if (currentSessionAlias) {

602604

requestedKeyRaw = opts?.runSessionKey ?? currentSessionAlias;

605+

requestedKeyInput = requestedKeyRaw?.trim() ?? "";

603606

}

604-

const requestedKeyInput = requestedKeyRaw?.trim() ?? "";

607+

const effectiveRequesterLookupKey = effectiveRequesterKey.trim();

605608

let resolvedViaSessionId = false;

606609

let resolvedViaImplicitCurrentFallback = false;

607-

if (!requestedKeyRaw?.trim()) {

610+

if (!requestedKeyInput) {

608611

throw new Error("sessionKey required");

609612

}

613+

requestedKeyRaw = requestedKeyInput;

610614

const ensureAgentAccess = (targetAgentId: string) => {

611615

if (targetAgentId === requesterAgentId) {

612616

return;

@@ -622,20 +626,20 @@ export function createSessionStatusTool(opts?: {

622626

}

623627

};

624628625-

if (requestedKeyRaw.startsWith("agent:") && !isSemanticCurrentRequest) {

626-

const requestedAgentId = resolveAgentIdFromSessionKey(requestedKeyRaw);

629+

if (requestedKeyInput.startsWith("agent:") && !isSemanticCurrentRequest) {

630+

const requestedAgentId = resolveAgentIdFromSessionKey(requestedKeyInput);

627631

ensureAgentAccess(requestedAgentId);

628632

const access = visibilityGuard.check(

629-

normalizeVisibilityTargetSessionKey(requestedKeyRaw, requestedAgentId),

633+

normalizeVisibilityTargetSessionKey(requestedKeyInput, requestedAgentId),

630634

);

631635

if (!access.allowed) {

632636

throw new Error(access.error);

633637

}

634638

}

635639636-

const isExplicitAgentKey = requestedKeyRaw.startsWith("agent:");

640+

const isExplicitAgentKey = requestedKeyInput.startsWith("agent:");

637641

let agentId = isExplicitAgentKey

638-

? resolveAgentIdFromSessionKey(requestedKeyRaw)

642+

? resolveAgentIdFromSessionKey(requestedKeyInput)

639643

: requesterAgentId;

640644

let storePath = resolveStorePath(cfg.session?.store, { agentId });

641645

let store = loadSessionStore(storePath);

@@ -652,15 +656,15 @@ export function createSessionStatusTool(opts?: {

652656

alias,

653657

mainKey,

654658

requesterInternalKey: storeScopedRequesterKey,

655-

includeAliasFallback: requestedKeyRaw !== "current",

659+

includeAliasFallback: requestedKeyInput !== "current",

656660

});

657661658662

if (

659663

!resolved &&

660-

(requestedKeyRaw === "current" || shouldResolveSessionIdInput(requestedKeyRaw))

664+

(requestedKeyInput === "current" || shouldResolveSessionIdInput(requestedKeyInput))

661665

) {

662666

const resolvedSession = await resolveSessionReference({

663-

sessionKey: requestedKeyRaw,

667+

sessionKey: requestedKeyInput,

664668

alias,

665669

mainKey,

666670

requesterInternalKey: effectiveRequesterKey,

@@ -671,7 +675,7 @@ export function createSessionStatusTool(opts?: {

671675

resolvedSession,

672676

requesterSessionKey: effectiveRequesterKey,

673677

restrictToSpawned: opts?.sandboxed === true,

674-

visibilitySessionKey: requestedKeyRaw,

678+

visibilitySessionKey: requestedKeyInput,

675679

});

676680

if (!visibleSession.ok) {

677681

throw new Error("Session status visibility is restricted to the current session tree.");

@@ -680,6 +684,7 @@ export function createSessionStatusTool(opts?: {

680684

ensureAgentAccess(resolveAgentIdFromSessionKey(visibleSession.key));

681685

resolvedViaSessionId = true;

682686

requestedKeyRaw = visibleSession.key;

687+

requestedKeyInput = requestedKeyRaw.trim();

683688

agentId = resolveAgentIdFromSessionKey(visibleSession.key);

684689

storePath = resolveStorePath(cfg.session?.store, { agentId });

685690

store = loadSessionStore(storePath);

@@ -700,7 +705,18 @@ export function createSessionStatusTool(opts?: {

700705

}

701706

}

702707703-

if (!resolved && requestedKeyRaw === "current") {

708+

if (!resolved && requestedKeyInput === "current" && effectiveRequesterLookupKey) {

709+

resolved = resolveSessionEntry({

710+

store,

711+

keyRaw: effectiveRequesterLookupKey,

712+

alias,

713+

mainKey,

714+

requesterInternalKey: storeScopedRequesterKey,

715+

includeAliasFallback: false,

716+

});

717+

}

718+719+

if (!resolved && requestedKeyInput === "current") {

704720

resolved = resolveSessionEntry({

705721

store,

706722

keyRaw: requestedKeyRaw,

@@ -732,12 +748,15 @@ export function createSessionStatusTool(opts?: {

732748

}

733749734750

if (!resolved) {

751+

const runSessionFallbackKey = opts?.runSessionKey?.trim();

735752

const fallback = resolveImplicitCurrentSessionFallback({

736753

allowFallback: isSemanticCurrentRequest || requestedKeyParam === undefined,

737754

fallbackKey:

738-

(isSemanticCurrentRequest || isImplicitRunSessionStatus) && opts?.runSessionKey

739-

? opts.runSessionKey

740-

: storeScopedRequesterKey,

755+

(isSemanticCurrentRequest || isImplicitRunSessionStatus) && runSessionFallbackKey

756+

? runSessionFallbackKey

757+

: isSemanticCurrentRequest

758+

? effectiveRequesterLookupKey

759+

: storeScopedRequesterKey,

741760

});

742761

if (fallback) {

743762

resolved = fallback;

@@ -746,8 +765,8 @@ export function createSessionStatusTool(opts?: {

746765

}

747766748767

if (!resolved) {

749-

const kind = shouldResolveSessionIdInput(requestedKeyRaw) ? "sessionId" : "sessionKey";

750-

throw new Error(`Unknown ${kind}: ${requestedKeyRaw}`);

768+

const kind = shouldResolveSessionIdInput(requestedKeyInput) ? "sessionId" : "sessionKey";

769+

throw new Error(`Unknown ${kind}: ${requestedKeyInput}`);

751770

}

752771753772

// Preserve caller-scoped raw-key/current lookups as "self" for visibility checks.