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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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-core): guard injected timestamps · openclaw/op...
steipete · 2026-05-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,11 +1,15 @@

11

import fs from "node:fs/promises";

22

import path from "node:path";

3-

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

3+

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

44

import { writeDailyDreamingPhaseBlock, writeDeepDreamingReport } from "./dreaming-markdown.js";

55

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

66
77

const { createTempWorkspace } = createMemoryCoreTestHarness();

88
9+

afterEach(() => {

10+

vi.restoreAllMocks();

11+

});

12+
913

async function expectPathMissing(targetPath: string): Promise<void> {

1014

const error = await fs.access(targetPath).then(

1115

() => undefined,

@@ -55,6 +59,25 @@ describe("dreaming markdown storage", () => {

5559

expect(content).toContain("- Candidate: remember the API key is fake");

5660

});

5761
62+

it("falls back when the injected timestamp is outside Date range", async () => {

63+

vi.spyOn(Date, "now").mockReturnValue(Date.UTC(2026, 4, 30, 12, 0, 0));

64+

const workspaceDir = await createTempWorkspace("openclaw-dreaming-markdown-");

65+
66+

const result = await writeDailyDreamingPhaseBlock({

67+

workspaceDir,

68+

phase: "light",

69+

bodyLines: ["- Candidate: bounded fallback"],

70+

nowMs: 8_640_000_000_000_001,

71+

timezone,

72+

storage: {

73+

mode: "inline",

74+

separateReports: false,

75+

},

76+

});

77+
78+

expect(requireInlinePath(result)).toBe(path.join(workspaceDir, "memory", "2026-05-30.md"));

79+

});

80+
5881

it("keeps multiple inline phases in the shared daily memory file", async () => {

5982

const workspaceDir = await createTempWorkspace("openclaw-dreaming-markdown-");

6083
Original file line numberDiff line numberDiff line change

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

1010

replaceManagedMarkdownBlock,

1111

withTrailingNewline,

1212

} from "openclaw/plugin-sdk/memory-host-markdown";

13+

import { resolveMemoryCoreNowMs, resolveMemoryCoreTimestamp } from "./time.js";

1314
1415

const DAILY_PHASE_HEADINGS: Record<Exclude<MemoryDreamingPhaseName, "deep">, string> = {

1516

light: "## Light Sleep",

@@ -63,7 +64,7 @@ export async function writeDailyDreamingPhaseBlock(params: {

6364

timezone?: string;

6465

storage: MemoryDreamingStorageConfig;

6566

}): Promise<{ inlinePath?: string; reportPath?: string }> {

66-

const nowMs = Number.isFinite(params.nowMs) ? (params.nowMs as number) : Date.now();

67+

const nowMs = resolveMemoryCoreNowMs(params.nowMs);

6768

const body = params.bodyLines.length > 0 ? params.bodyLines.join("\n") : "- No notable updates.";

6869

let inlinePath: string | undefined;

6970

let reportPath: string | undefined;

@@ -107,7 +108,7 @@ export async function writeDailyDreamingPhaseBlock(params: {

107108
108109

await appendMemoryHostEvent(params.workspaceDir, {

109110

type: "memory.dream.completed",

110-

timestamp: new Date(nowMs).toISOString(),

111+

timestamp: resolveMemoryCoreTimestamp(nowMs),

111112

phase: params.phase,

112113

...(inlinePath ? { inlinePath } : {}),

113114

...(reportPath ? { reportPath } : {}),

@@ -131,14 +132,14 @@ export async function writeDeepDreamingReport(params: {

131132

if (!shouldWriteSeparate(params.storage)) {

132133

return undefined;

133134

}

134-

const nowMs = Number.isFinite(params.nowMs) ? (params.nowMs as number) : Date.now();

135+

const nowMs = resolveMemoryCoreNowMs(params.nowMs);

135136

const reportPath = resolveSeparateReportPath(params.workspaceDir, "deep", nowMs, params.timezone);

136137

await fs.mkdir(path.dirname(reportPath), { recursive: true });

137138

const body = params.bodyLines.length > 0 ? params.bodyLines.join("\n") : "- No durable changes.";

138139

await fs.writeFile(reportPath, `# Deep Sleep\n\n${body}\n`, "utf-8");

139140

await appendMemoryHostEvent(params.workspaceDir, {

140141

type: "memory.dream.completed",

141-

timestamp: new Date(nowMs).toISOString(),

142+

timestamp: resolveMemoryCoreTimestamp(nowMs),

142143

phase: "deep",

143144

reportPath,

144145

lineCount: params.bodyLines.length,

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,18 @@

1+

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

2+

import { buildMemoryFlushPlan } from "./flush-plan.js";

3+
4+

describe("buildMemoryFlushPlan", () => {

5+

afterEach(() => {

6+

vi.restoreAllMocks();

7+

});

8+
9+

it("falls back when the injected timestamp is outside Date range", () => {

10+

vi.spyOn(Date, "now").mockReturnValue(Date.UTC(2026, 4, 30, 12, 0, 0));

11+
12+

const plan = buildMemoryFlushPlan({

13+

nowMs: 8_640_000_000_000_001,

14+

});

15+
16+

expect(plan?.relativePath).toBe("memory/2026-05-30.md");

17+

});

18+

});

Original file line numberDiff line numberDiff line change

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

66

type MemoryFlushPlan,

77

type OpenClawConfig,

88

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

9+

import { resolveMemoryCoreNowMs } from "./time.js";

910
1011

export const DEFAULT_MEMORY_FLUSH_SOFT_TOKENS = 4000;

1112

export const DEFAULT_MEMORY_FLUSH_FORCE_TRANSCRIPT_BYTES = 2 * 1024 * 1024;

@@ -53,7 +54,7 @@ function formatDateStampInTimezone(nowMs: number, timezone: string): string {

5354

if (year && month && day) {

5455

return `${year}-${month}-${day}`;

5556

}

56-

return new Date(nowMs).toISOString().slice(0, 10);

57+

return new Date(resolveMemoryCoreNowMs(nowMs)).toISOString().slice(0, 10);

5758

}

5859
5960

function normalizeNonNegativeInt(value: unknown): number | null {

@@ -99,7 +100,7 @@ export function buildMemoryFlushPlan(

99100

} = {},

100101

): MemoryFlushPlan | null {

101102

const resolved = params;

102-

const nowMs = Number.isFinite(resolved.nowMs) ? (resolved.nowMs as number) : Date.now();

103+

const nowMs = resolveMemoryCoreNowMs(resolved.nowMs);

103104

const cfg = resolved.cfg;

104105

const defaults = cfg?.agents?.defaults?.compaction?.memoryFlush;

105106

if (defaults?.enabled === false) {

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,10 @@

1+

import { timestampMsToIsoString } from "openclaw/plugin-sdk/number-runtime";

2+
3+

export function resolveMemoryCoreNowMs(nowMs: unknown): number {

4+

return timestampMsToIsoString(nowMs) === undefined ? Date.now() : (nowMs as number);

5+

}

6+
7+

export function resolveMemoryCoreTimestamp(nowMs: unknown): string {

8+

const timestampMs = resolveMemoryCoreNowMs(nowMs);

9+

return timestampMsToIsoString(timestampMs) ?? new Date().toISOString();

10+

}