@mrc2204/agent-smart-memo 5.1.10 → 5.1.11
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 +30 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -91,12 +91,17 @@ asm install opencode
|
|
|
91
91
|
|
|
92
92
|
## 3) Install ASM
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
There are currently **two supported install flows**.
|
|
95
|
+
|
|
96
|
+
### Flow A — CLI-first (recommended for ASM CLI usage)
|
|
97
|
+
Install the CLI globally first:
|
|
98
|
+
|
|
95
99
|
```bash
|
|
96
100
|
npm install -g @mrc2204/agent-smart-memo
|
|
97
101
|
```
|
|
98
102
|
|
|
99
|
-
|
|
103
|
+
Then initialize shared config:
|
|
104
|
+
|
|
100
105
|
```bash
|
|
101
106
|
asm init-setup --yes
|
|
102
107
|
```
|
|
@@ -106,19 +111,32 @@ This creates or updates:
|
|
|
106
111
|
~/.config/asm/config.json
|
|
107
112
|
```
|
|
108
113
|
|
|
109
|
-
|
|
114
|
+
Then install a runtime target:
|
|
115
|
+
|
|
110
116
|
```bash
|
|
111
117
|
asm install openclaw
|
|
112
118
|
asm install paperclip
|
|
113
119
|
asm install opencode
|
|
114
120
|
```
|
|
115
121
|
|
|
116
|
-
|
|
122
|
+
### Flow B — Plugin-first (direct OpenClaw plugin install)
|
|
123
|
+
If you only want the OpenClaw plugin directly, install it through OpenClaw:
|
|
117
124
|
|
|
118
|
-
```
|
|
119
|
-
|
|
125
|
+
```bash
|
|
126
|
+
openclaw plugins install @mrc2204/agent-smart-memo
|
|
120
127
|
```
|
|
121
128
|
|
|
129
|
+
Then continue with OpenClaw-side config/bootstrap as needed.
|
|
130
|
+
|
|
131
|
+
### Important note
|
|
132
|
+
The command below is **not the recommended primary flow right now**:
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
npx @mrc2204/agent-smart-memo install
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
Use the two supported flows above until CLI bootstrap is fully separated/standardized.
|
|
139
|
+
|
|
122
140
|
---
|
|
123
141
|
|
|
124
142
|
## 4) Shared config source-of-truth
|
|
@@ -177,13 +195,18 @@ This keeps `openclaw.json` from becoming a second core source-of-truth.
|
|
|
177
195
|
|
|
178
196
|
## 5) OpenClaw quick start
|
|
179
197
|
|
|
180
|
-
### Install from npm
|
|
198
|
+
### Install from npm (CLI-first)
|
|
181
199
|
```bash
|
|
182
200
|
npm install -g @mrc2204/agent-smart-memo
|
|
183
201
|
asm init-setup --yes
|
|
184
202
|
asm install openclaw --yes
|
|
185
203
|
```
|
|
186
204
|
|
|
205
|
+
### Install plugin directly into OpenClaw (plugin-first)
|
|
206
|
+
```bash
|
|
207
|
+
openclaw plugins install @mrc2204/agent-smart-memo
|
|
208
|
+
```
|
|
209
|
+
|
|
187
210
|
### Install locally from source
|
|
188
211
|
```bash
|
|
189
212
|
npm install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrc2204/agent-smart-memo",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.11",
|
|
4
4
|
"description": "Smart Memory Plugin for OpenClaw \u2014 structured slot memory with auto-capture, auto-recall, essence distillation, and Qdrant vector search",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|