@abloatai/cli 0.36.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 (3) hide show
  1. package/README.md +14 -0
  2. package/dist/cli.cjs +288926 -0
  3. package/package.json +55 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # @ablo/cli
2
+
3
+ The `ablo` command — `init`, `push`, `dev`, `connect`, `status`, `logs`, `docs`, and the
4
+ rest of the terminal surface. Bundled to a single `dist/cli.cjs` by tsup, published
5
+ separately from the SDK so installing `@abloatai/ablo` never downloads the CLI's tooling.
6
+
7
+ ```sh
8
+ npm run build # bundle to dist/cli.cjs
9
+ npm run typecheck # one tsc program over everything shipped
10
+ npm test # unit tests
11
+ ```
12
+
13
+ `npx ablo` keeps working from the SDK: `@abloatai/ablo` ships a thin bin shim that
14
+ resolves this package and delegates to it.