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

推荐订阅源

博客园_首页
爱范儿
爱范儿
罗磊的独立博客
V
V2EX
量子位
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园 - 叶小钗
小众软件
小众软件
博客园 - 【当耐特】
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell

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
refactor: trim memory core helper exports · openclaw/open...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2,25 +2,12 @@ import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";

22

import { registerMemoryCli } from "./src/cli.js";

33

import { registerDreamingCommand } from "./src/dreaming-command.js";

44

import { registerShortTermPromotionDreaming } from "./src/dreaming.js";

5-

import {

6-

buildMemoryFlushPlan,

7-

DEFAULT_MEMORY_FLUSH_FORCE_TRANSCRIPT_BYTES,

8-

DEFAULT_MEMORY_FLUSH_PROMPT,

9-

DEFAULT_MEMORY_FLUSH_SOFT_TOKENS,

10-

} from "./src/flush-plan.js";

5+

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

116

import { registerBuiltInMemoryEmbeddingProviders } from "./src/memory/provider-adapters.js";

127

import { buildPromptSection } from "./src/prompt-section.js";

138

import { listMemoryCorePublicArtifacts } from "./src/public-artifacts.js";

149

import { memoryRuntime } from "./src/runtime-provider.js";

1510

import { createMemoryGetTool, createMemorySearchTool } from "./src/tools.js";

16-

export {

17-

buildMemoryFlushPlan,

18-

DEFAULT_MEMORY_FLUSH_FORCE_TRANSCRIPT_BYTES,

19-

DEFAULT_MEMORY_FLUSH_PROMPT,

20-

DEFAULT_MEMORY_FLUSH_SOFT_TOKENS,

21-

} from "./src/flush-plan.js";

22-

export { buildPromptSection } from "./src/prompt-section.js";

23-
2411

