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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
宝玉的分享
宝玉的分享
月光博客
月光博客
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
博客园 - 叶小钗
U
Unit 42
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
V
Visual Studio Blog
腾讯CDC
IT之家
IT之家

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: narrow dead reexports · openclaw/openclaw@e816235
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,13 +1,8 @@

11

export {

2-

downloadMSTeamsBotFrameworkAttachment,

32

downloadMSTeamsBotFrameworkAttachments,

43

isBotFrameworkPersonalChatId,

54

} from "./attachments/bot-framework.js";

6-

export {

7-

downloadMSTeamsAttachments,

8-

/** @deprecated Use `downloadMSTeamsAttachments` instead. */

9-

downloadMSTeamsImageAttachments,

10-

} from "./attachments/download.js";

5+

export { downloadMSTeamsAttachments } from "./attachments/download.js";

116

export { buildMSTeamsGraphMessageUrls, downloadMSTeamsGraphMedia } from "./attachments/graph.js";

127

export {

138

buildMSTeamsAttachmentPlaceholder,

@@ -18,7 +13,6 @@ export { buildMSTeamsMediaPayload } from "./attachments/payload.js";

1813

export type {

1914

MSTeamsAccessTokenProvider,

2015

MSTeamsAttachmentLike,

21-

MSTeamsGraphMediaResult,

2216

MSTeamsHtmlAttachmentSummary,

2317

MSTeamsInboundMedia,

2418

} from "./attachments/types.js";

Original file line numberDiff line numberDiff line change

@@ -3,21 +3,19 @@ import { downloadFile } from "../utils/file-utils.js";

33

import { getQQBotMediaDir } from "../utils/platform.js";

44

import { normalizeOptionalString } from "../utils/string-normalize.js";

55

import { transcribeAudio, resolveSTTConfig } from "../utils/stt.js";

6-

// Re-export formatVoiceText from core/.

7-

export { formatVoiceText } from "../utils/voice-text.js";

86
97

// Re-export the port type for convenience.

108

export type { AudioConvertPort } from "../adapter/audio.port.js";

119
12-

export interface RawAttachment {

10+

interface RawAttachment {

1311

content_type: string;

1412

url: string;

1513

filename?: string;

1614

voice_wav_url?: string;

1715

asr_refer_text?: string;

1816

}

1917
20-

export type TranscriptSource = "stt" | "asr" | "fallback";

18+

type TranscriptSource = "stt" | "asr" | "fallback";

2119
2220

/** Normalized attachment output consumed by the gateway. */

2321

export interface ProcessedAttachments {

Original file line numberDiff line numberDiff line change

@@ -2,18 +2,8 @@ export {

22

compactEmbeddedPiSession,

33

compactEmbeddedPiSession as compactEmbeddedAgentSession,

44

} from "./pi-embedded-runner/compact.queued.js";

5-

export {

6-

applyExtraParamsToAgent,

7-

resolveAgentTransportOverride,

8-

resolveExtraParams,

9-

resolvePreparedExtraParams,

10-

} from "./pi-embedded-runner/extra-params.js";

5+

export { applyExtraParamsToAgent } from "./pi-embedded-runner/extra-params.js";

116
12-

export {

13-

getDmHistoryLimitFromSessionKey,

14-

getHistoryLimitFromSessionKey,

15-

limitHistoryTurns,

16-

} from "./pi-embedded-runner/history.js";

177

export { resolveEmbeddedSessionLane } from "./pi-embedded-runner/lanes.js";

188

export {

199

runEmbeddedPiAgent,

Original file line numberDiff line numberDiff line change

@@ -111,11 +111,7 @@ function collectPendingMediaFromInternalEvents(

111111

return pending;

112112

}

113113
114-

export type {

115-

BlockReplyChunking,

116-

SubscribeEmbeddedPiSessionParams,

117-

ToolResultFormat,

118-

} from "./pi-embedded-subscribe.types.js";

114+

export type { SubscribeEmbeddedPiSessionParams } from "./pi-embedded-subscribe.types.js";

119115
120116

export function subscribeEmbeddedPiSession(params: SubscribeEmbeddedPiSessionParams) {

121117

const reasoningMode = params.reasoningMode ?? "off";

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,6 @@ export { getRuntimeConfig } from "../config/config.js";

22

export {

33

loadSessionStore,

44

resolveAgentIdFromSessionKey,

5-

resolveMainSessionKey,

65

resolveStorePath,

76

} from "../config/sessions.js";

87

export { callGateway } from "../gateway/call.js";

Original file line numberDiff line numberDiff line change

@@ -2,12 +2,7 @@ export { getRuntimeConfig } from "../config/config.js";

22

export {

33

loadSessionStore,

44

resolveAgentIdFromSessionKey,

5-

resolveMainSessionKey,

65

resolveStorePath,

76

} from "../config/sessions.js";

87

export { callGateway } from "../gateway/call.js";

9-

export {

10-

isEmbeddedPiRunActive,

11-

queueEmbeddedPiMessage,

12-

waitForEmbeddedPiRunEnd,

13-

} from "./pi-embedded-runner/runs.js";

8+

export { isEmbeddedPiRunActive, waitForEmbeddedPiRunEnd } from "./pi-embedded-runner/runs.js";

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,3 @@

1-

export { formatThinkingLevels, normalizeThinkLevel } from "../auto-reply/thinking.js";

21

export {

32

DEFAULT_SUBAGENT_MAX_CHILDREN_PER_AGENT,

43

DEFAULT_SUBAGENT_MAX_SPAWN_DEPTH,

@@ -22,11 +21,8 @@ export {

2221

mergeDeliveryContext,

2322

normalizeDeliveryContext,

2423

} from "../utils/delivery-context.shared.js";

25-

export { resolveConversationDeliveryTarget } from "../utils/delivery-context.js";

26-

export { getSessionBindingService } from "../infra/outbound/session-binding-service.js";

2724

export { resolveAgentConfig } from "./agent-scope.js";

2825

export { AGENT_LANE_SUBAGENT } from "./lanes.js";

29-

export { resolveSubagentSpawnModelSelection } from "./model-selection.js";

3026

export { resolveSandboxRuntimeStatus } from "./sandbox/runtime-status.js";

3127

export { buildSubagentSystemPrompt } from "./subagent-system-prompt.js";

3228

export {

Original file line numberDiff line numberDiff line change

@@ -42,12 +42,6 @@ export const THINKING_LEVEL_RANKS: Record<ThinkLevel, number> = {

4242

xhigh: 60,

4343

max: 70,

4444

};

45-

const NO_THINKING_LEVELS: ThinkLevel[] = [...BASE_THINKING_LEVELS];

46-
47-

export function isBinaryThinkingProvider(provider?: string | null): boolean {

48-

void provider;

49-

return false;

50-

}

5145
5246

// Normalize user-provided thinking level strings to the canonical enum.

5347

export function normalizeThinkLevel(raw?: string | null): ThinkLevel | undefined {

@@ -89,28 +83,6 @@ export function normalizeThinkLevel(raw?: string | null): ThinkLevel | undefined

8983

return undefined;

9084

}

9185
92-

export function listThinkingLevels(

93-

_provider?: string | null,

94-

_model?: string | null,

95-

): ThinkLevel[] {

96-

return [...NO_THINKING_LEVELS];

97-

}

98-
99-

export function listThinkingLevelLabels(provider?: string | null, model?: string | null): string[] {

100-

if (isBinaryThinkingProvider(provider)) {

101-

return ["off", "on"];

102-

}

103-

return listThinkingLevels(provider, model);

104-

}

105-
106-

export function formatThinkingLevels(

107-

provider?: string | null,

108-

model?: string | null,

109-

separator = ", ",

110-

): string {

111-

return listThinkingLevelLabels(provider, model).join(separator);

112-

}

113-
11486

export function formatXHighModelHint(): string {

11587

return "provider models that advertise xhigh reasoning";

11688

}

Original file line numberDiff line numberDiff line change

@@ -4,7 +4,7 @@ import type { ChannelId } from "../channels/plugins/types.public.js";

44

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

55

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

66

import type { OpenClawConfig } from "./types.openclaw.js";

7-

export { isCommandFlagEnabled, isRestartEnabled, type CommandFlagKey } from "./commands.flags.js";

7+

export { isCommandFlagEnabled, isRestartEnabled } from "./commands.flags.js";

88
99

function resolveAutoDefault(

1010

providerId: ChannelId | undefined,