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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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(infra): trim unused fs-safe facade exports · ope...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -18,10 +18,5 @@ export {

1818

resolveArchiveKind,

1919

resolvePackedRootDir,

2020

withStagedArchiveDestination,

21-

type ArchiveExtractLimits,

22-

type ArchiveKind,

23-

type ArchiveLimitErrorCode,

2421

type ArchiveLogger,

25-

type ArchiveSecurityErrorCode,

26-

type TarEntryInfo,

2722

} from "@openclaw/fs-safe/archive";

Original file line numberDiff line numberDiff line change

@@ -8,9 +8,6 @@ export {

88

matchRootFileOpenFailure,

99

openRootFile,

1010

openRootFileSync,

11-

type OpenRootFileParams,

12-

type OpenRootFileSyncParams,

1311

type RootFileOpenFailure,

14-

type RootFileOpenFailureReason,

1512

type RootFileOpenResult,

1613

} from "@openclaw/fs-safe/advanced";

Original file line numberDiff line numberDiff line change

@@ -4,10 +4,7 @@ import "./fs-safe-defaults.js";

44

// Boundary path resolution keeps alias expansion and realpath checks in one

55

// shared contract before file IO happens.

66

export {

7-

ROOT_PATH_ALIAS_POLICIES,

87

resolvePathViaExistingAncestorSync,

98

resolveRootPath,

109

resolveRootPathSync,

11-

type ResolvedRootPath,

12-

type RootPathAliasPolicy,

1310

} from "@openclaw/fs-safe/advanced";

Original file line numberDiff line numberDiff line change

@@ -3,8 +3,4 @@ import "./fs-safe-defaults.js";

33
44

// Process-local file lock manager used by code that needs explicit lifecycle

55

// control instead of a one-shot withFileLock call.

6-

export {

7-

createFileLockManager,

8-

type FileLockHeldEntry,

9-

type FileLockManager,

10-

} from "@openclaw/fs-safe/file-lock";

6+

export { createFileLockManager } from "@openclaw/fs-safe/file-lock";

Original file line numberDiff line numberDiff line change

@@ -3,10 +3,4 @@ import "./fs-safe-defaults.js";

33
44

// Safe file-store facade. Callers get the repo default fs-safe configuration

55

// before constructing root-scoped stores.

6-

export {

7-

fileStore,

8-

type FileStore,

9-

type FileStoreOptions,

10-

type FileStorePruneOptions,

11-

type FileStoreWriteOptions,

12-

} from "@openclaw/fs-safe/store";

6+

export { fileStore, type FileStore } from "@openclaw/fs-safe/store";

Original file line numberDiff line numberDiff line change

@@ -11,6 +11,5 @@ export {

1111

resolveRegularFileAppendFlags,

1212

statRegularFile,

1313

statRegularFileSync,

14-

type AppendRegularFileOptions,

1514

type RegularFileStatResult,

1615

} from "@openclaw/fs-safe/advanced";

Original file line numberDiff line numberDiff line change

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

1111

export {

1212

replaceDirectoryAtomic,

1313

replaceFileAtomicSync,

14-

type ReplaceDirectoryAtomicOptions,

1514

type ReplaceFileAtomicFileSystem,

1615

type ReplaceFileAtomicOptions,

1716

type ReplaceFileAtomicResult,