@neuralnomads/codenomad-dev 0.10.3-dev-20260213-e9f281a6 → 0.10.3-dev-20260215-4f6c8523
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 +36 -0
- package/package.json +1 -1
- package/public/assets/index-D0PYs_Ly.js +1 -0
- package/public/assets/index-YrKmkw3o.css +1 -0
- package/public/assets/{loading-DgqIiz-T.js → loading-CuOFA7ML.js} +1 -1
- package/public/assets/main-EgCUCdV9.js +190 -0
- package/public/index.html +3 -3
- package/public/loading.html +3 -3
- package/public/sw.js +1 -1
- package/public/assets/index-Dl-rJJuP.js +0 -1
- package/public/assets/index-Dlo2gDiy.css +0 -1
- package/public/assets/main-crtt5pqm.js +0 -190
package/README.md
CHANGED
|
@@ -31,6 +31,12 @@ You can run CodeNomad directly without installing it:
|
|
|
31
31
|
npx @neuralnomads/codenomad --launch
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
To list all CLI options:
|
|
35
|
+
|
|
36
|
+
```sh
|
|
37
|
+
npx @neuralnomads/codenomad --help
|
|
38
|
+
```
|
|
39
|
+
|
|
34
40
|
On startup, CodeNomad prints two URLs:
|
|
35
41
|
|
|
36
42
|
- `Local Connection URL : ...` (used by desktop shells)
|
|
@@ -44,6 +50,16 @@ npm install -g @neuralnomads/codenomad
|
|
|
44
50
|
codenomad --launch
|
|
45
51
|
```
|
|
46
52
|
|
|
53
|
+
### Install Locally (per-project)
|
|
54
|
+
If you prefer to install CodeNomad into a project and run the local binary:
|
|
55
|
+
|
|
56
|
+
```sh
|
|
57
|
+
npm install @neuralnomads/codenomad
|
|
58
|
+
npx codenomad --launch
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
(`npx codenomad ...` will use `./node_modules/.bin/codenomad` when present.)
|
|
62
|
+
|
|
47
63
|
### Common Flags
|
|
48
64
|
You can configure the server using flags or environment variables:
|
|
49
65
|
|
|
@@ -63,10 +79,30 @@ You can configure the server using flags or environment variables:
|
|
|
63
79
|
| `--config <path>` | `CLI_CONFIG` | Config file location |
|
|
64
80
|
| `--launch` | `CLI_LAUNCH` | Open the UI in a Chromium-based browser |
|
|
65
81
|
| `--log-level <level>` | `CLI_LOG_LEVEL` | Logging level (trace, debug, info, warn, error) |
|
|
82
|
+
| `--log-destination <path>` | `CLI_LOG_DESTINATION` | Log destination file (defaults to stdout) |
|
|
66
83
|
| `--username <username>` | `CODENOMAD_SERVER_USERNAME` | Username for CodeNomad's internal auth (default `codenomad`) |
|
|
67
84
|
| `--password <password>` | `CODENOMAD_SERVER_PASSWORD` | Password for CodeNomad's internal auth |
|
|
68
85
|
| `--generate-token` | `CODENOMAD_GENERATE_TOKEN` | Emit a one-time local bootstrap token for desktop flows |
|
|
69
86
|
| `--dangerously-skip-auth` | `CODENOMAD_SKIP_AUTH` | Disable CodeNomad's internal auth (use only behind a trusted perimeter) |
|
|
87
|
+
| `--ui-dir <path>` | `CLI_UI_DIR` | Directory containing the built UI bundle |
|
|
88
|
+
| `--ui-dev-server <url>` | `CLI_UI_DEV_SERVER` | Proxy UI requests to a running dev server (requires `--https=false --http=true`) |
|
|
89
|
+
| `--ui-no-update` | `CLI_UI_NO_UPDATE` | Disable remote UI updates |
|
|
90
|
+
| `--ui-auto-update <enabled>` | `CLI_UI_AUTO_UPDATE` | Enable remote UI updates (true|false) |
|
|
91
|
+
| `--ui-manifest-url <url>` | `CLI_UI_MANIFEST_URL` | Remote UI manifest URL |
|
|
92
|
+
|
|
93
|
+
### Dev Releases (Advanced)
|
|
94
|
+
If you want the latest bleeding-edge builds (published as GitHub pre-releases), use the dev package:
|
|
95
|
+
|
|
96
|
+
```sh
|
|
97
|
+
npx @neuralnomads/codenomad-dev --launch
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
These environment variables control how CodeNomad checks for dev updates:
|
|
101
|
+
|
|
102
|
+
| Env Variable | Description |
|
|
103
|
+
|-------------|-------------|
|
|
104
|
+
| `CODENOMAD_UPDATE_CHANNEL` | Update channel (use `dev` to enable dev build update checks) |
|
|
105
|
+
| `CODENOMAD_GITHUB_REPO` | GitHub repo used for dev release checks (default `NeuralNomadsAI/CodeNomad`) |
|
|
70
106
|
|
|
71
107
|
### HTTP vs HTTPS
|
|
72
108
|
|