brainjar 0.0.1 → 0.1.0
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 +11 -6
- package/dist/brainjar.js +13387 -0
- package/package.json +19 -7
- package/LICENSE +0 -2
- package/bin/brainjar.js +0 -3
package/README.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
#
|
|
1
|
+
# brainjar
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The BrainJar CLI. Connects a repository to a BrainJar server: initial scan, incremental capture
|
|
4
|
+
via Claude Code and git hooks, and the MCP setup for your agent.
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
and failures automatically, links every fact to its evidence, and gives that memory back to you
|
|
7
|
-
and your AI agents (MCP).
|
|
6
|
+
Get your connect command from your BrainJar server's setup wizard, then:
|
|
8
7
|
|
|
9
|
-
|
|
8
|
+
```bash
|
|
9
|
+
npx brainjar init --brain <id> --server <url> --token <token>
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
Commands: `init`, `sync`, `constraints`, `failure --hook`, `doctor`, `unhook`, `doku`, `help`.
|
|
13
|
+
|
|
14
|
+
BrainJar is a memory platform for software teams by [ponytail](https://ponytail.dev).
|