@shuyhere/bb-agent 0.0.18 → 0.0.20
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 +32 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.0.20] - 2026-05-06
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- added the reviewed Shape extension package with its skill, reference material, JavaScript extension entrypoint, Python knowledge-search helper, and test coverage
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- refreshed the builtin model registry across Anthropic, OpenAI, GitHub Copilot, Google, Groq, and OpenRouter with newer model IDs, limits, costs, reasoning metadata, and provider base URLs
|
|
19
|
+
- updated startup/login default model choices and provider documentation examples to point at the refreshed model list
|
|
20
|
+
|
|
21
|
+
### Improved
|
|
22
|
+
|
|
23
|
+
- added focused coverage for default model argument selection and representative builtin registry entries
|
|
24
|
+
|
|
25
|
+
## [0.0.19] - 2026-04-19
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- tool expand/collapse hints now explicitly advertise mouse support again (`Click or Ctrl+Shift+O to expand/collapse`), and mouse toggles are more robust when clicking wrapped or nested transcript rows
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- bash timeout/cancel is now a true hard stop: after killing a timed-out or cancelled bash process, BB no longer waits forever for inherited stdout/stderr pipes to reach EOF
|
|
34
|
+
- pressing `Esc` during a cancellable turn/tool/local action now requests cancellation before local TUI behaviors like clearing input, jumping to bottom, or leaving transcript mode can consume the key
|
|
35
|
+
|
|
36
|
+
### Improved
|
|
37
|
+
|
|
38
|
+
- regression coverage now includes detached-child bash timeout hangs plus focused TUI Esc-priority and click-to-expand interaction cases
|
|
39
|
+
|
|
10
40
|
## [0.0.18] - 2026-04-18
|
|
11
41
|
|
|
12
42
|
### Added
|
|
@@ -221,6 +251,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
221
251
|
|
|
222
252
|
- latest published package includes the post-0.0.7 startup, auth, model-default, and update-notice improvements
|
|
223
253
|
|
|
254
|
+
[0.0.20]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.20
|
|
255
|
+
[0.0.19]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.19
|
|
224
256
|
[0.0.18]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.18
|
|
225
257
|
[0.0.17]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.17
|
|
226
258
|
[0.0.16]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.16
|
package/README.md
CHANGED
|
@@ -146,7 +146,7 @@ BB-Agent uses layered configuration:
|
|
|
146
146
|
```json
|
|
147
147
|
{
|
|
148
148
|
"execution_mode": "safety",
|
|
149
|
-
"default_model": "claude-
|
|
149
|
+
"default_model": "claude-opus-4-6",
|
|
150
150
|
"default_provider": "anthropic",
|
|
151
151
|
"default_thinking": "medium",
|
|
152
152
|
"execution_mode": "safety",
|