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

推荐订阅源

Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
博客园_首页
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
L
LangChain 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
fix(ci): repair main type and lint failures · openclaw/op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -571,12 +571,12 @@ export function registerPluginsCli(program: Command) {

571571

} = await import("../plugins/installed-plugin-index-records.js");

572572

const { buildPluginDiagnosticsReport } = await import("../plugins/status.js");

573573

const {

574+

applyPluginUninstallDirectoryRemoval,

574575

formatUninstallActionLabels,

575576

formatUninstallSlotResetPreview,

577+

planPluginUninstall,

576578

resolveUninstallChannelConfigKeys,

577-

resolveUninstallDirectoryTarget,

578579

UNINSTALL_ACTION_LABELS,

579-

uninstallPlugin,

580580

} = await import("../plugins/uninstall.js");

581581

const { commitPluginInstallRecordsWithConfig } =

582582

await import("./plugins-install-record-commit.js");

Original file line numberDiff line numberDiff line change

@@ -12,19 +12,6 @@ const OPENAI_CODEX_MODEL = {

1212

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

1313

};

1414
15-

const OPENAI_CODEX_MINI_MODEL = {

16-

...OPENAI_CODEX_MODEL,

17-

id: "gpt-5.4-mini",

18-

name: "GPT-5.4 Mini",

19-

contextWindow: 272_000,

20-

};

21-
22-

const OPENAI_CODEX_PRO_MODEL = {

23-

...OPENAI_CODEX_MODEL,

24-

id: "gpt-5.4-pro",

25-

name: "GPT-5.4 Pro",

26-

};

27-
2815

const OPENAI_CODEX_53_MODEL = {

2916

...OPENAI_CODEX_MODEL,

3017

id: "gpt-5.4",

Original file line numberDiff line numberDiff line change

@@ -604,6 +604,9 @@ function buildInstalledPluginIndex(

604604

if (record.enabledByDefault === true) {

605605

indexRecord.enabledByDefault = true;

606606

}

607+

if (record.syntheticAuthRefs && record.syntheticAuthRefs.length > 0) {

608+

indexRecord.syntheticAuthRefs = record.syntheticAuthRefs;

609+

}

607610

if (record.setupSource) {

608611

indexRecord.setupSource = record.setupSource;

609612

}

Original file line numberDiff line numberDiff line change

@@ -1,12 +1,22 @@

11

import { beforeEach, describe, expect, it, vi } from "vitest";

22
3+

type SyntheticAuthRegistrySnapshotResult = {

4+

source: "persisted" | "provided" | "derived";

5+

snapshot: {

6+

plugins: Array<{ syntheticAuthRefs?: string[] }>;

7+

};

8+

diagnostics: [];

9+

};

10+
311

const getPluginRegistryState = vi.hoisted(() => vi.fn());

412

const pluginRegistryMocks = vi.hoisted(() => ({

5-

loadPluginRegistrySnapshotWithMetadata: vi.fn((_params?: unknown) => ({

6-

source: "persisted",

7-

snapshot: { plugins: [] },

8-

diagnostics: [],

9-

})),

13+

loadPluginRegistrySnapshotWithMetadata: vi.fn(

14+

(_params?: unknown): SyntheticAuthRegistrySnapshotResult => ({

15+

source: "persisted",

16+

snapshot: { plugins: [] },

17+

diagnostics: [],

18+

}),

19+

),

1020

}));

1121
1222

vi.mock("./runtime-state.js", () => ({