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

推荐订阅源

U
Unit 42
Google DeepMind News
Google DeepMind News
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
I
InfoQ
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
量子位
博客园 - 叶小钗
月光博客
月光博客
IT之家
IT之家
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享

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 extension runtime reexports · openclaw/ope...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -6,7 +6,6 @@ export {

66

errorShape,

77

isLoopbackHost,

88

isNodeCommandAllowed,

9-

rawDataToString,

109

respondUnavailableOnNodeInvokeError,

1110

resolveGatewayAuth,

1211

resolveNodeCommandAllowlist,

@@ -17,7 +16,6 @@ export type {

1716

GatewayRpcOpts,

1817

NodeSession,

1918

} from "openclaw/plugin-sdk/gateway-runtime";

20-

export { runExec } from "openclaw/plugin-sdk/process-runtime";

2119

export { runCommandWithRuntime } from "openclaw/plugin-sdk/cli-runtime";

2220

export type { OpenClawPluginService } from "openclaw/plugin-sdk/plugin-entry";

2321

export {

Original file line numberDiff line numberDiff line change

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

1111

export {

1212

createChannelApproverDmTargetResolver,

1313

createChannelNativeOriginTargetResolver,

14-

doesApprovalRequestMatchChannelAccount,

1514

} from "openclaw/plugin-sdk/approval-native-runtime";

Original file line numberDiff line numberDiff line change

@@ -36,8 +36,6 @@ export type RequestGuildMembersData = {

3636

user_ids?: string | string[];

3737

nonce?: string;

3838

};

39-

export type GatewayWebSocketLike = ws.WebSocket;

40-
4139

type GatewayPluginOptions = {

4240

reconnect?: { maxAttempts?: number };

4341

intents?: number;

Original file line numberDiff line numberDiff line change

@@ -354,9 +354,3 @@ export function createDiscordAutoPresenceController(params: {

354354

},

355355

};

356356

}

357-
358-

export const __testing = {

359-

resolveAutoPresenceConfig,

360-

resolveAuthAvailability,

361-

stablePresenceSignature,

362-

};

Original file line numberDiff line numberDiff line change

@@ -153,5 +153,3 @@ export async function fetchReactionsDiscord(

153153

}

154154

return summaries;

155155

}

156-
157-

export { fetchChannelPermissionsDiscord } from "./send.permissions.js";

Original file line numberDiff line numberDiff line change

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

11

export {

22

createAccountScopedAllowFromSection,

33

createAccountScopedGroupAccessSection,

4-

createAllowlistSetupWizardProxy,

54

createLegacyCompatChannelDmPolicy,

65

parseMentionOrPrefixedId,

76

patchChannelConfigForAccount,

Original file line numberDiff line numberDiff line change

@@ -194,17 +194,6 @@ export function getProviderMonitorTestMocks(): typeof providerMonitorTestMocks {

194194

return providerMonitorTestMocks;

195195

}

196196
197-

export function mockResolvedDiscordAccountConfig(overrides: Record<string, unknown>) {

198-

resolveDiscordAccountMock.mockImplementation(() => ({

199-

accountId: "default",

200-

token: "cfg-token",

201-

config: {

202-

...baseDiscordAccountConfig(),

203-

...overrides,

204-

},

205-

}));

206-

}

207-
208197

// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Test helper lets assertions ascribe handler params shape.

209198

export function getFirstDiscordMessageHandlerParams<T extends object>() {

210199

expect(createDiscordMessageHandlerMock).toHaveBeenCalledTimes(1);

Original file line numberDiff line numberDiff line change

@@ -1,6 +1 @@

1-

export {

2-

buildSecretInputSchema,

3-

hasConfiguredSecretInput,

4-

normalizeResolvedSecretInputString,

5-

normalizeSecretInputString,

6-

} from "openclaw/plugin-sdk/secret-input";

1+

export { buildSecretInputSchema, hasConfiguredSecretInput } from "openclaw/plugin-sdk/secret-input";

Original file line numberDiff line numberDiff line change

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

11

export {

22

buildChannelConfigSchema,

33

chunkTextForOutbound,

4-

createAccountStatusSink,

54

DEFAULT_ACCOUNT_ID,

65

fetchRemoteMedia,

76

GoogleChatConfigSchema,

87

loadOutboundMediaFromUrl,

98

missingTargetError,

109

PAIRING_APPROVED_MESSAGE,

1110

resolveChannelMediaMaxBytes,

12-

runPassiveAccountLifecycle,

1311

type ChannelMessageActionAdapter,

1412

type ChannelStatusIssue,

1513

type OpenClawConfig,

Original file line numberDiff line numberDiff line change

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

11

import type { App } from "@slack/bolt";

2+

import { resolveDefaultAgentId } from "openclaw/plugin-sdk/agent-runtime";

23

import { formatAllowlistMatchMeta } from "openclaw/plugin-sdk/allow-from";

34

import type {

45

OpenClawConfig,

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

78

import type { SessionScope } from "openclaw/plugin-sdk/config-types";

89

import type { DmPolicy, GroupPolicy } from "openclaw/plugin-sdk/config-types";

910

import { createDedupeCache } from "openclaw/plugin-sdk/dedupe-runtime";

10-

import { resolveDefaultAgentId } from "openclaw/plugin-sdk/agent-runtime";

1111

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

1212

import type { HistoryEntry } from "openclaw/plugin-sdk/reply-history";

1313

import { resolveAgentRoute } from "openclaw/plugin-sdk/routing";

@@ -26,11 +26,7 @@ import { normalizeSlackChannelType } from "./channel-type.js";

2626

import { resolveSessionKey } from "./config.runtime.js";

2727

import { isSlackChannelAllowedByPolicy } from "./policy.js";

2828
29-

export {

30-

inferSlackChannelType,

31-

normalizeSlackChannelType,

32-

resolveSlackChatType,

33-

} from "./channel-type.js";

29+

export { normalizeSlackChannelType, resolveSlackChatType } from "./channel-type.js";

3430
3531

export type SlackMonitorContext = {

3632

cfg: OpenClawConfig;