opencode-fractal-memory 0.6.4 → 0.6.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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -168,6 +168,8 @@ Create `~/.config/opencode/opencode-mem.json` to customize (optional — all def
168
168
  | `criticalContextThreshold` | float | `0.8` | Token usage ratio for critical warning |
169
169
  | `defaultTtlDays` | int | `0` | Default TTL for new nodes (0 = no expiry) |
170
170
  | `enableMiddleTermCapture` | bool | `true` | Save middle-term snapshots before compression |
171
+ | `management.enabled` | bool | `false` | Auto-start the management web UI on plugin init |
172
+ | `management.port` | int | `8787` | Port for the management server |
171
173
  | `autoFileSummarization.enabled` | bool | `false` | Auto-summarize files on read |
172
174
 
173
175
  ## Advanced Features
@@ -360,11 +362,13 @@ A local web UI for browsing, searching, and editing memory — available when th
360
362
 
361
363
  ### Starting
362
364
 
365
+ The server starts automatically when `management.enabled: true` is set in your config (see [Configuration](#configuration)), or manually:
366
+
363
367
  ```bash
364
368
  bun run view
365
369
  ```
366
370
 
367
- Opens at [http://localhost:8787](http://localhost:8787). The server also starts automatically with OpenCode.
371
+ Opens at [http://localhost:8787](http://localhost:8787). The server starts as a background process and auto-stops on plugin shutdown.
368
372
 
369
373
  ### Usage
370
374
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-fractal-memory",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Fractal memory system for OpenCode with semantic search and automatic compression.",
5
5
  "main": "dist/plugin.js",
6
6
  "exports": {