@dptech-corp/bohr-cli 2.6.25 → 2.6.27
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 +12 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,18 @@
|
|
|
15
15
|
|
|
16
16
|
## [Unreleased]
|
|
17
17
|
|
|
18
|
+
## [2.6.27] - 2026-08-18
|
|
19
|
+
|
|
20
|
+
### Breaking
|
|
21
|
+
|
|
22
|
+
- **Mentor 的规范入口调整为 `bohr agents mentor`**:与其他托管科学 Agent 服务统一归入 `agents`。原顶层 `bohr mentor` 已隐藏并废弃,兼容期内仍可使用且会提示迁移,旧入口至少保留一个 minor 版本;参数、流式输出和 `mentor.session` 计费行为保持不变。
|
|
23
|
+
|
|
24
|
+
## [2.6.26] - 2026-08-17
|
|
25
|
+
|
|
26
|
+
### Breaking
|
|
27
|
+
|
|
28
|
+
- **`bohr skills` 改为只读、随 CLI 内嵌的命令指引入口**:此前该命令会代理 `bohrium-skills-cli`,并同时提供 `install` / `update` / `status` / `sync` / `diff`、`--managed` 与 `--lang`,`bohr sandbox skill` / `bohr batchjob skill` 还会导出或覆盖本地副本;现在只保留顶层 `list [skill[/path]]` 和 `read <skill>[/path] [path]`,不访问 Skill Hub,也不再写入用户 Skill 目录。通用 Skill Hub 用户请直接使用 `bohrium-skills-cli`,原先读取 CLI 指引的调用方改用 `bohr skills list/read`。内嵌 Skill 的规范名同时由 `bohrium-sandbox` / `bohrium-batchjob` 改为 `bohr-sandbox` / `bohr-batchjob`。
|
|
29
|
+
|
|
18
30
|
## [2.6.25] - 2026-08-17
|
|
19
31
|
|
|
20
32
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dptech-corp/bohr-cli",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.27",
|
|
4
4
|
"description": "CLI tool for Bohrium scientific computing platform",
|
|
5
5
|
"bin": {
|
|
6
6
|
"bohr": "run.js"
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"CHANGELOG.md"
|
|
33
33
|
],
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.
|
|
36
|
-
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.
|
|
37
|
-
"@dptech-corp/bohr-cli-linux-amd64": "2.6.
|
|
38
|
-
"@dptech-corp/bohr-cli-linux-arm64": "2.6.
|
|
39
|
-
"@dptech-corp/bohr-cli-windows-amd64": "2.6.
|
|
40
|
-
"@dptech-corp/bohr-cli-windows-arm64": "2.6.
|
|
35
|
+
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.27",
|
|
36
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.27",
|
|
37
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.27",
|
|
38
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.27",
|
|
39
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.27",
|
|
40
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.27"
|
|
41
41
|
}
|
|
42
42
|
}
|