@shuyhere/bb-agent 0.0.7 → 0.0.9
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 +33 -9
- package/README.md +35 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,22 +5,46 @@ All notable changes to BB-Agent will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [0.0.
|
|
8
|
+
## [0.0.9] - 2026-04-07
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `@folder/` expansion now sends a directory tree summary to the model instead of treating folders like text files
|
|
13
|
+
- large `@file` expansions now send a structural outline first for long files instead of dumping the entire file immediately
|
|
14
|
+
- non-UTF-8 and binary `@file` references now send metadata instead of a misleading UTF-8 read error
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- fullscreen paste in iTerm2/SSH no longer corrupts the input area after paste
|
|
19
|
+
- pasted file and image paths are normalized more reliably, including quoted paths and `file://` URLs
|
|
20
|
+
- fullscreen prompt submission now expands `@file` references consistently
|
|
21
|
+
- running tool timers continue updating after `TurnEnd` while tools are still executing
|
|
22
|
+
- sub-second tool durations now display as `ms` instead of `0.0s`
|
|
23
|
+
- startup Skills/Prompts/Extensions note now only appears at startup or explicit `/reload`
|
|
24
|
+
- remote SSH clipboard copy no longer leaks Wayland/XDG clipboard helper warnings into the TUI
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- fullscreen `Ctrl+V` now falls back to clipboard text when no clipboard image is available
|
|
29
|
+
- `@` autocomplete now inserts quoted file references when paths contain spaces
|
|
30
|
+
|
|
31
|
+
## [0.0.8] - 2026-04-06
|
|
9
32
|
|
|
10
33
|
### Fixed
|
|
11
34
|
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
35
|
+
- auth-aware startup now prefers configured defaults or the last authenticated provider/model instead of falling back unexpectedly
|
|
36
|
+
- Gemini default model now prefers `gemini-3.1-pro`
|
|
37
|
+
- GitHub Copilot default model selection now prefers Claude Opus 4.6 when available
|
|
38
|
+
- login and no-auth UX now remind users that `/model` can switch to other configured models
|
|
39
|
+
- startup now shows a short update notice with npm-aware update commands when installed from npm
|
|
16
40
|
|
|
17
41
|
### Added
|
|
18
42
|
|
|
19
|
-
-
|
|
20
|
-
- Windows support in the npm installer/launcher path
|
|
43
|
+
- startup update notice for published builds, including npm-specific upgrade guidance
|
|
21
44
|
|
|
22
45
|
### Changed
|
|
23
46
|
|
|
24
|
-
-
|
|
47
|
+
- latest published package includes the post-0.0.7 startup, auth, model-default, and update-notice improvements
|
|
25
48
|
|
|
26
|
-
[0.0.
|
|
49
|
+
[0.0.9]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.9
|
|
50
|
+
[0.0.8]: https://github.com/shuyhere/bb-agent/releases/tag/v0.0.8
|
package/README.md
CHANGED
|
@@ -1,9 +1,44 @@
|
|
|
1
1
|
# BB-Agent
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
BB means Bridge Baby in Death Stranding. I named this project that way because while building it, I was also enjoying Death Stranding and loved the idea of connecting everyone together.
|
|
6
|
+
|
|
3
7
|
A Rust-native AI coding agent for the terminal — featuring a fullscreen TUI, multi-provider support, tool use, session persistence, branching, extensions, and skills.
|
|
4
8
|
|
|
5
9
|
## Install
|
|
6
10
|
|
|
11
|
+
### Terminal & Font Compatibility
|
|
12
|
+
|
|
13
|
+
BB-Agent uses Unicode glyphs and ANSI color in the fullscreen TUI. For the best visual experience, use a modern terminal and a Unicode-capable monospace font such as:
|
|
14
|
+
|
|
15
|
+
- JetBrains Mono
|
|
16
|
+
- SF Mono / Menlo
|
|
17
|
+
- Fira Code
|
|
18
|
+
- Cascadia Mono
|
|
19
|
+
- Nerd Font variants of the above
|
|
20
|
+
|
|
21
|
+
If some symbols look broken, missing, or too narrow in your terminal:
|
|
22
|
+
|
|
23
|
+
1. switch to a Unicode-capable monospace font
|
|
24
|
+
2. make sure your terminal uses UTF-8
|
|
25
|
+
3. enable BB-Agent compatibility mode
|
|
26
|
+
|
|
27
|
+
Compatibility mode uses safer ASCII-style fallback glyphs for spinner/status/tool markers:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
BB_TUI_COMPAT=1 bb
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Or set this in `~/.bb-agent/settings.json`:
|
|
34
|
+
|
|
35
|
+
```json
|
|
36
|
+
{
|
|
37
|
+
"compatibility_mode": true
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
|
|
7
42
|
### From source (all platforms — macOS, Linux, Windows)
|
|
8
43
|
|
|
9
44
|
Requires [Rust](https://rustup.rs). Install Rust first if you don't have it:
|