@nilux-ai/code 1.0.10 → 1.0.12
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 +31 -13
- package/dist/cli.js +515 -519
- package/package.json +87 -64
package/README.md
CHANGED
|
@@ -3,28 +3,42 @@
|
|
|
3
3
|
An AI engineer that lives in your terminal. Nilux reads, writes, runs, and remembers — across
|
|
4
4
|
sessions — so you can stay on the command line and let it do the work.
|
|
5
5
|
|
|
6
|
-
## Install
|
|
7
|
-
|
|
8
6
|
```bash
|
|
9
7
|
npm install -g @nilux-ai/code
|
|
8
|
+
nilux
|
|
10
9
|
```
|
|
11
10
|
|
|
12
11
|
Requires Node.js 18 or newer. Works on macOS, Linux, and Windows.
|
|
13
12
|
|
|
14
|
-
##
|
|
13
|
+
## What it does
|
|
15
14
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
Describe a task in plain language. Nilux finds the relevant files itself, proposes a change, shows
|
|
16
|
+
you the diff, and applies it once you approve. It runs commands, reads their output, and keeps
|
|
17
|
+
going — the same loop you would run by hand, without the typing.
|
|
18
|
+
|
|
19
|
+
- **Works across the whole project.** It searches and reads before it edits, so a rename reaches
|
|
20
|
+
every call site rather than the one file you had open.
|
|
21
|
+
- **Asks before it acts.** Every file edit and every command is shown first. Four approval modes,
|
|
22
|
+
from confirm-everything to hands-free — `Shift+Tab` cycles between them mid-session.
|
|
23
|
+
- **Remembers your project.** Conventions, decisions and the shape of the codebase survive between
|
|
24
|
+
sessions, so you stop re-explaining the same context every morning.
|
|
25
|
+
- **Delegates.** For wide work it spawns subagents that explore in their own context and report
|
|
26
|
+
back, instead of filling yours with search results.
|
|
27
|
+
- **Connects to your tools.** Any Model Context Protocol server — databases, APIs, cloud consoles —
|
|
28
|
+
becomes available inside the session from one config entry.
|
|
29
|
+
|
|
30
|
+
## What it costs
|
|
19
31
|
|
|
20
|
-
|
|
21
|
-
Nilux plans it, edits files, runs commands (asking before anything irreversible), and picks up
|
|
22
|
-
where you left off next time.
|
|
32
|
+
Pay only for the tokens you use. No seat, no subscription, no minimum.
|
|
23
33
|
|
|
24
|
-
|
|
34
|
+
| Model | Input | Output | Context |
|
|
35
|
+
|-------|-------|--------|---------|
|
|
36
|
+
| Nilux Standard | $0.28 / 1M tokens | $0.56 / 1M tokens | 1M |
|
|
37
|
+
| Nilux Pro | $0.87 / 1M tokens | $1.74 / 1M tokens | 1M |
|
|
25
38
|
|
|
26
|
-
|
|
27
|
-
|
|
39
|
+
Repeated context is billed at a small fraction of the input rate, which is most of a long coding
|
|
40
|
+
session. Check your balance any time with `/balance`, or see the live rates and a cost calculator
|
|
41
|
+
at [nilux.dev/pricing](https://nilux.dev/pricing).
|
|
28
42
|
|
|
29
43
|
## Handy commands
|
|
30
44
|
|
|
@@ -33,7 +47,10 @@ at a clear per-token rate. Check yours any time with `/balance`.
|
|
|
33
47
|
| `/resume` | Continue an earlier conversation |
|
|
34
48
|
| `/rewind` | Roll back to an earlier point in the session |
|
|
35
49
|
| `/compact` | Summarise a long conversation to keep it fast and cheap |
|
|
36
|
-
| `/
|
|
50
|
+
| `/model` | Switch between Standard and Pro mid-session |
|
|
51
|
+
| `/mcp` | Manage Model Context Protocol servers |
|
|
52
|
+
| `/skills` | List reusable prompts available as slash commands |
|
|
53
|
+
| `/init` | Generate a `nilux.md` with project context for the team |
|
|
37
54
|
| `/balance` | Show your remaining balance |
|
|
38
55
|
| `/help` | List everything |
|
|
39
56
|
|
|
@@ -41,6 +58,7 @@ at a clear per-token rate. Check yours any time with `/balance`.
|
|
|
41
58
|
|
|
42
59
|
- Website: https://nilux.dev
|
|
43
60
|
- Docs: https://nilux.dev/docs
|
|
61
|
+
- Quickstart: https://nilux.dev/docs/quickstart
|
|
44
62
|
- Changelog: https://nilux.dev/changelog
|
|
45
63
|
|
|
46
64
|
## License
|