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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

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
docs(types): mark legacy aliases deprecated · openclaw/op...
vincentkoc · 2026-04-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -45,6 +45,8 @@ export type MsgContext = {

4545

timestamp?: number;

4646

}>;

4747

/**

48+

* @deprecated Use CommandBody.

49+

*

4850

* Raw message body without structural context (history, sender labels).

4951

* Legacy alias for CommandBody. Falls back to Body if not set.

5052

*/

Original file line numberDiff line numberDiff line change

@@ -112,7 +112,7 @@ export type ChannelSetupInput = {

112112

useEnv?: boolean;

113113

homeserver?: string;

114114

dangerouslyAllowPrivateNetwork?: boolean;

115-

/** Compatibility alias for legacy setup callers; prefer dangerouslyAllowPrivateNetwork. */

115+

/** @deprecated Compatibility alias; prefer dangerouslyAllowPrivateNetwork. */

116116

allowPrivateNetwork?: boolean;

117117

proxy?: string;

118118

userId?: string;

@@ -407,6 +407,8 @@ export type ChannelThreadingAdapter = {

407407

*/

408408

allowExplicitReplyTagsWhenOff?: boolean;

409409

/**

410+

* @deprecated Use allowExplicitReplyTagsWhenOff.

411+

*

410412

* Deprecated alias for allowExplicitReplyTagsWhenOff.

411413

* Kept for compatibility with older plugin surfaces.

412414

*/

Original file line numberDiff line numberDiff line change

@@ -7,6 +7,7 @@ import {

77
88

export type ConfigSetOptions = {

99

strictJson?: boolean;

10+

/** @deprecated Use strictJson. */

1011

json?: boolean;

1112

dryRun?: boolean;

1213

allowExec?: boolean;

Original file line numberDiff line numberDiff line change

@@ -49,6 +49,7 @@ type GatewayRunOpts = {

4949

force?: boolean;

5050

verbose?: boolean;

5151

cliBackendLogs?: boolean;

52+

/** @deprecated Use cliBackendLogs. */

5253

claudeCliLogs?: boolean;

5354

wsLog?: unknown;

5455

compact?: boolean;

Original file line numberDiff line numberDiff line change

@@ -42,6 +42,7 @@ export type PluginMarketplaceListOptions = {

4242
4343

export type PluginUninstallOptions = {

4444

keepFiles?: boolean;

45+

/** @deprecated Use keepFiles. */

4546

keepConfig?: boolean;

4647

force?: boolean;

4748

dryRun?: boolean;

Original file line numberDiff line numberDiff line change

@@ -8,7 +8,7 @@ export type OnboardMode = "local" | "remote";

88

* are normalized elsewhere (for example `oauth` -> `setup-token`).

99

*/

1010

export type BuiltInAuthChoice =

11-

// Legacy alias for `setup-token` (kept for backwards CLI compatibility).

11+

/** @deprecated Use `setup-token`. */

1212

"oauth" | "setup-token" | "token" | "apiKey" | "custom-api-key" | "skip";

1313

export type AuthChoice = BuiltInAuthChoice | (string & {});

1414

@@ -20,7 +20,7 @@ export type GatewayBind = "loopback" | "lan" | "auto" | "custom" | "tailnet";

2020

export type TailscaleMode = "off" | "serve" | "funnel";

2121

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

2222

export type ChannelChoice = ChannelId;

23-

// Legacy alias (pre-rename).

23+

/** @deprecated Use ChannelChoice. */

2424

export type ProviderChoice = ChannelChoice;

2525

export type { SecretInputMode } from "../plugins/provider-auth-types.js";

2626
Original file line numberDiff line numberDiff line change

@@ -195,11 +195,11 @@ export type SessionMaintenanceConfig = {

195195

mode?: SessionMaintenanceMode;

196196

/** Remove session entries older than this duration (e.g. "30d", "12h"). Default: "30d". */

197197

pruneAfter?: string | number;

198-

/** Deprecated. Use pruneAfter instead. */

198+

/** @deprecated Use pruneAfter instead. */

199199

pruneDays?: number;

200200

/** Maximum number of session entries to keep. Default: 500. */

201201

maxEntries?: number;

202-

/** Deprecated and ignored. Run `openclaw doctor --fix` to remove. */

202+

/** @deprecated Ignored. Run `openclaw doctor --fix` to remove. */

203203

rotateBytes?: number | string;

204204

/**

205205

* Retention for archived reset transcripts (`*.reset.<timestamp>`).

Original file line numberDiff line numberDiff line change

@@ -35,7 +35,7 @@ export type CronConfig = {

3535

/** Override default retry policy for one-shot jobs on transient errors. */

3636

retry?: CronRetryConfig;

3737

/**

38-

* Deprecated legacy fallback webhook URL used only for stored jobs with notify=true.

38+

* @deprecated Legacy fallback webhook URL used only for stored jobs with notify=true.

3939

* Prefer per-job delivery.mode="webhook" with delivery.to.

4040

*/

4141

webhook?: string;

Original file line numberDiff line numberDiff line change

@@ -151,10 +151,24 @@ export type ModelsConfig = {

151151

mode?: "merge" | "replace";

152152

providers?: Record<string, ModelProviderConfig>;

153153

pricing?: ModelPricingConfig;

154-

// Deprecated legacy compat aliases. Kept in the runtime type surface so

155-

// doctor/runtime fallbacks can read older configs until migration completes.

154+

/**

155+

* @deprecated Legacy compat alias. Kept so doctor/runtime fallbacks can read

156+

* older configs until migration completes.

157+

*/

156158

bedrockDiscovery?: BedrockDiscoveryConfig;

159+

/**

160+

* @deprecated Legacy compat alias. Kept so doctor/runtime fallbacks can read

161+

* older configs until migration completes.

162+

*/

157163

copilotDiscovery?: DiscoveryToggleConfig;

164+

/**

165+

* @deprecated Legacy compat alias. Kept so doctor/runtime fallbacks can read

166+

* older configs until migration completes.

167+

*/

158168

huggingfaceDiscovery?: DiscoveryToggleConfig;

169+

/**

170+

* @deprecated Legacy compat alias. Kept so doctor/runtime fallbacks can read

171+

* older configs until migration completes.

172+

*/

159173

ollamaDiscovery?: DiscoveryToggleConfig;

160174

};

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,8 @@

1-

// Legacy compat surface for plugins that still import openclaw/extension-api.

2-

// Keep this file intentionally narrow and forward-only.

1+

/**

2+

* @deprecated Legacy compat surface for plugins that still import

3+

* openclaw/extension-api. Use the injected plugin runtime or focused

4+

* openclaw/plugin-sdk subpaths instead.

5+

*/

36
47

const shouldWarnExtensionApiImport =

58

process.env.VITEST !== "true" &&