@blackbox_ai/blackbox-cli-core 0.8.1 → 0.8.2
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
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-

|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
</div>
|
|
@@ -29,17 +29,12 @@ curl -qL https://www.npmjs.com/install.sh | sh
|
|
|
29
29
|
### Install from source
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
git clone https://github.com/
|
|
33
|
-
cd
|
|
32
|
+
git clone https://github.com/blackboxaicode/cli.git
|
|
33
|
+
cd cli
|
|
34
34
|
npm install
|
|
35
35
|
npm install -g .
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
### Install globally with Homebrew (macOS/Linux)
|
|
39
|
-
|
|
40
|
-
```bash
|
|
41
|
-
brew install blackbox-cli
|
|
42
|
-
```
|
|
43
38
|
|
|
44
39
|
## Quick Start
|
|
45
40
|
|
|
@@ -115,16 +110,19 @@ To completely disable vision model support, add to your `.blackboxcli/settings.j
|
|
|
115
110
|
|
|
116
111
|
### Authorization
|
|
117
112
|
|
|
118
|
-
|
|
113
|
+
API Key Authentication
|
|
119
114
|
|
|
120
|
-
|
|
115
|
+
For programmatic access or advanced use cases, you can authenticate using an API key:
|
|
121
116
|
|
|
122
|
-
|
|
117
|
+
**Getting Your API Key:**
|
|
123
118
|
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
119
|
+
1. Navigate to the [API Keys section](https://app.blackbox.ai/dashboard) of your BLACKBOX dashboard
|
|
120
|
+
2. Your API key will be displayed on this page
|
|
121
|
+
3. Click the copy icon to copy the key to your clipboard
|
|
122
|
+
4. Run `blackbox configure` and you will be able to set the key
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
> **Important:** Treat your API key like a password! Do not share it publicly or commit it to version control.
|
|
128
126
|
|
|
129
127
|
|
|
130
128
|
## Usage Examples
|
|
@@ -241,7 +239,7 @@ blackbox
|
|
|
241
239
|
|
|
242
240
|
## Acknowledgments
|
|
243
241
|
|
|
244
|
-
This project is based on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli). We acknowledge and appreciate the excellent work of the Gemini CLI team.
|
|
242
|
+
This project is based on [Google Gemini CLI](https://github.com/google-gemini/gemini-cli). We acknowledge and appreciate the excellent work of the Gemini CLI team.
|
|
245
243
|
|
|
246
244
|
## License
|
|
247
245
|
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* Copyright 2026 Google LLC
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
export declare const GIT_COMMIT_INFO = "
|
|
7
|
-
export declare const CLI_VERSION = "0.8.
|
|
6
|
+
export declare const GIT_COMMIT_INFO = "e83d3ba2";
|
|
7
|
+
export declare const CLI_VERSION = "0.8.2";
|
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
*/
|
|
6
6
|
// This file is auto-generated by the build script (scripts/generate-git-commit-info.js)
|
|
7
7
|
// Do not edit this file manually.
|
|
8
|
-
export const GIT_COMMIT_INFO = '
|
|
9
|
-
export const CLI_VERSION = '0.8.
|
|
8
|
+
export const GIT_COMMIT_INFO = 'e83d3ba2';
|
|
9
|
+
export const CLI_VERSION = '0.8.2';
|
|
10
10
|
//# sourceMappingURL=git-commit.js.map
|