export default definePluginEntry({

2512

id: "memory-core",

2613

name: "Memory (Core)",

Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import { normalizeLowercaseStringOrEmpty } from "openclaw/plugin-sdk/text-runtim

33
44

export const MAX_CONCEPT_TAGS = 8;

55
6-

export type ConceptTagScriptFamily = "latin" | "cjk" | "mixed" | "other";

6+

type ConceptTagScriptFamily = "latin" | "cjk" | "mixed" | "other";

77
88

export type ConceptTagScriptCoverage = {

99

latinEntryCount: number;

Original file line numberDiff line numberDiff line change

@@ -244,7 +244,7 @@ async function startNarrativeRunOrFallback(params: {

244244

/**

245245

* Build the deterministic subagent session key used for dream narratives.

246246

*/

247-

export function buildNarrativeSessionKey(params: {

247+

function buildNarrativeSessionKey(params: {

248248

workspaceDir: string;

249249

phase: NarrativePhaseData["phase"];

250250

nowMs: number;

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,7 @@ import { randomUUID } from "node:crypto";

22

import fs from "node:fs/promises";

33

import path from "node:path";

44
5-

export type DreamingArtifactsAuditIssue = {

5+

type DreamingArtifactsAuditIssue = {

66

severity: "warn" | "error";

77

code:

88

| "dreaming-session-corpus-unreadable"

Original file line numberDiff line numberDiff line change

@@ -108,7 +108,7 @@ type CronServiceLike = {

108108

remove: (id: string) => Promise<{ removed?: boolean }>;

109109

};

110110
111-

export type ShortTermPromotionDreamingConfig = {

111+

type ShortTermPromotionDreamingConfig = {

112112

enabled: boolean;

113113

cron: string;

114114

timezone?: string;

Original file line numberDiff line numberDiff line change

@@ -31,7 +31,7 @@ export const DEFAULT_MEMORY_FLUSH_PROMPT = [

3131

`If nothing to store, reply with ${SILENT_REPLY_TOKEN}.`,

3232

].join(" ");

3333
34-

export const DEFAULT_MEMORY_FLUSH_SYSTEM_PROMPT = [

34+

const DEFAULT_MEMORY_FLUSH_SYSTEM_PROMPT = [

3535

"Pre-compaction memory flush turn.",

3636

"The session is near auto-compaction; capture durable memories to disk.",

3737

MEMORY_FLUSH_TARGET_HINT,

Original file line numberDiff line numberDiff line change

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

11

import type { MemorySearchRuntimeDebug } from "openclaw/plugin-sdk/memory-core-host-runtime-files";

22

import { vi } from "vitest";

33
4-

export type SearchImpl = (opts?: {

4+

type SearchImpl = (opts?: {

55

maxResults?: number;

66

minScore?: number;

77

sessionKey?: string;

88

qmdSearchModeOverride?: "query" | "search" | "vsearch";

99

onDebug?: (debug: MemorySearchRuntimeDebug) => void;

1010

}) => Promise<unknown[]>;

1111

export type MemoryReadParams = { relPath: string; from?: number; lines?: number };

12-

export type MemoryReadResult = {

12+

type MemoryReadResult = {

1313

text: string;

1414

path: string;

1515

truncated?: boolean;

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,4 @@

11

import {

2-

DEFAULT_LOCAL_MODEL,

32

getMemoryEmbeddingProvider,

43

listMemoryEmbeddingProviders,

54

type MemoryEmbeddingProvider,

@@ -10,12 +9,10 @@ import {

109

import { formatErrorMessage } from "../dreaming-shared.js";

1110

import { canAutoSelectLocal } from "./provider-adapters.js";

1211
13-

export { DEFAULT_LOCAL_MODEL } from "openclaw/plugin-sdk/memory-core-host-engine-embeddings";

14-
1512

export type EmbeddingProvider = MemoryEmbeddingProvider;

1613

export type EmbeddingProviderId = string;

1714

export type EmbeddingProviderRequest = string;

18-

export type EmbeddingProviderFallback = string;

15+

type EmbeddingProviderFallback = string;

1916

export type EmbeddingProviderRuntime = MemoryEmbeddingProviderRuntime;

2017
2118

export type EmbeddingProviderResult = {

Original file line numberDiff line numberDiff line change

@@ -5,12 +5,9 @@ import {

55

DEFAULT_TEMPORAL_DECAY_CONFIG,

66

} from "./temporal-decay.js";

77
8-

export type HybridSource = string;

8+

type HybridSource = string;

99
10-

export { type MMRConfig, DEFAULT_MMR_CONFIG };

11-

export { type TemporalDecayConfig, DEFAULT_TEMPORAL_DECAY_CONFIG };

12-
13-

export type HybridVectorResult = {

10+

type HybridVectorResult = {

1411

id: string;

1512

path: string;

1613

startLine: number;

@@ -20,7 +17,7 @@ export type HybridVectorResult = {

2017

vectorScore: number;

2118

};

2219
23-

export type HybridKeywordResult = {

20+

type HybridKeywordResult = {

2421

id: string;

2522

path: string;

2623

startLine: number;

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import { randomUUID } from "node:crypto";

22

import fs from "node:fs/promises";

33
4-

export async function moveMemoryIndexFiles(sourceBase: string, targetBase: string): Promise<void> {

4+

async function moveMemoryIndexFiles(sourceBase: string, targetBase: string): Promise<void> {

55

const suffixes = ["", "-wal", "-shm"];

66

for (const suffix of suffixes) {

77

const source = `${sourceBase}${suffix}`;

@@ -16,12 +16,12 @@ export async function moveMemoryIndexFiles(sourceBase: string, targetBase: strin

1616

}

1717

}

1818
19-

export async function removeMemoryIndexFiles(basePath: string): Promise<void> {

19+

async function removeMemoryIndexFiles(basePath: string): Promise<void> {

2020

const suffixes = ["", "-wal", "-shm"];

2121

await Promise.all(suffixes.map((suffix) => fs.rm(`${basePath}${suffix}`, { force: true })));

2222

}

2323
24-

export async function swapMemoryIndexFiles(targetPath: string, tempPath: string): Promise<void> {

24+

async function swapMemoryIndexFiles(targetPath: string, tempPath: string): Promise<void> {

2525

const backupPath = `${targetPath}.backup-${randomUUID()}`;

2626

await moveMemoryIndexFiles(targetPath, backupPath);

2727

try {