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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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(memory-lancedb): skip processed auto-capture messages...
vincentkoc · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1271,6 +1271,232 @@ describe("memory plugin e2e", () => {

12711271

}

12721272

});

127312731274+

async function setupAutoCaptureCursorHarness(overrides?: {

1275+

embeddingsCreate?: ReturnType<typeof vi.fn>;

1276+

searchResults?: Array<Record<string, unknown>>;

1277+

}) {

1278+

const embeddingsCreate =

1279+

overrides?.embeddingsCreate ??

1280+

vi.fn(async () => ({

1281+

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

1282+

}));

1283+

const ensureGlobalUndiciEnvProxyDispatcher = vi.fn();

1284+

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

1285+

const toArray = vi.fn(async () => overrides?.searchResults ?? []);

1286+

const limit = vi.fn(() => ({ toArray }));

1287+

const vectorSearch = vi.fn(() => ({ limit }));

1288+

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

1289+

vectorSearch,

1290+

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

1291+

add,

1292+

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

1293+

}));

1294+

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

1295+

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

1296+

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

1297+

openTable,

1298+

})),

1299+

}));

1300+1301+

vi.resetModules();

1302+

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

1303+

ensureGlobalUndiciEnvProxyDispatcher,

1304+

}));

1305+

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

1306+

default: class MockOpenAI {

1307+

embeddings = { create: embeddingsCreate };

1308+

},

1309+

}));

1310+

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

1311+

loadLanceDbModule,

1312+

}));

1313+1314+

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

1315+

const on = vi.fn();

1316+

const logger = {

1317+

info: vi.fn(),

1318+

warn: vi.fn(),

1319+

error: vi.fn(),

1320+

debug: vi.fn(),

1321+

};

1322+

const mockApi = {

1323+

id: "memory-lancedb",

1324+

name: "Memory (LanceDB)",

1325+

source: "test",

1326+

config: {},

1327+

pluginConfig: {

1328+

embedding: {

1329+

apiKey: OPENAI_API_KEY,

1330+

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

1331+

},

1332+

dbPath: getDbPath(),

1333+

autoCapture: true,

1334+

autoRecall: false,

1335+

},

1336+

runtime: {},

1337+

logger,

1338+

registerTool: vi.fn(),

1339+

registerCli: vi.fn(),

1340+

registerService: vi.fn(),

1341+

on,

1342+

resolvePath: (p: string) => p,

1343+

};

1344+1345+

dynamicMemoryPlugin.register(mockApi as any);

1346+1347+

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

1348+

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

1349+

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

1350+

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

1351+1352+

return {

1353+

add,

1354+

agentEnd,

1355+

embeddingsCreate,

1356+

ensureGlobalUndiciEnvProxyDispatcher,

1357+

loadLanceDbModule,

1358+

logger,

1359+

sessionEnd,

1360+

};

1361+

}

1362+1363+

async function cleanupAutoCaptureCursorHarness() {

1364+

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

1365+

vi.doUnmock("openai");

1366+

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

1367+

vi.resetModules();

1368+

}

1369+1370+

test("skips already-processed auto-capture messages by session cursor", async () => {

1371+

const harness = await setupAutoCaptureCursorHarness();

1372+1373+

try {

1374+

await harness.agentEnd?.(

1375+

{

1376+

success: true,

1377+

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

1378+

},

1379+

{ sessionKey: "session-a" },

1380+

);

1381+

await harness.agentEnd?.(

1382+

{

1383+

success: true,

1384+

messages: [

1385+

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

1386+

{ role: "user", content: "I prefer Fish for shell commands every day." },

1387+

],

1388+

},

1389+

{ sessionKey: "session-a" },

1390+

);

1391+1392+

expect(harness.embeddingsCreate).toHaveBeenCalledTimes(2);

1393+

expect(harness.embeddingsCreate).toHaveBeenNthCalledWith(1, {

1394+

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

1395+

input: "I prefer Helix for editing code every day.",

1396+

encoding_format: "float",

1397+

});

1398+

expect(harness.embeddingsCreate).toHaveBeenNthCalledWith(2, {

1399+

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

1400+

input: "I prefer Fish for shell commands every day.",

1401+

encoding_format: "float",

1402+

});

1403+

expect(harness.add).toHaveBeenCalledTimes(2);

1404+

} finally {

1405+

await cleanupAutoCaptureCursorHarness();

1406+

}

1407+

});

