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

推荐订阅源

WordPress大学
WordPress大学
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
V
Visual Studio Blog
C
Check Point Blog
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42
量子位
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
M
MIT News - Artificial intelligence
爱范儿
爱范儿
B
Blog RSS Feed
MyScale Blog
MyScale Blog
H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
L
LangChain Blog
D
Docker

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 helper exports · openclaw/opencl...
steipete · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -26,7 +26,7 @@ function normalizeFutureEpochSeconds(value: unknown): number | undefined {

2626

return undefined;

2727

}

2828
29-

export function decodeCodexJwtPayload(accessToken: string): CodexJwtPayload | null {

29+

function decodeCodexJwtPayload(accessToken: string): CodexJwtPayload | null {

3030

const parts = accessToken.split(".");

3131

if (parts.length !== 3) {

3232

return null;

@@ -41,7 +41,7 @@ export function decodeCodexJwtPayload(accessToken: string): CodexJwtPayload | nu

4141

}

4242

}

4343
44-

export function resolveCodexStableSubject(payload: CodexJwtPayload | null): string | undefined {

44+

function resolveCodexStableSubject(payload: CodexJwtPayload | null): string | undefined {

4545

const auth = payload?.["https://api.openai.com/auth"];

4646

const accountUserId = trimNonEmptyString(auth?.chatgpt_account_user_id);

4747

if (accountUserId) {

Original file line numberDiff line numberDiff line change

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

11

import type { ModelProviderConfig } from "openclaw/plugin-sdk/provider-model-shared";

22

import { OPENAI_CODEX_RESPONSES_BASE_URL } from "./base-url.js";

33
4-

export const OPENAI_CODEX_BASE_URL = OPENAI_CODEX_RESPONSES_BASE_URL;

4+

const OPENAI_CODEX_BASE_URL = OPENAI_CODEX_RESPONSES_BASE_URL;

55
66

export function buildOpenAICodexProvider(): ModelProviderConfig {

77

return {

Original file line numberDiff line numberDiff line change

@@ -32,7 +32,7 @@ type SyntheticOpenAIModelCatalogEntry = {

3232

cost?: SyntheticOpenAIModelCatalogCost;

3333

};

3434
35-

export const OPENAI_API_BASE_URL = "https://api.openai.com/v1";

35+

const OPENAI_API_BASE_URL = "https://api.openai.com/v1";

3636
3737

export function toOpenAIDataUrl(buffer: Buffer, mimeType: string): string {

3838

return `data:${mimeType};base64,${buffer.toString("base64")}`;

@@ -48,7 +48,7 @@ function hasSupportedOpenAIResponsesTransport(

4848

return transport === "auto" || transport === "sse" || transport === "websocket";

4949

}

5050
51-

export function defaultOpenAIResponsesExtraParams(

51+

function defaultOpenAIResponsesExtraParams(

5252

extraParams: Record<string, unknown> | undefined,

5353

options?: { openaiWsWarmup?: boolean },

5454

): Record<string, unknown> | undefined {

Original file line numberDiff line numberDiff line change

@@ -142,5 +142,5 @@ export default definePluginEntry({

142142

export { createProposalFromMessages } from "./src/signals.js";

143143

export { SkillWorkshopStore } from "./src/store.js";

144144

export { applyProposalToWorkspace } from "./src/skills.js";

145-

export { countToolCalls, reviewTranscriptForProposal } from "./src/reviewer.js";

145+

export { reviewTranscriptForProposal } from "./src/reviewer.js";

146146

export { scanSkillContent } from "./src/scanner.js";

Original file line numberDiff line numberDiff line change

@@ -19,7 +19,7 @@ export const DEFAULT_VYDRA_IMAGE_MODEL = "grok-imagine";

1919

export const DEFAULT_VYDRA_VIDEO_MODEL = "veo3";

2020

export const DEFAULT_VYDRA_SPEECH_MODEL = "elevenlabs/tts";

2121

export const DEFAULT_VYDRA_VOICE_ID = "21m00Tcm4TlvDq8ikWAM";

22-

export const DEFAULT_HTTP_TIMEOUT_MS = 120_000;

22+

const DEFAULT_HTTP_TIMEOUT_MS = 120_000;

2323

const POLL_INTERVAL_MS = 2_500;

2424

const MAX_POLL_ATTEMPTS = 120;

2525

type VydraAuthStore = Parameters<typeof resolveApiKeyForProvider>[0]["store"];

@@ -80,7 +80,7 @@ export function normalizeVydraBaseUrl(value: string | undefined): string {

8080

}

8181

}

8282
83-

export function resolveVydraBaseUrlFromConfig(cfg: unknown): string {

83+

function resolveVydraBaseUrlFromConfig(cfg: unknown): string {

8484

const models = asObject(asObject(cfg)?.models);

8585

const providers = asObject(models?.providers);

8686

const vydra = asObject(providers?.vydra);

@@ -140,7 +140,7 @@ export function resolveVydraResponseStatus(payload: unknown): string | undefined

140140

return normalizeOptionalLowercaseString(trimToUndefined(asObject(payload)?.status));

141141

}

142142
143-

export function resolveVydraErrorMessage(payload: unknown): string | undefined {

143+

function resolveVydraErrorMessage(payload: unknown): string | undefined {

144144

const object = asObject(payload) as VydraJobPayload | undefined;

145145

const error = object?.error;

146146

if (typeof error === "string" && error.trim()) {

@@ -242,7 +242,7 @@ export async function downloadVydraAsset(params: {

242242

};

243243

}

244244
245-

export async function waitForVydraJob(params: {

245+

async function waitForVydraJob(params: {

246246

baseUrl: string;

247247

jobId: string;

248248

headers: Headers;