@nano-step/nano-brain 2026.7.201 → 2026.7.301

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 +5 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -25,17 +25,13 @@ CGO_ENABLED=0 go build -o nano-brain ./cmd/nano-brain
25
25
  ### Start
26
26
 
27
27
  ```bash
28
- # Start PostgreSQL
29
- docker run -d --name nanobrain-pg -p 5432:5432 \
30
- -e POSTGRES_USER=nanobrain -e POSTGRES_PASSWORD=nanobrain -e POSTGRES_DB=nanobrain_dev \
31
- pgvector/pgvector:pg17
28
+ npm install -g @nano-step/nano-brain && nano-brain init
29
+ ```
32
30
 
33
- # Start nano-brain
34
- nano-brain serve -d
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.
32
+
33
+ For a manual, per-step setup (VPS / team, no Docker, or Windows), see [docs/SETUP_AGENT.md](docs/SETUP_AGENT.md).
35
34
 
36
- # Register your project
37
- nano-brain init --root=/path/to/your/project
38
- ```
39
35
  ---
40
36
 
41
37
  ## 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.201",
3
+ "version": "2026.7.301",
4
4
  "description": "Persistent memory and code intelligence for AI coding agents",
5
5
  "bin": {
6
6
  "nano-brain": "npm/run.js"