@brianluby/agent-brain 1.1.0 → 1.1.2
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/.claude-plugin/marketplace.json +5 -5
- package/.claude-plugin/plugin.json +4 -4
- package/README.md +3 -16
- package/dist/hooks/hooks.json +1 -1
- package/package.json +4 -4
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
3
|
-
"description": "Official
|
|
2
|
+
"name": "agent-brain",
|
|
3
|
+
"description": "Official Agent Brain plugins for Claude Code",
|
|
4
4
|
"owner": {
|
|
5
|
-
"name": "
|
|
6
|
-
"url": "https://
|
|
5
|
+
"name": "Agent Brain",
|
|
6
|
+
"url": "https://github.com/brianluby/agent-brain"
|
|
7
7
|
},
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "mind",
|
|
11
11
|
"description": "Agent-Brain - Give Claude photographic memory in ONE portable file",
|
|
12
|
-
"version": "1.1.
|
|
12
|
+
"version": "1.1.2",
|
|
13
13
|
"source": "./"
|
|
14
14
|
}
|
|
15
15
|
]
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mind",
|
|
3
3
|
"description": "Claude Mind - Give Claude photographic memory in ONE portable file. Share, version, and transfer your Claude's brain.",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "
|
|
7
|
-
"url": "https://
|
|
6
|
+
"name": "Agent Brain",
|
|
7
|
+
"url": "https://github.com/brianluby/agent-brain"
|
|
8
8
|
},
|
|
9
9
|
"repository": "https://github.com/brianluby/Agent-brain",
|
|
10
|
-
"homepage": "https://
|
|
10
|
+
"homepage": "https://github.com/brianluby/agent-brain",
|
|
11
11
|
"license": "MIT"
|
|
12
12
|
}
|
package/README.md
CHANGED
|
@@ -172,7 +172,7 @@ Or just ask naturally: *"mind stats"*, *"search my memory for auth bugs"*, etc.
|
|
|
172
172
|
|
|
173
173
|
## OpenCode Support
|
|
174
174
|
|
|
175
|
-
|
|
175
|
+
Agent Brain supports the same core memory lifecycle through a platform adapter model.
|
|
176
176
|
|
|
177
177
|
- Claude and OpenCode sessions can share project memory continuity.
|
|
178
178
|
- Unknown or incompatible platforms fail open (session continues, memory capture safely skips).
|
|
@@ -183,20 +183,7 @@ Memvid Mind now supports the same core memory lifecycle through a platform adapt
|
|
|
183
183
|
|
|
184
184
|
## CLI (Optional)
|
|
185
185
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
```bash
|
|
189
|
-
npm install -g memvid-cli
|
|
190
|
-
```
|
|
191
|
-
|
|
192
|
-
```bash
|
|
193
|
-
memvid stats .agent-brain/mind.mv2 # view memory stats
|
|
194
|
-
memvid find .agent-brain/mind.mv2 "auth" # search memories
|
|
195
|
-
memvid ask .agent-brain/mind.mv2 "why JWT?" # ask questions
|
|
196
|
-
memvid timeline .agent-brain/mind.mv2 # view timeline
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
[Full CLI reference →](https://docs.memvid.com/cli/cheat-sheet)
|
|
186
|
+
No separate CLI install is required. Use the built-in memory commands in Claude Code (`/mind ...`) or OpenCode (`/mind-* ...`) for direct access.
|
|
200
187
|
|
|
201
188
|
<br />
|
|
202
189
|
|
|
@@ -236,7 +223,7 @@ Sub-millisecond. Native Rust core. Searches 10K+ memories in <1ms.
|
|
|
236
223
|
|
|
237
224
|
<div align="center">
|
|
238
225
|
|
|
239
|
-
Built
|
|
226
|
+
Built as a local-first, single-file memory plugin for Claude Code and OpenCode.
|
|
240
227
|
|
|
241
228
|
<br />
|
|
242
229
|
|
package/dist/hooks/hooks.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brianluby/agent-brain",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Give Claude Code photographic memory in ONE portable file",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/opencode/plugin.js",
|
|
@@ -51,19 +51,19 @@
|
|
|
51
51
|
"memory",
|
|
52
52
|
"ai-memory",
|
|
53
53
|
"context-persistence",
|
|
54
|
-
"
|
|
54
|
+
"agent-brain",
|
|
55
55
|
"portable-memory",
|
|
56
56
|
"persistent-memory",
|
|
57
57
|
"llm-memory",
|
|
58
58
|
"ai-assistant"
|
|
59
59
|
],
|
|
60
|
-
"author": "
|
|
60
|
+
"author": "Brian Luby",
|
|
61
61
|
"license": "MIT",
|
|
62
62
|
"repository": {
|
|
63
63
|
"type": "git",
|
|
64
64
|
"url": "git+https://github.com/brianluby/Agent-brain.git"
|
|
65
65
|
},
|
|
66
|
-
"homepage": "https://
|
|
66
|
+
"homepage": "https://github.com/brianluby/agent-brain",
|
|
67
67
|
"bugs": {
|
|
68
68
|
"url": "https://github.com/brianluby/Agent-brain/issues"
|
|
69
69
|
},
|