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

推荐订阅源

The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
The Cloudflare Blog
G
Google Developers Blog
博客园_首页
Martin Fowler
Martin Fowler
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
D
Docker
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
GbyAI
GbyAI

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(hooks): avoid stale lancedb startup fallback · opencl...
vincentkoc · 2026-04-23 · via Recent Commits to openclaw:main

@@ -511,6 +511,117 @@ describe("memory plugin e2e", () => {

511511

}

512512

});

513513514+

test("fails closed for auto-recall when the live plugin entry is removed", async () => {

515+

const embeddingsCreate = vi.fn(async () => ({

516+

data: [{ embedding: [0.1, 0.2, 0.3] }],

517+

}));

518+

const ensureGlobalUndiciEnvProxyDispatcher = vi.fn();

519+

const loadLanceDbModule = vi.fn(async () => ({

520+

connect: vi.fn(async () => ({

521+

tableNames: vi.fn(async () => ["memories"]),

522+

openTable: vi.fn(async () => ({

523+

vectorSearch: vi.fn(() => ({ limit: vi.fn(() => ({ toArray: vi.fn(async () => []) })) })),

524+

countRows: vi.fn(async () => 0),

525+

add: vi.fn(async () => undefined),

526+

delete: vi.fn(async () => undefined),

527+

})),

528+

})),

529+

}));

530+

let configFile: Record<string, unknown> = {

531+

plugins: {

532+

entries: {

533+

"memory-lancedb": {

534+

config: {

535+

embedding: {

536+

apiKey: OPENAI_API_KEY,

537+

model: "text-embedding-3-small",

538+

},

539+

dbPath: getDbPath(),

540+

autoCapture: false,

541+

autoRecall: true,

542+

},

543+

},

544+

},

545+

},

546+

};

547+548+

vi.resetModules();

549+

vi.doMock("openclaw/plugin-sdk/runtime-env", () => ({

550+

ensureGlobalUndiciEnvProxyDispatcher,

551+

}));

552+

vi.doMock("openai", () => ({

553+

default: class MockOpenAI {

554+

embeddings = { create: embeddingsCreate };

555+

},

556+

}));

557+

vi.doMock("./lancedb-runtime.js", () => ({

558+

loadLanceDbModule,

559+

}));

560+561+

try {

562+

const { default: dynamicMemoryPlugin } = await import("./index.js");

563+

const on = vi.fn();

564+

const mockApi = {

565+

id: "memory-lancedb",

566+

name: "Memory (LanceDB)",

567+

source: "test",

568+

config: {},

569+

pluginConfig: {

570+

embedding: {

571+

apiKey: OPENAI_API_KEY,

572+

model: "text-embedding-3-small",

573+

},

574+

dbPath: getDbPath(),

575+

autoCapture: false,

576+

autoRecall: true,

577+

},

578+

runtime: {

579+

config: {

580+

loadConfig: () => configFile,

581+

},

582+

},

583+

logger: {

584+

info: vi.fn(),

585+

warn: vi.fn(),

586+

error: vi.fn(),

587+

debug: vi.fn(),

588+

},

589+

registerTool: vi.fn(),

590+

registerCli: vi.fn(),

591+

registerService: vi.fn(),

592+

on,

593+

resolvePath: (p: string) => p,

594+

};

595+596+

dynamicMemoryPlugin.register(mockApi as any);

597+598+

configFile = {

599+

plugins: {

600+

entries: {},

601+

},

602+

};

603+604+

const beforePromptBuild = on.mock.calls.find(

605+

([hookName]) => hookName === "before_prompt_build",

606+

)?.[1];

607+

expect(beforePromptBuild).toBeTypeOf("function");

608+609+

const result = await beforePromptBuild?.(

610+

{ prompt: "what editor should i use after memory is removed?", messages: [] },

611+

{},

612+

);

613+614+

expect(result).toBeUndefined();

615+

expect(embeddingsCreate).not.toHaveBeenCalled();

616+

expect(loadLanceDbModule).not.toHaveBeenCalled();

617+

} finally {

618+

vi.doUnmock("openclaw/plugin-sdk/runtime-env");

619+

vi.doUnmock("openai");

620+

vi.doUnmock("./lancedb-runtime.js");

621+

vi.resetModules();

622+

}

623+

});

624+514625

