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

推荐订阅源

M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
量子位
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
J
Java Code Geeks
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
IT之家
IT之家
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
雷峰网
雷峰网

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(plugins): finish compat registry cleanup · openclaw...
vincentkoc · 2026-04-26 · via Recent Commits to openclaw:main

@@ -9,6 +9,89 @@ import {

991010

const datePattern = /^\d{4}-\d{2}-\d{2}$/u;

111112+

const knownDeprecatedSurfaceMarkers = [

13+

{

14+

code: "legacy-extension-api-import",

15+

file: "src/extensionAPI.ts",

16+

marker: "openclaw/extension-api is deprecated",

17+

},

18+

{

19+

code: "memory-split-registration",

20+

file: "src/plugins/memory-state.ts",

21+

marker: "registerMemoryPromptSection",

22+

},

23+

{

24+

code: "provider-static-capabilities-bag",

25+

file: "src/plugins/types.ts",

26+

marker: "Legacy static provider capability bag",

27+

},

28+

{

29+

code: "provider-discovery-type-aliases",

30+

file: "src/plugins/types.ts",

31+

marker: "ProviderPluginDiscovery = ProviderPluginCatalog",

32+

},

33+

{

34+

code: "provider-thinking-policy-hooks",

35+

file: "src/plugins/types.ts",

36+

marker: "Prefer `resolveThinkingProfile`",

37+

},

38+

{

39+

code: "provider-external-oauth-profiles-hook",

40+

file: "src/plugins/types.ts",

41+

marker: "resolveExternalOAuthProfiles",

42+

},

43+

{

44+

code: "agent-tool-result-harness-alias",

45+

file: "src/plugins/agent-tool-result-middleware-types.ts",

46+

marker: "AgentToolResultMiddlewareHarness",

47+

},

48+

{

49+

code: "runtime-taskflow-legacy-alias",

50+

file: "src/plugins/runtime/types-core.ts",

51+

marker: "taskFlow",

52+

},

53+

{

54+

code: "runtime-subagent-get-session-alias",

55+

file: "src/plugins/runtime/types.ts",

56+

marker: "getSessionMessages",

57+

},

58+

{

59+

code: "runtime-stt-alias",

60+

file: "src/plugins/runtime/types-core.ts",

61+

marker: "stt",

62+

},

63+

{

64+

code: "runtime-inbound-envelope-alias",

65+

file: "src/plugins/runtime/types-channel.ts",

66+

marker: "formatInboundEnvelope",

67+

},

68+

{

69+

code: "channel-native-message-schema-helpers",

70+

file: "src/plugin-sdk/channel-actions.ts",

71+

marker: "createMessageToolButtonsSchema",

72+

},

73+

{

74+

code: "channel-mention-gating-legacy-helpers",

75+

file: "src/plugin-sdk/channel-inbound.ts",

76+

marker: "resolveMentionGatingWithBypass",

77+

},

78+

{

79+

code: "provider-web-search-core-wrapper",

80+

file: "src/plugin-sdk/provider-web-search.ts",

81+

marker: "createPluginBackedWebSearchProvider",

82+

},

83+

{

84+

code: "approval-capability-approvals-alias",

85+

file: "src/plugin-sdk/approval-delivery-helpers.ts",

86+

marker: "approvals?: Partial<ChannelApprovalCapabilitySurfaces>",

87+

},

88+

{

89+

code: "plugin-sdk-test-utils-alias",

90+

file: "src/plugin-sdk/test-utils.ts",

91+

marker: "Deprecated compatibility alias",

92+

},

93+

] as const;

94+1295

function parseDate(date: string): Date {

1396

return new Date(`${date}T00:00:00Z`);

1497

}

@@ -58,4 +141,11 @@ describe("plugin compatibility registry", () => {

58141

}

59142

}

60143

});

144+145+

it("tracks known plugin-facing deprecated surfaces", () => {

146+

for (const surface of knownDeprecatedSurfaceMarkers) {

147+

expect(isPluginCompatCode(surface.code), surface.code).toBe(true);

148+

expect(fs.readFileSync(surface.file, "utf8"), surface.file).toContain(surface.marker);

149+

}

150+

});

61151

});