@bonsai-ai/cli 0.1.4 → 0.1.5
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/README.md +17 -7
- package/dist/cli.js +219 -167
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Bonsai CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Switch between the top AI models in your favorite AI coding assistants - **no provider lock-in anymore**. Seamlessly switch between GPT-5, Claude, Gemini 2.5, and more by just @mentioning them (@sonnet, @gpt5, @grok, etc.) in your prompts.
|
|
4
|
+
|
|
5
|
+

|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
@@ -8,17 +10,25 @@ The command line interface for Bonsai.
|
|
|
8
10
|
npm install -g @bonsai-ai/cli
|
|
9
11
|
```
|
|
10
12
|
|
|
11
|
-
##
|
|
13
|
+
## Quick Start
|
|
12
14
|
|
|
13
15
|
```bash
|
|
14
|
-
|
|
16
|
+
# Authenticate with Bonsai
|
|
17
|
+
bonsai login
|
|
18
|
+
|
|
19
|
+
# Start Claude Code with Bonsai
|
|
20
|
+
bonsai start claude
|
|
15
21
|
```
|
|
16
22
|
|
|
17
23
|
## Commands
|
|
18
24
|
|
|
19
|
-
- `bonsai login` - Authenticate with Bonsai
|
|
20
|
-
- `bonsai
|
|
21
|
-
- `bonsai sub
|
|
25
|
+
- `bonsai login` - Authenticate with your Bonsai account
|
|
26
|
+
- `bonsai start claude` - Launch Claude Code with Bonsai
|
|
27
|
+
- `bonsai sub link` - Link your provider subscriptions
|
|
28
|
+
- `bonsai sub unlink` - Unlink your provider subscriptions
|
|
22
29
|
- `bonsai logout` - Sign out of your account
|
|
30
|
+
- `bonsai --help` - Show all available commands
|
|
31
|
+
|
|
32
|
+
## Documentation
|
|
23
33
|
|
|
24
|
-
For
|
|
34
|
+
For detailed setup instructions, visit [https://docs.trybons.ai](https://docs.trybons.ai)
|