test("runs auto-capture through the registered agent_end hook", async () => {

515626

const embeddingsCreate = vi.fn(async () => ({

516627

data: [{ embedding: [0.1, 0.2, 0.3] }],

@@ -744,6 +855,119 @@ describe("memory plugin e2e", () => {

744855

}

745856

});

746857858+

test("fails closed for auto-capture when the live plugin entry is removed", async () => {

859+

const embeddingsCreate = vi.fn(async () => ({

860+

data: [{ embedding: [0.1, 0.2, 0.3] }],

861+

}));

862+

const ensureGlobalUndiciEnvProxyDispatcher = vi.fn();

863+

const add = vi.fn(async () => undefined);

864+

const loadLanceDbModule = vi.fn(async () => ({

865+

connect: vi.fn(async () => ({

866+

tableNames: vi.fn(async () => ["memories"]),

867+

openTable: vi.fn(async () => ({

868+

vectorSearch: vi.fn(() => ({ limit: vi.fn(() => ({ toArray: vi.fn(async () => []) })) })),

869+

countRows: vi.fn(async () => 0),

870+

add,

871+

delete: vi.fn(async () => undefined),

872+

})),

873+

})),

874+

}));

875+

let configFile: Record<string, unknown> = {

876+

plugins: {

877+

entries: {

878+

"memory-lancedb": {

879+

config: {

880+

embedding: {

881+

apiKey: OPENAI_API_KEY,

882+

model: "text-embedding-3-small",

883+

},

884+

dbPath: getDbPath(),

885+

autoCapture: true,

886+

autoRecall: false,

887+

},

888+

},

889+

},

890+

},

891+

};

892+893+

vi.resetModules();

894+

vi.doMock("openclaw/plugin-sdk/runtime-env", () => ({

895+

ensureGlobalUndiciEnvProxyDispatcher,

896+

}));

897+

vi.doMock("openai", () => ({

898+

default: class MockOpenAI {

899+

embeddings = { create: embeddingsCreate };

900+

},

901+

}));

902+

vi.doMock("./lancedb-runtime.js", () => ({

903+

loadLanceDbModule,

904+

}));

905+906+

try {

907+

const { default: dynamicMemoryPlugin } = await import("./index.js");

908+

const on = vi.fn();

909+

const mockApi = {

910+

id: "memory-lancedb",

911+

name: "Memory (LanceDB)",

912+

source: "test",

913+

config: {},

914+

pluginConfig: {

915+

embedding: {

916+

apiKey: OPENAI_API_KEY,

917+

model: "text-embedding-3-small",

918+

},

919+

dbPath: getDbPath(),

920+

autoCapture: true,

921+

autoRecall: false,

922+

},

923+

runtime: {

924+

config: {

925+

loadConfig: () => configFile,

926+

},

927+

},

928+

logger: {

929+

info: vi.fn(),

930+

warn: vi.fn(),

931+

error: vi.fn(),

932+

debug: vi.fn(),

933+

},

934+

registerTool: vi.fn(),

935+

registerCli: vi.fn(),

936+

registerService: vi.fn(),

937+

on,

938+

resolvePath: (p: string) => p,

939+

};

940+941+

dynamicMemoryPlugin.register(mockApi as any);

942+943+

configFile = {

944+

plugins: {

945+

entries: {},

946+

},

947+

};

948+949+

const agentEnd = on.mock.calls.find(([hookName]) => hookName === "agent_end")?.[1];

950+

expect(agentEnd).toBeTypeOf("function");

951+952+

await agentEnd?.(

953+

{

954+

success: true,

955+

messages: [{ role: "user", content: "I prefer Helix for editing code every day." }],

956+

},

957+

{},

958+

);

959+960+

expect(embeddingsCreate).not.toHaveBeenCalled();

961+

expect(loadLanceDbModule).not.toHaveBeenCalled();

962+

expect(add).not.toHaveBeenCalled();

963+

} finally {

964+

vi.doUnmock("openclaw/plugin-sdk/runtime-env");

965+

vi.doUnmock("openai");

966+

vi.doUnmock("./lancedb-runtime.js");

967+

vi.resetModules();

968+

}

969+

});

970+747971

test("passes configured dimensions to OpenAI embeddings API", async () => {

748972

const embeddingsCreate = vi.fn(async () => ({

749973

data: [{ embedding: [0.1, 0.2, 0.3] }],