@onebrain-ai/cli 2.1.2 → 2.1.5
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 +6 -3
- package/dist/onebrain +553 -1138
- package/dist/postinstall.js +138 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ Unlike chat-based AI tools, OneBrain lives in plain Markdown files you own forev
|
|
|
58
58
|
| 🪄 | **Smart Memory Review** | `/memory-review` lets you interactively prune, update, or archive memory entries one by one |
|
|
59
59
|
| 🔒 | **Concurrent-session Safe** | Each session generates an isolated 6-char token — multiple parallel sessions never mix checkpoints |
|
|
60
60
|
| 📱 | **Mobile Access** | Send instructions and receive briefings from anywhere via Telegram |
|
|
61
|
-
| ⚙️ | **CLI Binary** | `onebrain` binary handles checkpoints, session init, doctor, vault-sync, and updates — no Python or Node.js required |
|
|
61
|
+
| ⚙️ | **CLI Binary** | `onebrain` binary handles checkpoints, session init, doctor, vault-sync, and updates — no Bun, Python, or Node.js required |
|
|
62
62
|
|
|
63
63
|
---
|
|
64
64
|
|
|
@@ -164,7 +164,7 @@ OneBrain has three automatic behaviors that run without you doing anything:
|
|
|
164
164
|
|
|
165
165
|
**The practical result:** Just say "bye" and everything is saved. If the session ends unexpectedly, you lose at most 15 messages — the last checkpoint recovers the rest.
|
|
166
166
|
|
|
167
|
-
> Auto Checkpoint requires Claude Code (uses the Claude Code stop hook) and the `onebrain` CLI binary. Install with `
|
|
167
|
+
> Auto Checkpoint requires Claude Code (uses the Claude Code stop hook) and the `onebrain` CLI binary. Install with `npm install -g @onebrain-ai/cli`. Auto Session Summary works with any agent that follows INSTRUCTIONS.md.
|
|
168
168
|
|
|
169
169
|
---
|
|
170
170
|
|
|
@@ -174,8 +174,11 @@ OneBrain has three automatic behaviors that run without you doing anything:
|
|
|
174
174
|
|
|
175
175
|
```bash
|
|
176
176
|
npm install -g @onebrain-ai/cli
|
|
177
|
+
# or: bun install -g @onebrain-ai/cli
|
|
177
178
|
```
|
|
178
179
|
|
|
180
|
+
The installer automatically downloads the correct compiled binary for your platform — no Bun installation required.
|
|
181
|
+
|
|
179
182
|
### 2. Create and initialize your vault
|
|
180
183
|
|
|
181
184
|
```bash
|
|
@@ -364,7 +367,7 @@ Tasks live inline in your notes — the Tasks plugin surfaces them across the va
|
|
|
364
367
|
|
|
365
368
|
Verify with `git --version` before running the installer.
|
|
366
369
|
|
|
367
|
-
**
|
|
370
|
+
**Optional:** [bun](https://bun.sh) — not required for most users. `npm install -g @onebrain-ai/cli` automatically downloads a compiled binary for your platform. Bun is only needed if you're on an unsupported platform or want to install from source.
|
|
368
371
|
|
|
369
372
|
**Windows:** Git for Windows (above) includes Git Bash, which provides the `bash` environment required to run all hooks.
|
|
370
373
|
|