@sazabi/cli 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +28 -0
  3. package/dist/index.js +495 -0
  4. package/package.json +28 -0
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ Copyright (c) 2026 Sazabi AI, Inc. All rights reserved.
2
+
3
+ This software is proprietary and confidential. No part of this software may be
4
+ reproduced, distributed, or transmitted in any form or by any means, including
5
+ photocopying, recording, or other electronic or mechanical methods, without the
6
+ prior written permission of the copyright holder.
7
+
8
+ This repository is public for the purpose of distribution via npm and GitHub.
9
+ The source code, compiled artifacts, and all associated materials remain the
10
+ exclusive property of Sazabi AI, Inc.
11
+
12
+ UNAUTHORIZED COPYING, MODIFICATION, DISTRIBUTION, OR USE OF THIS SOFTWARE,
13
+ VIA ANY MEDIUM, IS STRICTLY PROHIBITED.
14
+
15
+ For licensing inquiries, contact: legal@sazabi.ai
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Sazabi CLI
2
+
3
+ The command-line interface for [Sazabi](https://sazabi.ai).
4
+
5
+ ## Installation
6
+
7
+ ```sh
8
+ npm install -g @sazabi/cli
9
+ ```
10
+
11
+ Then run:
12
+
13
+ ```sh
14
+ sazabi
15
+ ```
16
+
17
+ ## About this repository
18
+
19
+ This is the **public release repository** for the Sazabi CLI. It serves as:
20
+
21
+ - The public-facing landing page for the CLI on GitHub
22
+ - The npm publish source for the `@sazabi/cli` package
23
+
24
+ Source development happens in a private internal monorepo. This repository receives pre-built artifacts via an automated sync workflow. If you're looking for source code, it is not available here — this repo contains only the published distribution.
25
+
26
+ ## License
27
+
28
+ This software is proprietary. All rights reserved. See [LICENSE](LICENSE) for details.