v5.6.3:百炼主力 + Content Producer 正式发布 + 数据闭环 + install bug 修复 - #468
Merged
Conversation
## config-templates/openclaw.json
- 新增 bailian-token-plan provider(baseUrl 走百炼 token-plan 端点,
anthropic-messages api,三个模型:deepseek-v4-flash-0731 / glm-5.2 /
qwen3.6-flash)
- agents.defaults.model.primary 改为
bailian-token-plan/deepseek-v4-flash-0731,
fallbacks 改为 bailian-token-plan/glm-5.2
- imageModel.primary 改为 bailian-token-plan/qwen3.6-flash
- 火山 awk provider 保留不删(用户手动复制可继续用)
## README
- 「准备 API Key」段:推荐从火山方舟 Coding Plan 切到阿里云百炼
「AI Superstar」套餐,附推荐链接,说明 Lite/Standard 版本选择
- 「模型费用说明」段:主力模型推荐百炼;火山改为「仍想用火山」
的手动切换说明;去掉 AihubMix 海外模型备选段
- 友情链接:去掉 AihubMix logo(合作到期)
- 目录树注释:openclaw-aihubmix.json 标注「已停推,保留历史兼容」
## install.ps1 / install-atomgit.ps1
- 交互提示文案从 "Volces ARK API key" 改为 "Aliyun Bailian API key"
## 环境变量名
- AWK_API_KEY 不改(跟旧版兼容),百炼 provider 的 apiKey 仍引用
${AWK_API_KEY}
Co-Authored-By: AtomCode (GLM-5.2) <noreply@atomgit.com>
## config-templates
- `openclaw.json`:删火山 awk provider,只留百 bailian-token-plan(主力
deepseek-v4-flash-0731 / fallback glm-5.2 / 视觉 qwen3.6-flash)
- 新建 `openclaw-awk.json`:火山方舟 Coding Plan 备选模板(主力
awk/glm-latest / fallback awk/deepseek-v4-pro 等 / 视觉
awk/doubao-seed-2.0-lite),agents list / bindings / channels /
plugins 结构与百炼版一致
- 删 `openclaw-aihubmix.json`(AihubMix 合作到期,不再推)
## README.md
- 「准备 API Key」段推荐阿里云百炼「AI Superstar」套餐(附推荐链接,
说明 Lite 39 元/月、Standard 139 元/月),去掉火山限量发售提示
- 「模型费用说明」段:主力推荐百炼;火山改为「仍想用火山」手动切换
说明(改 agents.defaults.model.primary 为 awk/glm-latest 后重跑
setup-crew.sh),不再提 AihubMix 海外模型备选
- 友情链接:去掉 AihubMix logo(合作到期)
- 目录树注释:openclaw-aihubmix.json → openclaw-awk.json(火山备选),
完全不出现 AihubMix 字样
## scripts/install.ps1 / install-atomgit.ps1(修复 Windows skills 软链)
- `Run-SetupCrew` 调 bash 前导出 `MSYS=winsymlinks:nativestrict`:
Git Bash 的 MSYS2 层默认把 `ln -s` 当 `cp -r` 真拷贝,导致
setup-crew.sh 落的 ~/.openclaw/workspace-<id>/skills/ 是真文件夹
而非软链;开 winsymlinks:nativestrict 让 `ln -s` 走真 NTFS 软链
(需 Win10+ 开发者模式或管理员;无则回退旧行为,不回归)
- 新增 `Sync-GlobalSkills` 函数:把仓根 skills/ 软链到
~/.openclaw/skills(镜像 apply-addons.sh 那段语义,Windows 路线
原本没调 apply-addons.sh,所以 ~/.openclaw/skills 要么缺失要么是
旧真文件夹)。幂等:已是正确软链则 no-op;是软链但指向别处则
重建;是真文件夹则警告不删(保用户编辑);创建失败回退 copy
- main 流程在 Run-SetupCrew 后、Expose-SkillWrappers 前调用
Sync-GlobalSkills
- 交互提示文案从 "Volces ARK API key" 改为 "Aliyun Bailian API key"
## 环境变量名
- AWK_API_KEY 不改(跟旧版兼容),百炼 provider 的 apiKey 仍引用
${AWK_API_KEY}
Co-Authored-By: AtomCode (GLM-5.2) <noreply@atomgit.com>
…用补兜底
## scripts/install-atomgit.sh
### spinner 连 GitHub 超时(atomgit 国内线路不该走 GitHub)
- charmbracelet/gum 的 release 只在 GitHub,atomgit 国内线路连 GitHub
常超 75s 拖慢安装(用户实测报错 curl: (28) ... port 443 after 75012ms)
- 改 atomgit 版顶部 GUM_VERSION 默认值由 "0.17.0" 改为空,
bootstrap_gum_temp 函数在「command -v gum 命中系统已装」之后插
空判定短路:GUM_VERSION 为空时跳过 GitHub 下载,
GUM_REASON="gum bootstrap disabled on atomgit route"
- spinner 失败本就自动回退无 spinner 继续,不影响安装结果,只是没动画
- 用户机器已装 gum(brew install gum)仍会被 command -v 命中使用;
想强制 bootstrap 走 GitHub 可 export OPENCLAW_GUM_VERSION=0.17.0
### OPENCLAW_HOME?: unbound variable(set -u 下报错)
- install_gateway_and_env 里「提示用户清掉错误的 OPENCLAW_HOME」段:
if [ -n "${OPENCLAW_HOME:-}" ] && [ "$(cd "${OPENCLAW_HOME}" && pwd)" = ...
前半有兜底,但 cd 那段裸引 ${OPENCLAW_HOME},set -u 下若变量未绑会报错
- cd 那段也改 ${OPENCLAW_HOME:-} 兜底;ui_info 里 $OPENCLAW_HOME 同步加兜底
## scripts/install.sh(保持两版一致)
- 同样那段 cd "${OPENCLAW_HOME}" 裸引用也补 ${OPENCLAW_HOME:-} 兜底,
虽然 GitHub 路线暂未收到同样报错,但两版写法本应一致避免回归
Co-Authored-By: AtomCode (GLM-5.2) <noreply@atomgit.com>
## README.md - 安装段补「Windows 建议打开开发者模式」说明(软链需要, 否则脚本回退拷贝,技能不会随仓更新自动同步) - 更新段 5.6.0 → 5.6.3: - 重点 Content Producer 正式发布(此前预发布),视频制作全面进化 - 数据闭环彻底打通(calibrator + published-track),为自我进化奠基 - 底座升级到 OpenClaw 七 v2026.7.1 - 安装脚本大幅优化,对比 5.6.0 修了若干 bug,产品稳定性显著提高 - wx-mp-hunter 接口重写(官方调整旧接口已不可用) - 推荐大模型切到阿里云百炼 - 零碎 5.6.0 引用清理:XIAOBEI_TAG 默认值、浏览器栈段引言 ## CHANGELOG.md - 新增 v5.6.3 (2026-08-07) 段,含四块: - 数据闭环彻底打通(calibrator + published-track + content-producer 正式发布) - wx-mp-hunter 接口重写 - 5.6.2 bug 修复(install 四脚本实测踩坑 8 条逐一列出) - 推荐大模型切到阿里云百炼(config 模板拆分 + README 文案) - 底座升级到 OpenClaw 七 v2026.7.1 Co-Authored-By: AtomCode (GLM-5.2) <noreply@atomgit.com>
|
codes-factory-of-bg seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
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.
v5.6.3
今晚 4 个 commit 的合集,从
11ca1e1起算:推荐大模型切到阿里云百炼(
cf25854)config-templates/openclaw.json新增bailian-token-planprovider,主力deepseek-v4-flash-0731/ fallbackglm-5.2/ 视觉qwen3.6-flash;删火山awkproviderconfig-templates/openclaw-awk.json(火山方舟 Coding Plan 备选模板,主力awk/glm-latest)config-templates/openclaw-aihubmix.json(AihubMix 合作到期)AWK_API_KEY不改(跟旧版兼容)拆模板为百炼/火山两套,修复 Windows skills 软链(
182ef32)openclaw.json删火山 provider 只留百炼;新建openclaw-awk.json放火山全套;删openclaw-aihubmix.jsonopenclaw-awk.jsonworkspace-<crew>/skills落真文件夹而非软链:根因是 Git Bash 的 MSYS2 默认把ln -s当cp -r。Run-SetupCrew调 bash 前导出MSYS=winsymlinks:nativestrict让ln -s走真 NTFS 软链Sync-GlobalSkills函数:把仓根skills/软链到~/.openclaw/skills(Windows 路线原本没调apply-addons.sh),幂等 + 失败回退 copyatomgit 路线默认跳过 gum spinner bootstrap + OPENCLAW_HOME 裸引用补兜底(
686c118)gumspinner 库的 release 只在 GitHub,atomgit 国内线路连 GitHub 常超 75 秒拖慢安装。改GUM_VERSION默认置空,bootstrap_gum_temp加空判定短路。系统已装gum仍会用;想强制走 GitHub 可export OPENCLAW_GUM_VERSION=0.17.0OPENCLAW_HOME?: unbound variable:install_gateway_and_env里cd "${OPENCLAW_HOME}"裸引用在set -u下报错,补${OPENCLAW_HOME:-}兜底,两版一并修README + CHANGELOG 更新到 v5.6.3(
bb03006)后续
合入后请重新启用 Build Dist Tarball(workflow ID 317143649)+ Auto Release(workflow ID 238573611)跑一次 release。
Co-Authored-By: AtomCode (GLM-5.2) noreply@atomgit.com