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

推荐订阅源

J
Java Code Geeks
美团技术团队
Recent Announcements
Recent Announcements
B
Blog
GbyAI
GbyAI
雷峰网
雷峰网
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
V
V2EX
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
aimingoo的专栏
aimingoo的专栏

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
perf: skip canonical session migration parses · openclaw/...
steipete · 2026-05-26 · via Recent Commits to openclaw:main

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

3838

ensureDir,

3939

existsDir,

4040

fileExists,

41+

parseSessionStoreJson5,

4142

readSessionStoreJson5,

4243

type SessionEntryLike,

4344

safeReadDir,

@@ -466,6 +467,213 @@ function canonicalizeSessionStore(params: {

466467

return { store: canonical, legacyKeys };

467468

}

468469470+

function skipJson5Trivia(raw: string, index: number): number {

471+

let i = index;

472+

while (i < raw.length) {

473+

const ch = raw[i];

474+

if (ch === " " || ch === "\n" || ch === "\r" || ch === "\t") {

475+

i++;

476+

continue;

477+

}

478+

if (ch === "/" && raw[i + 1] === "/") {

479+

i += 2;

480+

while (i < raw.length && raw[i] !== "\n") {

481+

i++;

482+

}

483+

continue;

484+

}

485+

if (ch === "/" && raw[i + 1] === "*") {

486+

i += 2;

487+

while (i < raw.length && !(raw[i] === "*" && raw[i + 1] === "/")) {

488+

i++;

489+

}

490+

return i < raw.length ? i + 2 : i;

491+

}

492+

break;

493+

}

494+

return i;

495+

}

496+497+

function readJson5String(raw: string, index: number): { value: string; next: number } | null {

498+

const quote = raw[index];

499+

if (quote !== '"' && quote !== "'") {

500+

return null;

501+

}

502+

let i = index + 1;

503+

let value = "";

504+

while (i < raw.length) {

505+

const ch = raw[i];

506+

if (ch === quote) {

507+

return { value, next: i + 1 };

508+

}

509+

if (ch === "\\") {

510+

return null;

511+

}

512+

value += ch;

513+

i++;

514+

}

515+

return null;

516+

}

517+518+

function readJson5BareKey(raw: string, index: number): { value: string; next: number } | null {

519+

let i = index;

520+

while (i < raw.length) {

521+

const ch = raw[i];

522+

if (

523+

ch === ":" ||

524+

ch === " " ||

525+

ch === "\n" ||

526+

ch === "\r" ||

527+

ch === "\t" ||

528+

ch === "," ||

529+

ch === "}" ||

530+

ch === "{" ||

531+

ch === "[" ||

532+

ch === "]"

533+

) {

534+

break;

535+

}

536+

i++;

537+

}

538+

if (i === index) {

539+

return null;

540+

}

541+

return { value: raw.slice(index, i), next: i };

542+

}

543+544+

function listTopLevelSessionStoreKeys(raw: string): string[] | null {

545+

let i = skipJson5Trivia(raw, 0);

546+

if (raw[i] !== "{") {

547+

return null;

548+

}

549+

i++;

550+

const keys: string[] = [];

551+

let depth = 1;

552+

let expectingKey = true;

553+554+

while (i < raw.length) {

555+

i = skipJson5Trivia(raw, i);

556+

const ch = raw[i];

557+

if (ch === undefined) {

558+

return null;

559+

}

560+

if (depth === 1 && ch === "}") {

561+

return keys;

562+

}

563+

if (depth === 1 && expectingKey) {

564+

const key = ch === '"' || ch === "'" ? readJson5String(raw, i) : readJson5BareKey(raw, i);

565+

if (!key) {

566+

return null;

567+

}

568+

i = skipJson5Trivia(raw, key.next);

569+

if (raw[i] !== ":") {

570+

return null;

571+

}

572+

keys.push(key.value);

573+

i++;

574+

expectingKey = false;

575+

continue;

576+

}

577+

if (ch === '"' || ch === "'") {

578+

const str = readJson5String(raw, i);

579+

if (!str) {

580+

return null;

581+

}

582+

i = str.next;

583+

continue;

584+

}

585+

if (ch === "{" || ch === "[") {

586+

depth++;

587+

i++;

588+

continue;

589+

}

590+

if (ch === "}" || ch === "]") {

591+

depth--;

592+

i++;

593+

if (depth < 1) {

594+

return keys;

595+

}

596+

continue;

597+

}

598+

if (depth === 1 && ch === ",") {

599+

expectingKey = true;

600+

i++;

601+

continue;

602+

}

603+

i++;

604+

}

605+

return null;

606+

}

607+608+

export function sessionStoreTextMayNeedCanonicalization(params: {

609+

raw: string;

610+

storeAgentIds: Iterable<string>;

611+

mainKey: string;

612+

scope?: SessionScope;

613+

}): boolean {

614+

const keys = listTopLevelSessionStoreKeys(params.raw);

615+

if (!keys) {

616+

return true;

617+

}

618+

const storeAgentIds = new Set([...params.storeAgentIds].map((id) => normalizeAgentId(id)));

619+

const hasNonMainAgent = [...storeAgentIds].some((id) => id !== DEFAULT_AGENT_ID);

620+

for (const key of keys) {

621+

const rawKey = key.trim();

622+

if (rawKey !== key) {

623+

return true;

624+

}

625+

if (!rawKey) {

626+

continue;

627+

}

628+

const lowerKey = normalizeLowercaseStringOrEmpty(rawKey);

629+

if (lowerKey !== rawKey) {

630+

return true;

631+

}

632+

if (lowerKey === "global" || lowerKey === "unknown") {

633+

continue;

634+

}

635+

if (lowerKey === DEFAULT_MAIN_KEY || lowerKey === params.mainKey) {

636+

return true;

637+

}

638+

if (lowerKey.startsWith("subagent:")) {

639+

return true;

640+

}

641+

if (lowerKey.startsWith("group:") || lowerKey.startsWith("channel:")) {

642+

return true;

643+

}

644+

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

645+

return true;

646+

}

647+

for (const storeAgentId of storeAgentIds) {

648+

const agentMainAlias = `agent:${storeAgentId}:${DEFAULT_MAIN_KEY}`;

649+

const agentMainKey = `agent:${storeAgentId}:${params.mainKey}`;

650+

if (

651+

lowerKey === agentMainAlias &&

652+

(params.mainKey !== DEFAULT_MAIN_KEY || params.scope === "global")

653+

) {

654+

return true;

655+

}

656+

if (lowerKey === agentMainKey && params.scope === "global") {

657+

return true;

658+

}

659+

}

660+

if (

661+

lowerKey === `agent:${DEFAULT_AGENT_ID}:${DEFAULT_MAIN_KEY}` &&

662+

(params.mainKey !== DEFAULT_MAIN_KEY || hasNonMainAgent || params.scope === "global")

663+

) {

664+

return true;

665+

}

666+

if (

667+

lowerKey === `agent:${DEFAULT_AGENT_ID}:${params.mainKey}` &&

668+

hasNonMainAgent &&

669+

!storeAgentIds.has(DEFAULT_AGENT_ID)

670+

) {

671+

return true;

672+

}

673+

}

674+

return false;

675+

}

676+469677

function listLegacySessionKeys(params: {

470678

store: Record<string, SessionEntryLike>;

471679

agentId: string;

@@ -1163,9 +1371,26 @@ export async function migrateOrphanedSessionKeys(params: {

11631371

if (!fileExists(storePath)) {

11641372

continue;

11651373

}

1374+

let raw: string;

1375+

try {

1376+

raw = fs.readFileSync(storePath, "utf-8");

1377+

} catch (err) {

1378+

warnings.push(`Could not read ${storePath}: ${String(err)}`);

1379+

continue;

1380+

}

1381+

if (

1382+

!sessionStoreTextMayNeedCanonicalization({

1383+

raw,

1384+

storeAgentIds,

1385+

mainKey,

1386+

scope,

1387+

})

1388+

) {

1389+

continue;

1390+

}

11661391

let parsed: ReturnType<typeof readSessionStoreJson5>;

11671392

try {

1168-

parsed = readSessionStoreJson5(storePath);

1393+

parsed = parseSessionStoreJson5(raw);

11691394

} catch (err) {

11701395

warnings.push(`Could not read ${storePath}: ${String(err)}`);

11711396

continue;