codebee 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +415 -421
- package/app/core/automation.py +30 -5
- package/app/core/catalog.py +45 -3
- package/app/core/errorlog.py +179 -0
- package/app/core/flows.py +6 -2
- package/app/core/gitmod.py +45 -1
- package/app/core/health.py +55 -61
- package/app/core/jobs.py +104 -9
- package/app/core/manager.py +101 -11
- package/app/core/modelhub.py +2952 -2896
- package/app/core/paths.py +1 -0
- package/app/core/pipeline.py +425 -99
- package/app/core/remote.py +310 -303
- package/app/core/runner.py +148 -13
- package/app/core/selfupdate.py +47 -16
- package/app/core/settings.py +9 -2
- package/app/core/step_runner.py +28 -4
- package/app/core/store.py +160 -28
- package/app/core/telemetry.py +291 -0
- package/app/core/token_meter.py +18 -0
- package/app/core/usage.py +51 -1
- package/app/main.py +379 -37
- package/app/pick_dialog.py +78 -0
- package/app/ui/app.js +1006 -266
- package/app/ui/i18n.js +107 -7
- package/app/ui/index.html +148 -55
- package/app/ui/style.css +1816 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ CodeBee 的用户可感知变更记录。发布新版时:最上面加一节,
|
|
|
4
4
|
`<!-- relnotes:start -->…<!-- relnotes:end -->` 段(那段会被 `npm view` 的
|
|
5
5
|
README 元数据带回,供老版本在「发现新版本」时展示新版更新内容)。
|
|
6
6
|
|
|
7
|
+
## v0.1.8(2026-09-18)
|
|
8
|
+
|
|
9
|
+
- README 全面重写:功能导览 + 9 张实机截图,补齐蜂巢/经验库/插件市场/自动化/对话模式等章节
|
|
10
|
+
- 修复:孤儿 CLI 清扫的 PowerShell 查询在部分机器上拖慢启动 60 秒——改为后台线程执行,不再挡服务就绪
|
|
11
|
+
- 连载韧性加强:死链步骤自动补位同池活链 CLI;网关限流退避窗口可视化(排队可开详情);启动时补队收尾
|
|
12
|
+
- 连载答疑:追话 QA 单步答疑不重跑;评审解析三道网(JSON 内嵌引号/正文提分兜底)
|
|
13
|
+
- 目录页管理操作四道防线:假新版本缓存作废复检、同条目去重闸、EBUSY/EPERM 人话提示、aider 迁移 uv tool
|
|
14
|
+
- 评审全挂不再误判「未达标」:补位评审 + 判失败;超长提示词落临时文件;打磨重评不覆盖好分
|
|
15
|
+
- 新增:欢迎引导向导、手工添加模型、wire 协议探测、详情页布局治理
|
|
16
|
+
|
|
17
|
+
## v0.1.7(2026-09-18)
|
|
18
|
+
|
|
19
|
+
- 移除「绑定链·xxx 绑定链失效」红色告警胶囊:从没配置过绑定链的 CLI 不再被误伤(0.1.6 真实装机案例,更新后人人都见红胶囊),回落 CLI 本机默认照跑
|
|
20
|
+
- 明确配置过绑定链但链上供应商全部失效时,仍会在该步骤明确报错不静默降级(防静默烧配额的本意保留),只是不再有全局胶囊
|
|
21
|
+
- 老版本残留的绑定链告警状态在升级重启后自动清除
|
|
22
|
+
- 修复:Windows 上一键升级秒挂(npm EBUSY)——npm 换版本要整体改名包目录,升级命令与就地重启的工作目录却落在包内;现统一钉到包外
|
|
23
|
+
- 修复:升级失败后「关于与更新」页永远停在「正在升级…」(升级状态轮询读错返回结构),现在成功/失败都会正常提示
|
|
24
|
+
|
|
7
25
|
## v0.1.6(2026-09-18)
|
|
8
26
|
|
|
9
27
|
- 连载韧性:网关限流/欠费时章稿失败先退避重试同作者(保住连载风格一致),重试穷尽才判死整 run;自动续跑改为延迟 5 分钟入队、上限提升到 3 次
|