@nano-step/nano-brain 2026.7.302 → 2026.7.601
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 +16 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,23 +15,34 @@ Agent-oriented memory and code intelligence. AI agents don't read docs — they
|
|
|
15
15
|
### Install
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
#
|
|
18
|
+
# Recommended — one-line installer (no Node.js needed): downloads the prebuilt
|
|
19
|
+
# binary for your platform from GitHub Releases and verifies its SHA-256.
|
|
20
|
+
curl -fsSL https://raw.githubusercontent.com/nano-step/nano-brain/master/install.sh | bash
|
|
21
|
+
|
|
22
|
+
# Or via npm (handy if you're already in a JS/agent toolchain)
|
|
19
23
|
npm install -g @nano-step/nano-brain
|
|
20
24
|
|
|
21
25
|
# Or build from source
|
|
22
26
|
CGO_ENABLED=0 go build -o nano-brain ./cmd/nano-brain
|
|
23
27
|
```
|
|
24
28
|
|
|
25
|
-
|
|
29
|
+
Prefer to read the installer before running it? Download, inspect, then run:
|
|
26
30
|
|
|
27
31
|
```bash
|
|
28
|
-
|
|
32
|
+
curl -fsSL -o install.sh https://raw.githubusercontent.com/nano-step/nano-brain/master/install.sh
|
|
33
|
+
less install.sh && bash install.sh
|
|
29
34
|
```
|
|
30
35
|
|
|
31
|
-
|
|
36
|
+
### Start
|
|
32
37
|
|
|
33
|
-
|
|
38
|
+
```bash
|
|
39
|
+
# One command — the interactive wizard provisions PostgreSQL (via Docker or a
|
|
40
|
+
# remote URL), configures embeddings, starts the server, registers this
|
|
41
|
+
# project, and sets up your MCP client.
|
|
42
|
+
nano-brain init
|
|
43
|
+
```
|
|
34
44
|
|
|
45
|
+
For a manual, per-step setup (VPS / team, no Docker, or Windows), see [docs/SETUP_AGENT.md](docs/SETUP_AGENT.md).
|
|
35
46
|
---
|
|
36
47
|
|
|
37
48
|
## Why Star This Project?
|