@nolgia/cli 0.2.4 → 0.2.6
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 +3 -3
- package/package.json +3 -3
- package/scripts/postinstall.js +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Command line interface for the [Nolgia](https://nolgia.ai) generative media platform: images, video (including native multi-shot sequences), and audio from your terminal or from AI agents
|
|
4
4
|
|
|
5
|
-
This package downloads the prebuilt `nolgia` binary for your platform during postinstall (macOS universal, Linux x86_64, Windows x86_64) and exposes it as `nolgia` on your PATH. The binary is the same one attached to each [GitHub release](https://github.com/
|
|
5
|
+
This package downloads the prebuilt `nolgia` binary for your platform during postinstall (macOS universal, Linux x86_64, Windows x86_64) and exposes it as `nolgia` on your PATH. The binary is the same one attached to each [GitHub release](https://github.com/nolgiainc/nolgia-cli/releases)
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -10,7 +10,7 @@ This package downloads the prebuilt `nolgia` binary for your platform during pos
|
|
|
10
10
|
npm install -g @nolgia/cli
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
Other install paths (Homebrew, cargo, curl installer, raw binaries) are covered in the [repository README](https://github.com/
|
|
13
|
+
Other install paths (Homebrew, cargo, curl installer, raw binaries) are covered in the [repository README](https://github.com/nolgiainc/nolgia-cli#installation)
|
|
14
14
|
|
|
15
15
|
## Quick start
|
|
16
16
|
|
|
@@ -65,7 +65,7 @@ Every command takes `--json` for machine-readable output, which is how agent pip
|
|
|
65
65
|
| `NOLGIA_NO_UPDATE_CHECK` | Disable the once-daily update hint |
|
|
66
66
|
| `NOLGIA_SURFACE` | Self-identify agent traffic |
|
|
67
67
|
|
|
68
|
-
Full documentation, the OpenAPI-generated client, and the development guide live in the [repository](https://github.com/
|
|
68
|
+
Full documentation, the OpenAPI-generated client, and the development guide live in the [repository](https://github.com/nolgiainc/nolgia-cli). The platform itself is documented at [nolgia.ai](https://nolgia.ai)
|
|
69
69
|
|
|
70
70
|
## License
|
|
71
71
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nolgia/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Nolgia CLI: generate images, video, and audio on the Nolgia platform",
|
|
5
5
|
"bin": {
|
|
6
6
|
"nolgia": "bin/nolgia.js"
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
],
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/
|
|
18
|
+
"url": "git+https://github.com/nolgiainc/nolgia-cli.git"
|
|
19
19
|
},
|
|
20
|
-
"homepage": "https://github.com/
|
|
20
|
+
"homepage": "https://github.com/nolgiainc/nolgia-cli#readme",
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"os": [
|
|
23
23
|
"darwin",
|
package/scripts/postinstall.js
CHANGED
|
@@ -6,7 +6,7 @@ const fs = require("node:fs");
|
|
|
6
6
|
const path = require("node:path");
|
|
7
7
|
const os = require("node:os");
|
|
8
8
|
|
|
9
|
-
const REPO = "
|
|
9
|
+
const REPO = "nolgiainc/nolgia-cli";
|
|
10
10
|
const VERSION = require("../package.json").version;
|
|
11
11
|
|
|
12
12
|
function assetName() {
|