-
Notifications
You must be signed in to change notification settings - Fork 60
Description
The btca config model command documented in the README website was accidentally removed in commit 69b4888, breaking the getting started flow. The command implementation seems to still exists, but it does not seem to be registered in the main CLI program.
Steps to reproduce
-
Install btca
bun add -g btca opencode-ai
-
Run the command from the README:
btca config model --provider opencode --model claude-haiku-4-5
-
Expected: The model/provider configuration is updated and a success message is shown.
-
Actual: The command is not recognized. (Note: due to a separate issue, unrecognized commands silently launch the TUI instead of showing an error.)
Root cause
It seems that configCommand was (accidentally?) removed in commit 69b4888 during a refactoring that reorganized commands
69b4888#diff-4565ec586fe8103913bc7f7abc9b548cb8f4d8403669752a5f10874118093bceL32-L38
Workaround
I managed to use btca connect with short flags as an alternative, however, this doesn't provide the full functionality of config, which also includes resource management subcommands, so I currently can't use this tool.
btca connect -p opencode -m claude-haiku-4-5Environment
- btca version: latest from npm
- Tested on: macOS (but likely affects all platforms)