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

推荐订阅源

Google DeepMind News
Google DeepMind News
C
Check Point Blog
J
Java Code Geeks
腾讯CDC
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Engineering at Meta
Engineering at Meta
罗磊的独立博客
Last Week in AI
Last Week in AI
B
Blog
IT之家
IT之家
S
SegmentFault 最新的问题
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
博客园 - 聂微东
U
Unit 42
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
MyScale Blog
MyScale Blog

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
test: remove stale unused imports · openclaw/openclaw@017...
shakkernerd · 2026-05-09 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -4,7 +4,7 @@ import type {

44

BrowserActionTabResult,

55

} from "./client-actions-types.js";

66

import { buildProfileQuery, withBaseUrl } from "./client-actions-url.js";

7-

import type { BrowserActRequest, BrowserFormField } from "./client-actions.types.js";

7+

import type { BrowserActRequest } from "./client-actions.types.js";

88

import { fetchBrowserJson } from "./client-fetch.js";

99

import {

1010

DEFAULT_BROWSER_ACTION_TIMEOUT_MS,

Original file line numberDiff line numberDiff line change

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

2929

parseMessageContent,

3030

resolveFeishuGroupSession,

3131

resolveFeishuMediaList,

32-

toMessageResourceType,

3332

} from "./bot-content.js";

3433

import {

3534

buildAgentMediaPayload,

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,6 @@ export { parseGeminiAuth };

77

export { applyGoogleGeminiModelDefault, GOOGLE_GEMINI_DEFAULT_MODEL } from "./onboard.js";

88

import {

99

DEFAULT_GOOGLE_API_BASE_URL,

10-

normalizeGoogleApiBaseUrl,

1110

normalizeGoogleGenerativeAiBaseUrl,

1211

} from "./provider-policy.js";

1312

export { normalizeAntigravityModelId, normalizeGoogleModelId } from "./model-id.js";

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,6 @@ import { DEFAULT_IMESSAGE_PROBE_TIMEOUT_MS } from "./constants.js";

1010

import {

1111

clearCachedIMessagePrivateApiStatus,

1212

getCachedIMessagePrivateApiStatus,

13-

imessageRpcSupportsMethod,

1413

setCachedIMessagePrivateApiStatus,

1514

type IMessagePrivateApiStatus,

1615

} from "./private-api-status.js";

Original file line numberDiff line numberDiff line change

@@ -27,18 +27,10 @@ import {

2727

normalizeOptionalAccountId,

2828

ssrfPolicyFromDangerouslyAllowPrivateNetwork,

2929

} from "./config-runtime-api.js";

30-

import {

31-

hasReadyMatrixEnvAuth,

32-

resolveGlobalMatrixEnvConfig,

33-

resolveMatrixEnvAuthReadiness,

34-

resolveScopedMatrixEnvConfig,

35-

} from "./env-auth.js";

30+

import { resolveGlobalMatrixEnvConfig, resolveScopedMatrixEnvConfig } from "./env-auth.js";

3631

import { repairCurrentTokenStorageMetaDeviceId } from "./storage.js";

3732

import type { MatrixAuth, MatrixResolvedConfig } from "./types.js";

38-

import {

39-

resolveValidatedMatrixHomeserverUrl,

40-

validateMatrixHomeserverUrl,

41-

} from "./url-validation.js";

33+

import { resolveValidatedMatrixHomeserverUrl } from "./url-validation.js";

4234
4335

type MatrixAuthClientDeps = {

4436

MatrixClient: typeof import("../sdk.js").MatrixClient;

Original file line numberDiff line numberDiff line change

@@ -3,11 +3,7 @@ import { coerceSecretRef } from "openclaw/plugin-sdk/secret-ref-runtime";

33

import { normalizeSecretInputString } from "openclaw/plugin-sdk/setup";

44

import type { CoreConfig, MatrixConfig } from "../types.js";

55

import { findMatrixAccountConfig } from "./account-config.js";

6-

import {

7-

resolveMatrixConfigFieldPath,

8-

resolveMatrixConfigPath,

9-

shouldStoreMatrixAccountAtTopLevel,

10-

} from "./config-paths.js";

6+

import { shouldStoreMatrixAccountAtTopLevel } from "./config-paths.js";

117
128

export {

139

resolveMatrixConfigFieldPath,

Original file line numberDiff line numberDiff line change

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

1111

execAz,

1212

getAccessTokenResult,

1313

getLoggedInAccount,

14-

listSubscriptions,

1514

} from "./cli.js";

1615

import {

1716

type AzAccount,

Original file line numberDiff line numberDiff line change

@@ -2,7 +2,6 @@ import { createRequire } from "node:module";

22

import path from "node:path";

33

import { loadJsonFile } from "openclaw/plugin-sdk/json-store";

44

import {

5-

buildExecRemoteCommand,

65

createSshSandboxSessionFromConfigText,

76

runPluginCommandWithTimeout,

87

shellEscape,

Original file line numberDiff line numberDiff line change

@@ -2,8 +2,6 @@ import http from "node:http";

22

import https from "node:https";

33

import { fetchWithSsrFGuard } from "openclaw/plugin-sdk/ssrf-runtime";

44

import type {

5-

QaBusConversation,

6-

QaBusEvent,

75

QaBusInboundMessageInput,

86

QaBusMessage,

97

QaBusPollResult,

Original file line numberDiff line numberDiff line change

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

11

import {

22

DEFAULT_QA_LIVE_PROVIDER_MODE,

33

getQaProvider,

4-

type QaProviderMode,

54

type QaProviderModeInput,

65

} from "./providers/index.js";

76