backbrain 1.1.2 → 1.1.3
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 +13 -13
- package/dist/index.js +4 -3
- package/dist/mcp-server.js +4 -3
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -14,9 +14,9 @@ The commit history tells the story better than this paragraph.
|
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
|
|
17
|
-
[](https://www.npmjs.com/package/backbrain)
|
|
18
|
+
[](https://www.npmjs.com/package/backbrain)
|
|
19
|
+
[](LICENSE)
|
|
20
20
|
|
|
21
21
|
**Now at v1.1.0** — with Search 2.0 multi-signal ranking, interactive TUI, and MCP integration for AI assistants.
|
|
22
22
|
|
|
@@ -45,13 +45,13 @@ Install Backbrain globally using your preferred package manager:
|
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
47
|
# Using npm
|
|
48
|
-
npm install -g
|
|
48
|
+
npm install -g backbrain
|
|
49
49
|
|
|
50
50
|
# Using pnpm
|
|
51
|
-
pnpm install -g
|
|
51
|
+
pnpm install -g backbrain
|
|
52
52
|
|
|
53
53
|
# Using bun
|
|
54
|
-
bun install -g
|
|
54
|
+
bun install -g backbrain
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
## Quick Start
|
|
@@ -100,7 +100,7 @@ bb notes # All note-tagged entries
|
|
|
100
100
|
|
|
101
101
|
Backbrain includes a terminal user interface for interactive searching:
|
|
102
102
|
|
|
103
|
-

|
|
104
104
|
|
|
105
105
|
### Features
|
|
106
106
|
- **Real-time Search**: Results update as you type
|
|
@@ -124,7 +124,7 @@ bb u
|
|
|
124
124
|
|
|
125
125
|
Backbrain now integrates with AI assistants via MCP (Model Context Protocol):
|
|
126
126
|
|
|
127
|
-

|
|
128
128
|
|
|
129
129
|
### What This Gives You:
|
|
130
130
|
- **Shared Memory**: AI agents can access your notes as context
|
|
@@ -155,13 +155,13 @@ Add it to:
|
|
|
155
155
|
## Screenshots
|
|
156
156
|
|
|
157
157
|
### CLI Search
|
|
158
|
-

|
|
159
159
|
|
|
160
160
|
### Interactive TUI
|
|
161
|
-

|
|
162
162
|
|
|
163
163
|
### TUI Demo
|
|
164
|
-

|
|
165
165
|
|
|
166
166
|
## Commands
|
|
167
167
|
|
|
@@ -409,8 +409,8 @@ Want to contribute or run locally?
|
|
|
409
409
|
|
|
410
410
|
```bash
|
|
411
411
|
# Clone and setup
|
|
412
|
-
git clone https://github.com/kaustubh285/
|
|
413
|
-
cd
|
|
412
|
+
git clone https://github.com/kaustubh285/backbrain
|
|
413
|
+
cd backbrain
|
|
414
414
|
bun install
|
|
415
415
|
|
|
416
416
|
# Run in development mode
|
package/dist/index.js
CHANGED
|
@@ -2128,7 +2128,7 @@ var init_package = __esm(() => {
|
|
|
2128
2128
|
package_default = {
|
|
2129
2129
|
name: "backbrain",
|
|
2130
2130
|
type: "module",
|
|
2131
|
-
version: "1.1.
|
|
2131
|
+
version: "1.1.3",
|
|
2132
2132
|
description: "Backbrain (formerly flux-cap): keep a running memory of your work, searchable from the CLI and readable by your AI",
|
|
2133
2133
|
bin: {
|
|
2134
2134
|
bb: "./dist/index.js",
|
|
@@ -2147,7 +2147,7 @@ var init_package = __esm(() => {
|
|
|
2147
2147
|
prepublishOnly: "bun run build",
|
|
2148
2148
|
publish: "npm publish --access=public",
|
|
2149
2149
|
"local-install": "bun run build && npm link",
|
|
2150
|
-
"local-uninstall": "npm unlink -g
|
|
2150
|
+
"local-uninstall": "npm unlink -g bb",
|
|
2151
2151
|
"local-reinstall": "bun run local-uninstall && bun run local-install",
|
|
2152
2152
|
changeset: "changeset",
|
|
2153
2153
|
"changeset:add": "changeset add",
|
|
@@ -2212,7 +2212,8 @@ var init_package = __esm(() => {
|
|
|
2212
2212
|
type: "git",
|
|
2213
2213
|
url: "https://github.com/kaustubh285/backbrain"
|
|
2214
2214
|
},
|
|
2215
|
-
license: "MIT"
|
|
2215
|
+
license: "MIT",
|
|
2216
|
+
homepage: "backbrain.deshpande.page"
|
|
2216
2217
|
};
|
|
2217
2218
|
});
|
|
2218
2219
|
|
package/dist/mcp-server.js
CHANGED
|
@@ -28393,7 +28393,7 @@ import { execSync } from "child_process";
|
|
|
28393
28393
|
var package_default = {
|
|
28394
28394
|
name: "backbrain",
|
|
28395
28395
|
type: "module",
|
|
28396
|
-
version: "1.1.
|
|
28396
|
+
version: "1.1.3",
|
|
28397
28397
|
description: "Backbrain (formerly flux-cap): keep a running memory of your work, searchable from the CLI and readable by your AI",
|
|
28398
28398
|
bin: {
|
|
28399
28399
|
bb: "./dist/index.js",
|
|
@@ -28412,7 +28412,7 @@ var package_default = {
|
|
|
28412
28412
|
prepublishOnly: "bun run build",
|
|
28413
28413
|
publish: "npm publish --access=public",
|
|
28414
28414
|
"local-install": "bun run build && npm link",
|
|
28415
|
-
"local-uninstall": "npm unlink -g
|
|
28415
|
+
"local-uninstall": "npm unlink -g bb",
|
|
28416
28416
|
"local-reinstall": "bun run local-uninstall && bun run local-install",
|
|
28417
28417
|
changeset: "changeset",
|
|
28418
28418
|
"changeset:add": "changeset add",
|
|
@@ -28477,7 +28477,8 @@ var package_default = {
|
|
|
28477
28477
|
type: "git",
|
|
28478
28478
|
url: "https://github.com/kaustubh285/backbrain"
|
|
28479
28479
|
},
|
|
28480
|
-
license: "MIT"
|
|
28480
|
+
license: "MIT",
|
|
28481
|
+
homepage: "backbrain.deshpande.page"
|
|
28481
28482
|
};
|
|
28482
28483
|
|
|
28483
28484
|
// src/mcp-server.ts
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backbrain",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.3",
|
|
5
5
|
"description": "Backbrain (formerly flux-cap): keep a running memory of your work, searchable from the CLI and readable by your AI",
|
|
6
6
|
"bin": {
|
|
7
7
|
"bb": "./dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"prepublishOnly": "bun run build",
|
|
21
21
|
"publish": "npm publish --access=public",
|
|
22
22
|
"local-install": "bun run build && npm link",
|
|
23
|
-
"local-uninstall": "npm unlink -g
|
|
23
|
+
"local-uninstall": "npm unlink -g bb",
|
|
24
24
|
"local-reinstall": "bun run local-uninstall && bun run local-install",
|
|
25
25
|
"changeset": "changeset",
|
|
26
26
|
"changeset:add": "changeset add",
|
|
@@ -85,5 +85,6 @@
|
|
|
85
85
|
"type": "git",
|
|
86
86
|
"url": "https://github.com/kaustubh285/backbrain"
|
|
87
87
|
},
|
|
88
|
-
"license": "MIT"
|
|
88
|
+
"license": "MIT",
|
|
89
|
+
"homepage": "backbrain.deshpande.page"
|
|
89
90
|
}
|