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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
Engineering at Meta
Engineering at Meta
量子位
A
About on SuperTechFans
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
博客园 - 司徒正美
V
Visual Studio Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
腾讯CDC
Jina AI
Jina AI
C
Check Point Blog
H
Help Net Security
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
爱范儿
爱范儿
I
InfoQ

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 core barrel exports · openclaw/openclaw@11...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -21,14 +21,6 @@ import {

2121

shouldStripProviderAuthEnvVarsForAcpServer,

2222

} from "./client-helpers.js";

2323
24-

export {

25-

buildAcpClientStripKeys,

26-

resolveAcpClientSpawnEnv,

27-

resolveAcpClientSpawnInvocation,

28-

resolvePermissionRequest,

29-

shouldStripProviderAuthEnvVarsForAcpServer,

30-

} from "./client-helpers.js";

31-
3224

type AcpClientOptions = {

3325

cwd?: string;

3426

serverCommand?: string;

Original file line numberDiff line numberDiff line change

@@ -7,21 +7,12 @@ import { resolveCodexNativeWebSearchConfig } from "./codex-native-web-search.sha

77

import { resolveDefaultModelForAgent } from "./model-selection.js";

88

export {

99

buildCodexNativeWebSearchTool,

10-

type CodexNativeSearchActivation,

11-

type CodexNativeSearchPayloadPatchResult,

12-

hasAvailableCodexAuth,

13-

hasCodexNativeWebSearchTool,

14-

isCodexNativeSearchEligibleModel,

1510

patchCodexNativeWebSearchPayload,

1611

resolveCodexNativeSearchActivation,

1712

shouldSuppressManagedWebSearchTool,

1813

} from "./codex-native-web-search-core.js";

1914

export {

20-

type CodexNativeSearchContextSize,

21-

type CodexNativeSearchMode,

22-

type CodexNativeSearchUserLocation,

2315

describeCodexNativeWebSearch,

24-

type ResolvedCodexNativeWebSearchConfig,

2516

resolveCodexNativeWebSearchConfig,

2617

} from "./codex-native-web-search.shared.js";

2718
Original file line numberDiff line numberDiff line change

@@ -35,9 +35,7 @@ import { clearCliSessionInStore } from "./session-store.js";

3535

import type { AgentCommandOpts } from "./types.js";

3636
3737

export {

38-

claudeCliSessionTranscriptHasContent,

3938

createAcpVisibleTextAccumulator,

40-

resolveFallbackRetryPrompt,

4139

sessionFileHasContent,

4240

} from "./attempt-execution.helpers.js";

4341
Original file line numberDiff line numberDiff line change

@@ -1,12 +1,10 @@

11

import { shouldHandleTextCommands } from "../commands-registry.js";

2-

import { emitResetCommandHooks } from "./commands-reset-hooks.js";

32

import { maybeHandleResetCommand } from "./commands-reset.js";

43

import type {

54

CommandHandler,

65

CommandHandlerResult,

76

HandleCommandsParams,

87

} from "./commands-types.js";

9-

export { emitResetCommandHooks } from "./commands-reset-hooks.js";

108

let commandHandlersRuntimePromise: Promise<typeof import("./commands-handlers.runtime.js")> | null =

119

null;

1210
Original file line numberDiff line numberDiff line change

@@ -218,5 +218,3 @@ export const formatAuthLabel = (auth: { label: string; source: string }) => {

218218

}

219219

return `${auth.label} (${auth.source})`;

220220

};

221-
222-

export { resolveProfileOverride } from "./directive-handling.auth-profile.js";

Original file line numberDiff line numberDiff line change

@@ -1,10 +1,8 @@

11

export type {

22

BlockReplyContext,

33

GetReplyOptions,

4-

ModelSelectedContext,

54

ReplyThreadingPolicy,

6-

SourceReplyDeliveryMode,

75

TypingPolicy,

86

} from "./get-reply-options.types.js";

9-

export { getReplyPayloadMetadata, setReplyPayloadMetadata } from "./reply-payload.js";

10-

export type { ReplyPayload, ReplyPayloadMetadata } from "./reply-payload.js";

7+

export { setReplyPayloadMetadata } from "./reply-payload.js";

8+

export type { ReplyPayload } from "./reply-payload.js";

Original file line numberDiff line numberDiff line change

@@ -23,8 +23,6 @@ import {

2323

} from "./shared.js";

2424

import { formatConfigChannelsStatusLines } from "./status-config-format.js";

2525
26-

export { formatConfigChannelsStatusLines } from "./status-config-format.js";

27-
2826

export type ChannelsStatusOptions = {

2927

json?: boolean;

3028

probe?: boolean;

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,6 @@ import { formatGitInstallLabel, type UpdateCheckResult } from "../../infra/updat

1010

import { normalizeOptionalString } from "../../shared/string-coerce.js";

1111

import { formatUpdateOneLiner, resolveUpdateAvailability } from "../status.update.js";

1212
13-

export { formatDurationPrecise } from "../../infra/format-time/format-duration.ts";

1413

export { formatTimeAgo } from "../../infra/format-time/format-relative.ts";

1514
1615

export type StatusOverviewRow = {

Original file line numberDiff line numberDiff line change

@@ -5,15 +5,15 @@ import { createEmptyTaskAuditSummary } from "../tasks/task-registry.audit.shared

55

import { createEmptyTaskRegistrySummary } from "../tasks/task-registry.summary.js";

66

import { buildTailscaleHttpsUrl, resolveGatewayProbeSnapshot } from "./status.scan.shared.js";

77
8-

export function buildColdStartUpdateResult(): UpdateCheckResult {

8+

function buildColdStartUpdateResult(): UpdateCheckResult {

99

return {

1010

root: null,

1111

installKind: "unknown",

1212

packageManager: "unknown",

1313

};

1414

}

1515
16-

export function buildColdStartAgentLocalStatuses() {

16+

function buildColdStartAgentLocalStatuses() {

1717

return {

1818

defaultId: "main",

1919

agents: [],

@@ -43,7 +43,7 @@ export function buildColdStartStatusSummary() {

4343

};

4444

}

4545
46-

export function shouldSkipStatusScanNetworkChecks(params: {

46+

function shouldSkipStatusScanNetworkChecks(params: {

4747

coldStart: boolean;

4848

hasConfiguredChannels: boolean;

4949

all?: boolean;

Original file line numberDiff line numberDiff line change

@@ -159,7 +159,7 @@ async function applyLocalStatusRpcFallback(params: {

159159

};

160160

}

161161
162-

export function hasExplicitMemorySearchConfig(cfg: OpenClawConfig, agentId: string): boolean {

162+

function hasExplicitMemorySearchConfig(cfg: OpenClawConfig, agentId: string): boolean {

163163

if (

164164

cfg.agents?.defaults &&

165165

Object.prototype.hasOwnProperty.call(cfg.agents.defaults, "memorySearch")