@nano-step/nano-brain 2026.7.301 → 2026.7.303

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.
Files changed (2) hide show
  1. package/README.md +16 -5
  2. 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
- # Via npm (recommended)
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
- ### Start
29
+ Prefer to read the installer before running it? Download, inspect, then run:
26
30
 
27
31
  ```bash
28
- npm install -g @nano-step/nano-brain && nano-brain init
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
- `nano-brain init` is an interactive wizard that provisions PostgreSQL (via Docker or a remote URL), optionally enables embeddings, starts the server, registers your project, and configures your MCP client — then tells you to restart your AI client.
36
+ ### Start
32
37
 
33
- For a manual, per-step setup (VPS / team, no Docker, or Windows), see [docs/SETUP_AGENT.md](docs/SETUP_AGENT.md).
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?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nano-step/nano-brain",
3
- "version": "2026.7.301",
3
+ "version": "2026.7.303",
4
4
  "description": "Persistent memory and code intelligence for AI coding agents",
5
5
  "bin": {
6
6
  "nano-brain": "npm/run.js"