@nano-step/nano-brain 2026.6.3007 → 2026.6.3008

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 +17 -31
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,20 +11,31 @@ Agent-oriented memory and code intelligence. AI agents don't read docs — they
11
11
  [![Docker](https://img.shields.io/badge/Docker-2496ED?logo=docker&logoColor=white)](https://hub.docker.com/r/nano-step/nano-brain)
12
12
  [![Discord](https://img.shields.io/badge/Discord-5865F2?logo=discord&logoColor=white)](https://discord.gg/nano-brain)
13
13
 
14
- ---
15
14
 
16
- ## TL;DR
15
+ ### Install
17
16
 
18
17
  ```bash
19
- # Install
18
+ # Via npm (recommended)
20
19
  npm install -g @nano-step/nano-brain
21
20
 
22
- # Start
21
+ # Or build from source
22
+ CGO_ENABLED=0 go build -o nano-brain ./cmd/nano-brain
23
+ ```
24
+
25
+ ### Start
26
+
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
32
+
33
+ # Start nano-brain
23
34
  nano-brain serve -d
24
35
 
25
- # Your AI agent now has persistent memory, code intelligence, and impact analysis
36
+ # Register your project
37
+ nano-brain init --root=/path/to/your/project
26
38
  ```
27
-
28
39
  ---
29
40
 
30
41
  ## Why Star This Project?
@@ -220,31 +231,6 @@ Auto-ingest from OpenCode and Claude Code sessions. Map-reduce LLM summarization
220
231
  - **PostgreSQL 17** with **pgvector 0.8.2**
221
232
  - **Ollama** (for embeddings) or any OpenAI-compatible provider
222
233
 
223
- ### Install
224
-
225
- ```bash
226
- # Via npm (recommended)
227
- npm install -g @nano-step/nano-brain
228
-
229
- # Or build from source
230
- CGO_ENABLED=0 go build -o nano-brain ./cmd/nano-brain
231
- ```
232
-
233
- ### Start
234
-
235
- ```bash
236
- # Start PostgreSQL
237
- docker run -d --name nanobrain-pg -p 5432:5432 \
238
- -e POSTGRES_USER=nanobrain -e POSTGRES_PASSWORD=nanobrain -e POSTGRES_DB=nanobrain_dev \
239
- pgvector/pgvector:pg17
240
-
241
- # Start nano-brain
242
- nano-brain serve -d
243
-
244
- # Register your project
245
- nano-brain init --root=/path/to/your/project
246
- ```
247
-
248
234
  ### Configure Your AI Agent
249
235
 
250
236
  Add to your MCP client config (Claude Code, OpenCode, Cursor, etc.):
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nano-step/nano-brain",
3
- "version": "2026.6.3007",
3
+ "version": "2026.6.3008",
4
4
  "description": "Persistent memory and code intelligence for AI coding agents",
5
5
  "bin": {
6
6
  "nano-brain": "npm/run.js"