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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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
chore(lint): enable object-shorthand (#81808) · openclaw/...
tanshanshan · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1097,7 +1097,6 @@ export function resolvePoolAcquire(params: AttemptParamsLike): {

10971097

},

10981098

options: {

10991099

copilotHome: resolved.copilotHome,

1100-

cwd: readString(params.cwd) ?? readString(params.workspaceDir),

11011100

gitHubToken: resolved.authMode === "gitHubToken" ? resolved.gitHubToken : undefined,

11021101

useLoggedInUser: resolved.authMode === "useLoggedInUser",

11031102

},

Original file line numberDiff line numberDiff line change

@@ -66,7 +66,6 @@ function makeOptions(overrides: Partial<ClientCreateOptions> = {}): ClientCreate

6666

copilotHome: overrides.copilotHome ?? "copilot-home",

6767

useLoggedInUser: overrides.useLoggedInUser ?? true,

6868

gitHubToken: overrides.gitHubToken,

69-

cwd: overrides.cwd,

7069

};

7170

}

7271
Original file line numberDiff line numberDiff line change

@@ -20,10 +20,9 @@ export interface PoolKey {

2020
2121

export interface ClientCreateOptions extends Omit<

2222

CopilotClientOptions,

23-

"baseDirectory" | "gitHubToken" | "useLoggedInUser" | "workingDirectory"

23+

"baseDirectory" | "workingDirectory" | "useLoggedInUser" | "gitHubToken"

2424

> {

2525

readonly copilotHome: string;

26-

readonly cwd?: string;

2726

readonly useLoggedInUser?: boolean;

2827

readonly gitHubToken?: string;

2928

}

@@ -362,11 +361,10 @@ function normalizeClientCreateOptions(

362361

options: ClientCreateOptions,

363362

normalizedCopilotHome: string,

364363

): CopilotClientOptions {

365-

const { copilotHome: _copilotHome, cwd, ...clientOptions } = options;

364+

const { copilotHome: _copilotHome, ...clientOptions } = options;

366365

return {

367366

...clientOptions,

368367

baseDirectory: normalizedCopilotHome,

369-

workingDirectory: cwd,

370368

};

371369

}

372370
Original file line numberDiff line numberDiff line change

@@ -169,6 +169,19 @@ describe("SMS account config", () => {

169169

});

170170

});

171171
172+

it("coerces numeric allowFrom entries accepted by the config schema", () => {

173+

const parsed = SmsConfigSchema.parse({

174+

accountSid: "AC123",

175+

authToken: "token",

176+

fromNumber: "+15550001111",

177+

allowFrom: [15551234567],

178+

});

179+
180+

expect(resolveSmsAccount({ channels: { sms: parsed } })).toMatchObject({

181+

allowFrom: ["+15551234567"],

182+

});

183+

});

184+
172185

it("discovers env-only SMS credentials as the implicit default account", () => {

173186

process.env.TWILIO_ACCOUNT_SID = "AC-env";

174187

process.env.TWILIO_AUTH_TOKEN = "env-token";

Original file line numberDiff line numberDiff line change

@@ -24,13 +24,16 @@ function getChannelConfig(cfg: OpenClawConfig): SmsChannelConfig | undefined {

2424

return cfg?.channels?.[CHANNEL_ID] as SmsChannelConfig | undefined;

2525

}

2626
27-

function parseList(raw: string | string[] | undefined): string[] {

27+

function parseList(raw: unknown): string[] {

2828

if (!raw) {

2929

return [];

3030

}

31-

return (Array.isArray(raw) ? raw : normalizeStringEntries(raw.split(",")))

32-

.map((entry) => normalizeSmsAllowFrom(entry))

33-

.filter(Boolean);

31+

const entries = Array.isArray(raw)

32+

? raw

33+

: typeof raw === "string"

34+

? normalizeStringEntries(raw.split(","))

35+

: [raw];

36+

return entries.map((entry) => normalizeSmsAllowFrom(String(entry))).filter(Boolean);

3437

}

3538
3639

function parseTextChunkLimit(raw: unknown): number {

Original file line numberDiff line numberDiff line change

@@ -109,10 +109,12 @@ describe("dispatchSmsInboundEvent", () => {

109109

meta: undefined,

110110

});

111111

expect(sendSmsViaTwilio).toHaveBeenCalledOnce();

112-

expect(sendSmsViaTwilio.mock.calls[0]?.[0]).toMatchObject({

113-

to: "+15551234567",

114-

});

115-

expect(sendSmsViaTwilio.mock.calls[0]?.[0].text).toContain("PAIR123");

112+

expect(sendSmsViaTwilio).toHaveBeenCalledWith(

113+

expect.objectContaining({

114+

to: "+15551234567",

115+

text: expect.stringContaining("PAIR123"),

116+

}),

117+

);

116118

});

117119
118120

it("uses the canonical routed session key for authorized SMS turns", async () => {

Original file line numberDiff line numberDiff line change

@@ -30,16 +30,15 @@ type ProviderAuthWarmWorkerResult =

3030

};

3131
3232

function isWorkerInput(value: unknown): value is ProviderAuthWarmWorkerInput {

33+

if (!value || typeof value !== "object") {

34+

return false;

35+

}

36+

const record = value as Record<string, unknown>;

3337

return (

34-

value !== null &&

35-

typeof value === "object" &&

36-

"cfg" in value &&

37-

(!("runtimeAuthStores" in value) ||

38-

Array.isArray((value as { runtimeAuthStores?: unknown }).runtimeAuthStores)) &&

39-

(!("runtimeAuthLookups" in value) ||

40-

Array.isArray((value as { runtimeAuthLookups?: unknown }).runtimeAuthLookups)) &&

41-

(!("omitFalseProviderAuth" in value) ||

42-

typeof (value as { omitFalseProviderAuth?: unknown }).omitFalseProviderAuth === "boolean")

38+

"cfg" in record &&

39+

(!("runtimeAuthStores" in record) || Array.isArray(record.runtimeAuthStores)) &&

40+

(!("runtimeAuthLookups" in record) || Array.isArray(record.runtimeAuthLookups)) &&

41+

(!("omitFalseProviderAuth" in record) || typeof record.omitFalseProviderAuth === "boolean")

4342

);

4443

}

4544
Original file line numberDiff line numberDiff line change

@@ -245,9 +245,10 @@ interface ZodDummy {

245245

unwrap: () => z.ZodType;

246246

}

247247

function isUnwrappable(object: unknown): object is ZodDummy {

248+

if (!object || typeof object !== "object") {

249+

return false;

250+

}

248251

return (

249-

object !== null &&

250-

typeof object === "object" &&

251252

"unwrap" in object &&

252253

typeof (object as Record<string, unknown>).unwrap === "function" &&

253254

!(object instanceof z.ZodArray)

Original file line numberDiff line numberDiff line change

@@ -315,7 +315,7 @@ describe("Session Store Cache", () => {

315315

throw new Error("Expected cached entry");

316316

}

317317

expect(entry?.polluted).toBeUndefined();

318-

expect(Object.hasOwn(entry as SessionEntry, "__proto__")).toBe(true);

318+

expect(Object.hasOwn(entry as object, "__proto__")).toBe(true);

319319

expect(Object.prototype).not.toHaveProperty("polluted");

320320

});

321321