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

推荐订阅源

I
InfoQ
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
B
Blog
罗磊的独立博客
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
The GitHub Blog
The GitHub Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
MyScale Blog
MyScale Blog
Google DeepMind News
Google DeepMind News
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏

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

@@ -194,12 +194,12 @@ function probeLoginShellEnv(params: {

194194

}

195195

}

196196
197-

export type ShellEnvFallbackResult =

197+

type ShellEnvFallbackResult =

198198

| { ok: true; applied: string[]; skippedReason?: never }

199199

| { ok: true; applied: []; skippedReason: "already-has-keys" | "disabled" }

200200

| { ok: false; error: string; applied: [] };

201201
202-

export type ShellEnvFallbackOptions = {

202+

type ShellEnvFallbackOptions = {

203203

enabled: boolean;

204204

env: NodeJS.ProcessEnv;

205205

expectedKeys: string[];

Original file line numberDiff line numberDiff line change

@@ -51,7 +51,7 @@ const SHELL_WRAPPER_SPECS: ReadonlyArray<ShellWrapperSpec> = [

5151

{ kind: "powershell", names: POWERSHELL_WRAPPER_CANONICAL },

5252

];

5353
54-

export type ShellWrapperCommand = {

54+

type ShellWrapperCommand = {

5555

isWrapper: boolean;

5656

command: string | null;

5757

};

@@ -158,7 +158,7 @@ function findShellWrapperSpec(baseExecutable: string): ShellWrapperSpec | null {

158158

return null;

159159

}

160160
161-

export type ShellMultiplexerUnwrapResult =

161+

type ShellMultiplexerUnwrapResult =

162162

| { kind: "not-wrapper" }

163163

| { kind: "blocked"; wrapper: string }

164164

| { kind: "unwrapped"; wrapper: string; argv: string[] };

Original file line numberDiff line numberDiff line change

@@ -26,7 +26,7 @@ export type SystemPresence = {

2626

ts: number;

2727

};

2828
29-

export type SystemPresenceUpdate = {

29+

type SystemPresenceUpdate = {

3030

key: string;

3131

previous?: SystemPresence;

3232

next: SystemPresence;

Original file line numberDiff line numberDiff line change

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

1111

resolveInlineCommandMatch,

1212

} from "./shell-inline-command.js";

1313
14-

export type SystemRunCommandValidation =

14+

type SystemRunCommandValidation =

1515

| {

1616

ok: true;

1717

shellPayload: string | null;

@@ -24,7 +24,7 @@ export type SystemRunCommandValidation =

2424

details?: Record<string, unknown>;

2525

};

2626
27-

export type ResolvedSystemRunCommand =

27+

type ResolvedSystemRunCommand =

2828

| {

2929

ok: true;

3030

argv: string[];

Original file line numberDiff line numberDiff line change

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

11

import { isIpInCidr } from "../shared/net/ip.js";

22

import { listExternalInterfaceAddresses, readNetworkInterfaces } from "./network-interfaces.js";

33
4-

export type TailnetAddresses = {

4+

type TailnetAddresses = {

55

ipv4: string[];

66

ipv6: string[];

77

};

Original file line numberDiff line numberDiff line change

@@ -166,7 +166,7 @@ export function getTestTailscaleBinaryOverride(

166166

return null;

167167

}

168168
169-

export async function getTailscaleBinary(): Promise<string> {

169+

async function getTailscaleBinary(): Promise<string> {

170170

const forcedBinary = getTestTailscaleBinaryOverride();

171171

if (forcedBinary) {

172172

cachedTailscaleBinary = forcedBinary;

Original file line numberDiff line numberDiff line change

@@ -8,7 +8,7 @@ const logger = createSubsystemLogger("infra:temp-download");

88
99

export { resolvePreferredOpenClawTmpDir } from "./tmp-openclaw-dir.js";

1010
11-

export type TempDownloadTarget = {

11+

type TempDownloadTarget = {

1212

dir: string;

1313

path: string;

1414

cleanup: () => Promise<void>;

Original file line numberDiff line numberDiff line change

@@ -21,7 +21,7 @@ export type CommandRunner = (

2121

options: { timeoutMs: number; cwd?: string; env?: NodeJS.ProcessEnv },

2222

) => Promise<{ stdout: string; stderr: string; code: number | null }>;

2323
24-

export type ResolvedGlobalInstallCommand = {

24+

type ResolvedGlobalInstallCommand = {

2525

manager: GlobalInstallManager;

2626

command: string;

2727

};

Original file line numberDiff line numberDiff line change

@@ -4,9 +4,9 @@ import path from "node:path";

44

import { detectPackageManager as detectPackageManagerImpl } from "./detect-package-manager.js";

55

import { applyPathPrepend } from "./path-prepend.js";

66
7-

export type BuildManager = "pnpm" | "bun" | "npm";

7+

type BuildManager = "pnpm" | "bun" | "npm";

88
9-

export type UpdatePackageManagerRequirement = "allow-fallback" | "require-preferred";

9+

type UpdatePackageManagerRequirement = "allow-fallback" | "require-preferred";

1010
1111

export type UpdatePackageManagerFailureReason =

1212

| "preferred-manager-unavailable"

@@ -19,7 +19,7 @@ export type PackageManagerCommandRunner = (

1919

options: { timeoutMs: number; env?: NodeJS.ProcessEnv },

2020

) => Promise<{ stdout: string; stderr: string; code: number | null }>;

2121
22-

export type ResolvedBuildManager =

22+

type ResolvedBuildManager =

2323

| {

2424

kind: "resolved";

2525

manager: BuildManager;

@@ -34,7 +34,7 @@ export type ResolvedBuildManager =

3434

reason: UpdatePackageManagerFailureReason;

3535

};

3636
37-

export async function detectBuildManager(root: string): Promise<BuildManager> {

37+

async function detectBuildManager(root: string): Promise<BuildManager> {

3838

return (await detectPackageManagerImpl(root)) ?? "npm";

3939

}

4040
Original file line numberDiff line numberDiff line change

@@ -7,12 +7,12 @@ import {

77

} from "../routing/session-key.js";

88

import { createAsyncLock, readJsonFile, writeJsonAtomic } from "./json-files.js";

99
10-

export type VoiceWakeRouteTarget =

10+

type VoiceWakeRouteTarget =

1111

| { mode: "current"; agentId?: undefined; sessionKey?: undefined }

1212

| { agentId: string; sessionKey?: undefined; mode?: undefined }

1313

| { sessionKey: string; agentId?: undefined; mode?: undefined };

1414
15-

export type VoiceWakeRouteRule = {

15+

type VoiceWakeRouteRule = {

1616

trigger: string;

1717

target: VoiceWakeRouteTarget;

1818

};

@@ -288,12 +288,9 @@ export async function setVoiceWakeRoutingConfig(

288288

});

289289

}

290290
291-

export type VoiceWakeResolvedRoute =

292-

| { mode: "current" }

293-

| { agentId: string }

294-

| { sessionKey: string };

291+

type VoiceWakeResolvedRoute = { mode: "current" } | { agentId: string } | { sessionKey: string };

295292
296-

export function resolveVoiceWakeRouteTarget(

293+

function resolveVoiceWakeRouteTarget(

297294

routeTarget: VoiceWakeRouteTarget | undefined,

298295

): VoiceWakeResolvedRoute {

299296

if (!routeTarget || ("mode" in routeTarget && routeTarget.mode === "current")) {