novita-sandbox-cli 1.0.0

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,30 @@
1
+ # Novita Agent Sandbox CLI
2
+
3
+ This CLI tool allows you to build manager your running Novita Agent Sandbox and sandbox templates. Learn more in [our documentation](https://novita.ai/docs/guides/sandbox-overview).
4
+
5
+ ### 1. Install the CLI
6
+
7
+ **Using NPM**
8
+
9
+ ```bash
10
+ npm install -g novita-sandbox-cli
11
+ ```
12
+
13
+ ### 2. Authenticate
14
+
15
+ ```bash
16
+ novita-sandbox-cli auth login
17
+ ```
18
+
19
+ > [!NOTE]
20
+ > To authenticate without the ability to open the browser, provide
21
+ > `NOVITA_ACCESS_TOKEN` as an environment variable. You can find your token
22
+ > in Account Settings under the Team selector at [novita.ai/console](https://novita.ai/console). Then use the CLI like this:
23
+ > `NOVITA_ACCESS_TOKEN=sk_... novita-sandbox-cli template build`.
24
+
25
+ > [!IMPORTANT]
26
+ > Note the distinction between `NOVITA_ACCESS_TOKEN` and `NOVITA_API_KEY`.
27
+
28
+ ### 3. Check out docs
29
+
30
+ Visit our [CLI documentation](https://novita.ai/docs/guides/sandbox-overview) to learn more.