@dptech-corp/bohr-cli 2.6.23-preview.632 → 2.6.24

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -15,10 +15,22 @@
15
15
 
16
16
  ## [Unreleased]
17
17
 
18
+ ## [2.6.24] - 2026-08-17
19
+
18
20
  ### Added
19
21
 
20
22
  - **Sandbox 镜像新增 Dockerfile 回查命令**:`bohr sandbox image dockerfile <id>` 默认逐字输出解码后的构建源码,`-o json` 保留服务端 base64 字段;commit 或导入类镜像没有保存 Dockerfile 时会返回结构化 `RESOURCE_NOT_FOUND`,不再以空内容成功。
21
23
 
24
+ ## [2.6.23] - 2026-08-14
25
+
26
+ ### Added
27
+
28
+ - `bohr agents run/watch` 新增 `--no-reasoning` 与 `--out <file>`:前者只保留正文,后者按终端相同分段把完整模型文本原子保存到文件。
29
+
30
+ ### Changed
31
+
32
+ - `bohr agents run/watch` 的 human 输出默认以 `[agents] reasoning:` / `[agents] content:` 分段展示思考与正文;JSON/YAML 默认返回 `data.reasoning`,使用 `--no-reasoning` 时省略。
33
+
22
34
  ## [2.6.22] - 2026-08-14
23
35
 
24
36
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dptech-corp/bohr-cli",
3
- "version": "2.6.23-preview.632",
3
+ "version": "2.6.24",
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-amd64": "2.6.23-preview.632",
36
- "@dptech-corp/bohr-cli-darwin-arm64": "2.6.23-preview.632",
37
- "@dptech-corp/bohr-cli-linux-amd64": "2.6.23-preview.632",
38
- "@dptech-corp/bohr-cli-linux-arm64": "2.6.23-preview.632",
39
- "@dptech-corp/bohr-cli-windows-amd64": "2.6.23-preview.632",
40
- "@dptech-corp/bohr-cli-windows-arm64": "2.6.23-preview.632"
35
+ "@dptech-corp/bohr-cli-darwin-arm64": "2.6.24",
36
+ "@dptech-corp/bohr-cli-darwin-amd64": "2.6.24",
37
+ "@dptech-corp/bohr-cli-linux-amd64": "2.6.24",
38
+ "@dptech-corp/bohr-cli-linux-arm64": "2.6.24",
39
+ "@dptech-corp/bohr-cli-windows-amd64": "2.6.24",
40
+ "@dptech-corp/bohr-cli-windows-arm64": "2.6.24"
41
41
  }
42
42
  }