@dptech-corp/bohr-cli 2.6.46 → 2.6.47
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 +24 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,30 @@
|
|
|
16
16
|
|
|
17
17
|
## [Unreleased]
|
|
18
18
|
|
|
19
|
+
## [2.6.47] - 2026-08-24
|
|
20
|
+
|
|
21
|
+
### Breaking
|
|
22
|
+
|
|
23
|
+
- **下掉 `bohr config initialize`**(含别名 `i`):它一直是空实现,什么也不做。配置目录由 `auth login`、`config set` 自动创建。
|
|
24
|
+
|
|
25
|
+
- **Agent 执行目录。** `bohr agents run` 仅执行 `bohr agents list` 中的 7 个目标;其他命令和 `bohr api` 不变。
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- **新增内嵌 `bohr-notebook` Skill**:可读取与当前版本一致的实例、Cell、异步运行、发布与协作指引。
|
|
30
|
+
- **新增内嵌 `bohr-lkm` 与 `bohr-wiki` Skill**:提供知识检索、推理、PDF 抽取和科学百科指引。
|
|
31
|
+
- **沙盒父子生命周期**:`create --parent-sandbox-id` 建立多级关系,列表默认树形展示,删除父沙盒会级联清理后代。
|
|
32
|
+
- **模板资源与共享控制**:创建支持 `--shm-size`、`--visibility`;新增 `share/unshare/grants` 与项目筛选。
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- **Sandbox Skill 减少网络盘扫描**:反复检索 `/share`、`/personal` 时建立窄范围路径索引,并按任务选择额外临时盘。
|
|
37
|
+
|
|
38
|
+
### Fixed
|
|
39
|
+
|
|
40
|
+
- **`sandbox doctor -o json` 不再输出两份 JSON**:环境未就绪时 stdout 会追加第二份错误信封,调用方解析直接失败。
|
|
41
|
+
- **子命令名打错时 `-o json` 也给信封**:`bohr config nosuchsub` 此前 stdout 为空,现给 `UNKNOWN_COMMAND` 并提示该组 `--help`。
|
|
42
|
+
|
|
19
43
|
## [2.6.46] - 2026-08-24
|
|
20
44
|
|
|
21
45
|
### Added
|
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.47",
|
|
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.47",
|
|
36
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.47",
|
|
37
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.47",
|
|
38
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.47",
|
|
39
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.47",
|
|
40
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.47"
|
|
41
41
|
}
|
|
42
42
|
}
|