@nolgia/cli 0.2.3 → 0.2.5

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 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/nolgiacorp/nolgia-cli/releases)
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/nolgiacorp/nolgia-cli#installation)
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
 
@@ -47,7 +47,9 @@ Every command takes `--json` for machine-readable output, which is how agent pip
47
47
  | `nolgia auth login` / `status` / `logout` | Device-code sign-in, token storage in the system keyring |
48
48
  | `nolgia gen image` / `video` / `audio` | Submit generations, wait, and download results |
49
49
  | `nolgia status` / `wait` | Inspect or block on a job |
50
- | `nolgia assets list` / `get` / `upload` / `delete` | Manage generated and uploaded assets |
50
+ | `nolgia assets list` / `get` / `upload` / `delete` / `tag` | Manage generated and uploaded assets, including tags |
51
+ | `nolgia characters list` / `get` / `create` / `update` / `delete` | Reusable characters with reference images |
52
+ | `nolgia projects list` / `get` / `create` / `update` / `delete` / `add-assets` / `remove-asset` | Group assets into projects |
51
53
  | `nolgia models list` / `get` | Live model catalog, capabilities, credit pricing |
52
54
  | `nolgia account` / `billing` | Usage, credits, and billing portal links |
53
55
  | `nolgia pat create` / `list` / `revoke` | Personal access tokens for API use |
@@ -63,7 +65,7 @@ Every command takes `--json` for machine-readable output, which is how agent pip
63
65
  | `NOLGIA_NO_UPDATE_CHECK` | Disable the once-daily update hint |
64
66
  | `NOLGIA_SURFACE` | Self-identify agent traffic |
65
67
 
66
- Full documentation, the OpenAPI-generated client, and the development guide live in the [repository](https://github.com/nolgiacorp/nolgia-cli). The platform itself is documented at [nolgia.ai](https://nolgia.ai)
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)
67
69
 
68
70
  ## License
69
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nolgia/cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
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/nolgiacorp/nolgia-cli.git"
18
+ "url": "git+https://github.com/nolgiainc/nolgia-cli.git"
19
19
  },
20
- "homepage": "https://github.com/nolgiacorp/nolgia-cli#readme",
20
+ "homepage": "https://github.com/nolgiainc/nolgia-cli#readme",
21
21
  "license": "MIT",
22
22
  "os": [
23
23
  "darwin",
@@ -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 = "nolgiacorp/nolgia-cli";
9
+ const REPO = "nolgiainc/nolgia-cli";
10
10
  const VERSION = require("../package.json").version;
11
11
 
12
12
  function assetName() {