1408+1409+

test("does not advance auto-capture cursor when message processing fails", async () => {

1410+

const embeddingsCreate = vi

1411+

.fn()

1412+

.mockRejectedValueOnce(new Error("temporary embedding failure"))

1413+

.mockResolvedValueOnce({ data: [{ embedding: [0.1, 0.2, 0.3] }] });

1414+

const harness = await setupAutoCaptureCursorHarness({ embeddingsCreate });

1415+1416+

try {

1417+

const event = {

1418+

success: true,

1419+

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

1420+

};

1421+1422+

await harness.agentEnd?.(event, { sessionKey: "session-failure" });

1423+

await harness.agentEnd?.(event, { sessionKey: "session-failure" });

1424+1425+

expect(embeddingsCreate).toHaveBeenCalledTimes(2);

1426+

expect(harness.add).toHaveBeenCalledTimes(1);

1427+

expect(harness.logger.warn).toHaveBeenCalledWith(

1428+

expect.stringContaining("memory-lancedb: capture failed:"),

1429+

);

1430+

} finally {

1431+

await cleanupAutoCaptureCursorHarness();

1432+

}

1433+

});

1434+1435+

test("does not lose new auto-capture messages after history compaction rewrites prior turns", async () => {

1436+

const harness = await setupAutoCaptureCursorHarness();

1437+1438+

try {

1439+

await harness.agentEnd?.(

1440+

{

1441+

success: true,

1442+

messages: [

1443+

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

1444+

{ role: "user", content: "I prefer Fish for shell commands every day." },

1445+

],

1446+

},

1447+

{ sessionKey: "session-compacted" },

1448+

);

1449+

await harness.agentEnd?.(

1450+

{

1451+

success: true,

1452+

messages: [

1453+

{ role: "assistant", content: "Earlier history was compacted." },

1454+

{ role: "user", content: "I prefer Deno for small scripts every day." },

1455+

],

1456+

},

1457+

{ sessionKey: "session-compacted" },

1458+

);

1459+1460+

expect(harness.embeddingsCreate).toHaveBeenCalledTimes(3);

1461+

expect(harness.embeddingsCreate).toHaveBeenNthCalledWith(3, {

1462+

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

1463+

input: "I prefer Deno for small scripts every day.",

1464+

encoding_format: "float",

1465+

});

1466+

expect(harness.add).toHaveBeenCalledTimes(3);

1467+

} finally {

1468+

await cleanupAutoCaptureCursorHarness();

1469+

}

1470+

});

1471+1472+

test("evicts auto-capture cursor state on session end", async () => {

1473+

const harness = await setupAutoCaptureCursorHarness();

1474+1475+

try {

1476+

const event = {

1477+

success: true,

1478+

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

1479+

};

1480+1481+

await harness.agentEnd?.(event, { sessionKey: "session-ended" });

1482+

await harness.sessionEnd?.(

1483+

{

1484+

sessionId: "session-id",

1485+

sessionKey: "session-ended",

1486+

messageCount: 1,

1487+

reason: "deleted",

1488+

},

1489+

{ sessionId: "session-id", sessionKey: "session-ended" },

1490+

);

1491+

await harness.agentEnd?.(event, { sessionKey: "session-ended" });

1492+1493+

expect(harness.embeddingsCreate).toHaveBeenCalledTimes(2);

1494+

expect(harness.add).toHaveBeenCalledTimes(2);

1495+

} finally {

1496+

await cleanupAutoCaptureCursorHarness();

1497+

}

1498+

});

1499+12741500

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

12751501

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

12761502

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