merge origin/main into ori-me and keep sdk compat updates#2
Closed
819557056 wants to merge 1 commit intoImGoodBai:mainfrom
Closed
merge origin/main into ori-me and keep sdk compat updates#2819557056 wants to merge 1 commit intoImGoodBai:mainfrom
819557056 wants to merge 1 commit intoImGoodBai:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
openclawv2026.3.14,安装成功不能正常启动
这次改的是 SDK 版本不兼容导致的初始化崩溃。
具体是你报的这个:
TypeError: buildChannelConfigSchema is not a function
根因是插件还在用旧路径 openclaw/plugin-sdk/core 拿 buildChannelConfigSchema,而你当前 OpenClaw 版本里这个导出在 openclaw/plugin-sdk,导致启动时函数是 undefined。
我在 index.ts 做了两件事:
另外把项目里同类 core 导入也统一迁移到 openclaw/plugin-sdk,防止后续再出现同类 API 不匹配。