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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
腾讯CDC
T
Tailwind CSS Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
The Cloudflare Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
B
Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research

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
[Feat] Gateway: add doctor.memory.remHarness probe (#6667...
samzong · 2026-04-29 · via Recent Commits to openclaw:main

@@ -10,11 +10,17 @@ import {

1010

resolveMemoryRemDreamingConfig,

1111

} from "openclaw/plugin-sdk/memory-core-host-status";

1212

import { describe, expect, it, vi } from "vitest";

13-

import { __testing, runDreamingSweepPhases } from "./dreaming-phases.js";

13+

import {

14+

__testing,

15+

filterRecallEntriesWithinLookback,

16+

runDreamingSweepPhases,

17+

} from "./dreaming-phases.js";

18+

import { previewRemHarness } from "./rem-harness.js";

1419

import {

1520

rankShortTermPromotionCandidates,

1621

recordShortTermRecalls,

1722

resolveShortTermPhaseSignalStorePath,

23+

type ShortTermRecallEntry,

1824

} from "./short-term-promotion.js";

1925

import { createMemoryCoreTestHarness } from "./test-helpers.js";

2026

@@ -2523,3 +2529,179 @@ describe("memory-core dreaming phases", () => {

25232529

expect(after2[0]?.dailyCount).toBe(2);

25242530

});

25252531

});

2532+2533+

describe("filterRecallEntriesWithinLookback", () => {

2534+

const NOW_MS = new Date("2026-04-15T12:00:00.000Z").getTime();

2535+

const LOOKBACK_DAYS = 3;

2536+

const STALE_LAST_RECALLED_AT = new Date("2026-03-01T00:00:00.000Z").toISOString();

2537+

const FRESH_RECALL_DAY = "2026-04-14";

2538+2539+

function makeEntry(

2540+

overrides: Partial<ShortTermRecallEntry> & Pick<ShortTermRecallEntry, "key">,

2541+

): ShortTermRecallEntry {

2542+

return {

2543+

key: overrides.key,

2544+

path: overrides.path ?? "src/example.ts",

2545+

startLine: overrides.startLine ?? 1,

2546+

endLine: overrides.endLine ?? 10,

2547+

source: "memory",

2548+

snippet: overrides.snippet ?? "example snippet",

2549+

recallCount: overrides.recallCount ?? 1,

2550+

dailyCount: overrides.dailyCount ?? 0,

2551+

groundedCount: overrides.groundedCount ?? 0,

2552+

totalScore: overrides.totalScore ?? 1,

2553+

maxScore: overrides.maxScore ?? 1,

2554+

firstRecalledAt: overrides.firstRecalledAt ?? STALE_LAST_RECALLED_AT,

2555+

lastRecalledAt: overrides.lastRecalledAt ?? STALE_LAST_RECALLED_AT,

2556+

queryHashes: overrides.queryHashes ?? [],

2557+

recallDays: overrides.recallDays ?? [],

2558+

conceptTags: overrides.conceptTags ?? [],

2559+

...(overrides.claimHash !== undefined ? { claimHash: overrides.claimHash } : {}),

2560+

...(overrides.promotedAt !== undefined ? { promotedAt: overrides.promotedAt } : {}),

2561+

};

2562+

}

2563+2564+

it("keeps entries with stale lastRecalledAt when recallDays has a recent day", () => {

2565+

const entry = makeEntry({

2566+

key: "stale-last-recalled-fresh-day",

2567+

lastRecalledAt: STALE_LAST_RECALLED_AT,

2568+

recallDays: [FRESH_RECALL_DAY],

2569+

});

2570+

const result = filterRecallEntriesWithinLookback({

2571+

entries: [entry],

2572+

nowMs: NOW_MS,

2573+

lookbackDays: LOOKBACK_DAYS,

2574+

});

2575+

expect(result).toHaveLength(1);

2576+

expect(result[0]?.key).toBe("stale-last-recalled-fresh-day");

2577+

});

2578+2579+

it("keeps entries with unparseable lastRecalledAt when recallDays has a recent day", () => {

2580+

const entry = makeEntry({

2581+

key: "bad-last-recalled-fresh-day",

2582+

lastRecalledAt: "not-a-date",

2583+

recallDays: [FRESH_RECALL_DAY],

2584+

});

2585+

const result = filterRecallEntriesWithinLookback({

2586+

entries: [entry],

2587+

nowMs: NOW_MS,

2588+

lookbackDays: LOOKBACK_DAYS,

2589+

});

2590+

expect(result).toHaveLength(1);

2591+

expect(result[0]?.key).toBe("bad-last-recalled-fresh-day");

2592+

});

2593+2594+

it("drops entries whose lastRecalledAt and recallDays are both outside the window", () => {

2595+

const entry = makeEntry({

2596+

key: "stale-everything",

2597+

lastRecalledAt: STALE_LAST_RECALLED_AT,

2598+

recallDays: ["2026-03-02"],

2599+

});

2600+

const result = filterRecallEntriesWithinLookback({

2601+

entries: [entry],

2602+

nowMs: NOW_MS,

2603+

lookbackDays: LOOKBACK_DAYS,

2604+

});

2605+

expect(result).toHaveLength(0);

2606+

});

2607+2608+

it("keeps entries with a recent lastRecalledAt even when recallDays is empty", () => {

2609+

const entry = makeEntry({

2610+

key: "fresh-last-recalled-no-days",

2611+

lastRecalledAt: new Date("2026-04-14T00:00:00.000Z").toISOString(),

2612+

recallDays: [],

2613+

});

2614+

const result = filterRecallEntriesWithinLookback({

2615+

entries: [entry],

2616+

nowMs: NOW_MS,

2617+

lookbackDays: LOOKBACK_DAYS,

2618+

});

2619+

expect(result).toHaveLength(1);

2620+

expect(result[0]?.key).toBe("fresh-last-recalled-no-days");

2621+

});

2622+

});

