tool · inferred from evidence
bridge-cli
A command-line tool, also referred to as cbcli in the context.
- Latest nixpkgs breaks cbcli build: undefined method 'wait_readable' for TCPSocket
The nix build broke because the flake pulled Crystal 1.15, which removed something the old vendored ssh2 code relied on, hence the undefined method wait_readable for TCPSocket. The maintainer said locking the flake to Crystal below 1.14 was
- cb login fails in a Devcontainer: error: Error executing process: 'command': No such file or directory
This was a bug in the brew-installed cb binary when run inside a container, fixed in v3.4.4, so upgrading is the cleanest fix. If youre stuck on an older version, two workarounds from the maintainer: create an API key in the Crunchy Bridge
- cb psql terminal goes fuzzy and breaks the REPL on PROMPT1
The fuzzy REPL was a rendering bug in cb psql 3.4.1, fixed in 3.5.1, so upgrading is the fix. If you need to stay on the old version, the workaround is to simplify your psql PROMPT1 so it renders on a single predictable line, the reporter u
- cb psql: SIGWINCH and terminal size are not propagated, input wraps wrong
cb psql wasnt propagating SIGWINCH, so after a terminal resize it kept the old size and mangled line wrapping. The maintainer reproduced it and shipped the fix in v3.5.1. Upgrade to 3.5.1 or later and the resize handling works. The reporter