@vibengine/cli 2.6.1

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/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 FOUNDRYLABS, INC.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ <p align="center">
2
+ <img width="100" src="https://raw.githubusercontent.com/e2b-dev/E2B/refs/heads/main/readme-assets/logo-circle.png" alt="e2b logo">
3
+ </p>
4
+
5
+ # E2B CLI
6
+
7
+ This CLI tool allows you to build manager your running E2B sandbox and sandbox templates. Learn more in [our documentation](https://e2b.dev/docs).
8
+
9
+ ### 1. Install the CLI
10
+
11
+ **Using Homebrew (on macOS)**
12
+
13
+ ```bash
14
+ brew install e2b
15
+ ```
16
+
17
+ **Using NPM**
18
+
19
+ ```bash
20
+ npm install -g @e2b/cli
21
+ ```
22
+
23
+ ### 2. Authenticate
24
+
25
+ ```bash
26
+ e2b auth login
27
+ ```
28
+
29
+ > [!NOTE]
30
+ > To authenticate without the ability to open the browser, provide
31
+ > `E2B_ACCESS_TOKEN` as an environment variable. You can find your token
32
+ > in Account Settings under the Team selector at [e2b.dev/dashboard](https://e2b.dev/dashboard). Then use the CLI like this:
33
+ > `E2B_ACCESS_TOKEN=sk_e2b_... e2b template build`.
34
+
35
+ > [!IMPORTANT]
36
+ > Note the distinction between `E2B_ACCESS_TOKEN` and `E2B_API_KEY`.
37
+
38
+ ### 3. Check out docs
39
+
40
+ Visit our [CLI documentation](https://e2b.dev/docs) to learn more.