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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
Last Week in AI
Last Week in AI
腾讯CDC
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
I
InfoQ
雷峰网
雷峰网
人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
H
Help Net Security
T
Tailwind CSS Blog
美团技术团队
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed

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(proxy): preserve mode-specific blob types · openclaw/...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

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

2424

CaptureSessionCoverageSummary,

2525

CaptureSessionRecord,

2626

CaptureSessionSummary,

27+

SharedCaptureBlobRecord,

2728

} from "./types.js";

28292930

// Capture rows and compressed payload BLOBs live in the shared global state DB.

@@ -178,16 +179,13 @@ function sortObservedCounts(counts: Map<string, number>): CaptureObservedDimensi

178179

.toSorted((left, right) => right.count - left.count || left.value.localeCompare(right.value));

179180

}

180181181-

export class DebugProxyCaptureStore {

182+

class DebugProxyCaptureStoreImpl {

182183

readonly db: DatabaseSync;

183184

readonly dbPath: string;

184185

readonly blobDir: string;

185186

private readonly pathBased?: PathBasedDebugProxyCaptureStore;

186187

private closed = false;

187188188-

constructor(options?: DebugProxyCaptureStoreOptions);

189-

/** @deprecated Use the options overload so capture data lives in shared SQLite state. */

190-

constructor(dbPath: string, blobDir: string);

191189

constructor(

192190

optionsOrDbPath: DebugProxyCaptureStoreOptions | string = {},

193191

legacyBlobDir?: string,

@@ -282,7 +280,7 @@ export class DebugProxyCaptureStore {

282280

.run(endedAt, sessionId);

283281

}

284282285-

persistPayload(data: Buffer, contentType?: string): CaptureBlobRecord {

283+

persistPayload(data: Buffer, contentType?: string): CaptureBlobRecord | SharedCaptureBlobRecord {

286284

const sha256 = createHash("sha256").update(data).digest("hex");

287285

const blobId = sha256.slice(0, 24);

288286

if (this.pathBased) {

@@ -784,8 +782,33 @@ export class DebugProxyCaptureStore {

784782

}

785783

}

786784785+

export type DebugProxyCaptureStore = Omit<DebugProxyCaptureStoreImpl, "persistPayload"> & {

786+

persistPayload(

787+

data: Buffer,

788+

contentType?: string,

789+

): CaptureBlobRecord | SharedCaptureBlobRecord;

790+

};

791+792+

export type LegacyDebugProxyCaptureStore = Omit<DebugProxyCaptureStoreImpl, "persistPayload"> & {

793+

persistPayload(data: Buffer, contentType?: string): CaptureBlobRecord;

794+

};

795+796+

export type SharedDebugProxyCaptureStore = Omit<DebugProxyCaptureStoreImpl, "persistPayload"> & {

797+

persistPayload(data: Buffer, contentType?: string): SharedCaptureBlobRecord;

798+

};

799+800+

type DebugProxyCaptureStoreConstructor = {

801+

new (dbPath: string, blobDir: string): LegacyDebugProxyCaptureStore;

802+

new (options?: DebugProxyCaptureStoreOptions): SharedDebugProxyCaptureStore;

803+

};

804+805+

// The runtime implementation branches on constructor arguments; expose the

806+

// corresponding result type so both shipped constructor contracts stay exact.

807+

export const DebugProxyCaptureStore =

808+

DebugProxyCaptureStoreImpl as unknown as DebugProxyCaptureStoreConstructor;

809+787810

type CachedStoreEntry = {

788-

store: DebugProxyCaptureStore;

811+

store: DebugProxyCaptureStoreImpl;

789812

leases: number;

790813

};

791814

@@ -800,28 +823,34 @@ function resolveDebugProxyCaptureStoreKey(

800823

: `shared:${openOpenClawStateDatabase({ env: optionsOrDbPath.env }).path}`;

801824

}

802825803-

export function getDebugProxyCaptureStore(

804-

options?: DebugProxyCaptureStoreOptions,

805-

): DebugProxyCaptureStore;

806-

/** @deprecated Use the options overload so capture data lives in shared SQLite state. */

807-

export function getDebugProxyCaptureStore(dbPath: string, blobDir: string): DebugProxyCaptureStore;

808-

export function getDebugProxyCaptureStore(

826+

function getDebugProxyCaptureStoreImpl(

809827

optionsOrDbPath: DebugProxyCaptureStoreOptions | string = {},

810828

legacyBlobDir?: string,

811-

): DebugProxyCaptureStore {

829+

): DebugProxyCaptureStoreImpl {

812830

const key = resolveDebugProxyCaptureStoreKey(optionsOrDbPath, legacyBlobDir);

813831

const cached = cachedStores.get(key);

814832

if (cached && !cached.store.isClosed) {

815833

return cached.store;

816834

}

817-

const store =

818-

typeof optionsOrDbPath === "string"

819-

? new DebugProxyCaptureStore(optionsOrDbPath, legacyBlobDir!)

820-

: new DebugProxyCaptureStore(optionsOrDbPath);

835+

const store = new DebugProxyCaptureStoreImpl(optionsOrDbPath, legacyBlobDir);

821836

cachedStores.set(key, { store, leases: 0 });

822837

return store;

823838

}

824839840+

export function getDebugProxyCaptureStore(

841+

dbPath: string,

842+

blobDir: string,

843+

): LegacyDebugProxyCaptureStore;

844+

export function getDebugProxyCaptureStore(

845+

options?: DebugProxyCaptureStoreOptions,

846+

): SharedDebugProxyCaptureStore;

847+

export function getDebugProxyCaptureStore(

848+

optionsOrDbPath: DebugProxyCaptureStoreOptions | string = {},

849+

legacyBlobDir?: string,

850+

): DebugProxyCaptureStore {

851+

return getDebugProxyCaptureStoreImpl(optionsOrDbPath, legacyBlobDir);

852+

}

853+825854

export function closeDebugProxyCaptureStore(): void {

826855

for (const cached of cachedStores.values()) {

827856

cached.store.close();

@@ -831,13 +860,12 @@ export function closeDebugProxyCaptureStore(): void {

831860832861

// Lease API keeps one cached capture-store wrapper alive across related

833862

// operations, then releases it without closing the shared state database.

834-

export function acquireDebugProxyCaptureStore(options?: DebugProxyCaptureStoreOptions): {

835-

store: DebugProxyCaptureStore;

863+

export function acquireDebugProxyCaptureStore(dbPath: string, blobDir: string): {

864+

store: LegacyDebugProxyCaptureStore;

836865

release: () => void;

837866

};

838-

/** @deprecated Use the options overload so capture data lives in shared SQLite state. */

839-

export function acquireDebugProxyCaptureStore(dbPath: string, blobDir: string): {

840-

store: DebugProxyCaptureStore;

867+

export function acquireDebugProxyCaptureStore(options?: DebugProxyCaptureStoreOptions): {

868+

store: SharedDebugProxyCaptureStore;

841869

release: () => void;

842870

};

843871

export function acquireDebugProxyCaptureStore(

@@ -848,10 +876,7 @@ export function acquireDebugProxyCaptureStore(

848876

release: () => void;

849877

} {

850878

const key = resolveDebugProxyCaptureStoreKey(optionsOrDbPath, legacyBlobDir);

851-

const store =

852-

typeof optionsOrDbPath === "string"

853-

? getDebugProxyCaptureStore(optionsOrDbPath, legacyBlobDir!)

854-

: getDebugProxyCaptureStore(optionsOrDbPath);

879+

const store = getDebugProxyCaptureStoreImpl(optionsOrDbPath, legacyBlobDir);

855880

const cached = cachedStores.get(key);

856881

if (!cached || cached.store !== store) {

857882

throw new Error("debug proxy capture store cache changed while acquiring a lease");

@@ -879,7 +904,12 @@ export function acquireDebugProxyCaptureStore(

879904

}

880905881906

export function persistEventPayload(

882-

store: DebugProxyCaptureStore,

907+

store: {

908+

persistPayload(

909+

data: Buffer,

910+

contentType?: string,

911+

): CaptureBlobRecord | SharedCaptureBlobRecord;

912+

},

883913

params: { data?: Buffer | string | null; contentType?: string; previewLimit?: number },

884914

): { dataText?: string; dataBlobId?: string; dataSha256?: string } {

885915

if (params.data == null) {