2623+2624+

describe("previewRemHarness", () => {

2625+

it("ignores daily-named directories when collecting grounded inputs", async () => {

2626+

const workspaceDir = await createDreamingWorkspace();

2627+

const memoryDir = path.join(workspaceDir, "memory");

2628+

await fs.mkdir(path.join(memoryDir, "2026-04-14.md"), { recursive: true });

2629+

await fs.writeFile(path.join(memoryDir, "2026-04-15.md"), "# Day\n\nWorked on REM.\n", "utf-8");

2630+2631+

const preview = await previewRemHarness({

2632+

workspaceDir,

2633+

grounded: true,

2634+

pluginConfig: {

2635+

dreaming: {

2636+

enabled: true,

2637+

phases: {

2638+

rem: { enabled: true, limit: 10 },

2639+

},

2640+

},

2641+

},

2642+

});

2643+2644+

expect(preview.groundedInputPaths.map((entry) => path.basename(entry))).toEqual([

2645+

"2026-04-15.md",

2646+

]);

2647+

expect(preview.grounded?.scannedFiles).toBe(1);

2648+

});

2649+2650+

it("keeps grounded preview null when no grounded inputs exist", async () => {

2651+

const workspaceDir = await createDreamingWorkspace();

2652+2653+

const preview = await previewRemHarness({

2654+

workspaceDir,

2655+

grounded: true,

2656+

pluginConfig: {

2657+

dreaming: {

2658+

enabled: true,

2659+

phases: {

2660+

rem: { enabled: true, limit: 10 },

2661+

},

2662+

},

2663+

},

2664+

});

2665+2666+

expect(preview.groundedInputPaths).toEqual([]);

2667+

expect(preview.grounded).toBeNull();

2668+

});

2669+2670+

it("skips REM preview when rem.limit=0 while still ranking deep candidates", async () => {

2671+

const workspaceDir = await createDreamingWorkspace();

2672+

const nowMs = new Date("2026-04-15T12:00:00.000Z").getTime();

2673+

await recordShortTermRecalls({

2674+

workspaceDir,

2675+

query: "outdoor plans",

2676+

nowMs,

2677+

results: [

2678+

{

2679+

path: "memory/2026-04-14.md",

2680+

startLine: 1,

2681+

endLine: 1,

2682+

score: 0.92,

2683+

snippet: "Always check weather before suggesting outdoor plans.",

2684+

source: "memory",

2685+

},

2686+

],

2687+

});

2688+2689+

const preview = await previewRemHarness({

2690+

workspaceDir,

2691+

nowMs,

2692+

pluginConfig: {

2693+

dreaming: {

2694+

enabled: true,

2695+

phases: {

2696+

rem: { enabled: true, limit: 0 },

2697+

},

2698+

},

2699+

},

2700+

});

2701+2702+

expect(preview.remSkipped).toBe(true);

2703+

expect(preview.rem.candidateTruths).toEqual([]);

2704+

expect(preview.rem.bodyLines).toEqual([]);

2705+

expect(preview.deep.candidates[0]?.snippet).toContain("Always check weather");

2706+

});

2707+

});