mcp-memory-bucket 0.7.4 → 0.8.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 +20 -0
- package/dist/client/assets/{index-Cr5jNKWL.js → index-BfU_uQyK.js} +397 -262
- package/dist/client/index.html +7 -1
- package/dist/src/attachments/repository.js +22 -22
- package/dist/src/attachments/tools.js +12 -12
- package/dist/src/config.js +70 -3
- package/dist/src/memory/repository.js +142 -39
- package/dist/src/memory/tools.js +32 -13
- package/dist/src/remote/credentials.js +31 -0
- package/dist/src/remote/folderfoo-client.js +149 -0
- package/dist/src/remote/remote-sync.js +176 -0
- package/dist/src/server.js +18 -3
- package/dist/src/shared/body-edits.js +87 -0
- package/dist/src/shared/relocate-tool.js +2 -2
- package/dist/src/shared/relocate.js +9 -5
- package/dist/src/skills/repository.js +141 -47
- package/dist/src/skills/tools.js +34 -15
- package/dist/src/store/sync.js +19 -2
- package/dist/src/web/routes.js +220 -25
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -168,6 +168,26 @@ memory/skill sources. Override that with one of:
|
|
|
168
168
|
Note the `--` before `--memory-dir` — without it, npm swallows the flag
|
|
169
169
|
itself instead of passing it through to the script.
|
|
170
170
|
|
|
171
|
+
- the `FOLDERFOO_MODE` environment variable, or the `--folderfoo-mode
|
|
172
|
+
<off|dev|cloud>` CLI flag — controls whether the web UI integrates with
|
|
173
|
+
folderfoo (remote skill/memory folders backed by a folderfoo server, plus
|
|
174
|
+
the `folderfoo-profile-circle` login widget). Defaults to `off`: no folderfoo
|
|
175
|
+
code loads, no login widget appears, no network calls to any folderfoo
|
|
176
|
+
server are made. Set to `dev` to point at a local folderfoo dev server
|
|
177
|
+
(`http://localhost:3000`, e.g. via `folderfoo/start-dev.sh`), or `cloud`
|
|
178
|
+
for the real hosted deployment (`https://files.cuul.cc`).
|
|
179
|
+
|
|
180
|
+
```sh
|
|
181
|
+
npm start -- --folderfoo-mode dev
|
|
182
|
+
# or: FOLDERFOO_MODE=dev npm start
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
Unlike browser-only folderfoo consumers (mindfoo, bulletino, avotuner),
|
|
186
|
+
which infer dev-vs-prod from `window.location.hostname`, mcp-memory-bucket
|
|
187
|
+
is a CLI tool whose own page is always `localhost` regardless of which
|
|
188
|
+
folderfoo deployment (if any) is wanted — hence the explicit flag instead
|
|
189
|
+
of hostname-sniffing.
|
|
190
|
+
|
|
171
191
|
## Test
|
|
172
192
|
|
|
173
193
|
```sh
|