opencode-memtomem 0.3.5 → 0.3.6

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 CHANGED
@@ -6,14 +6,14 @@ and three read-only skills. It does not add event hooks or automatic indexing.
6
6
 
7
7
  ## Install
8
8
 
9
- The npm release for this core version is `opencode-memtomem@0.3.5`, bundling
10
- core `0.6.3`.
9
+ The npm release for this core version is `opencode-memtomem@0.3.6`, bundling
10
+ core `0.6.4`.
11
11
 
12
12
  Do not use an `opencode plugin add` command; OpenCode loads npm plugins from
13
13
  the singular `plugin` array in `opencode.json`:
14
14
 
15
15
  ```json
16
- {"plugin": ["opencode-memtomem@0.3.5"]}
16
+ {"plugin": ["opencode-memtomem@0.3.6"]}
17
17
  ```
18
18
 
19
19
  Upgrade if your pin is still `0.1.3` or older: those bundle pre-`0.3.14`
@@ -28,12 +28,12 @@ launch command — update or remove it to use the plugin's.
28
28
 
29
29
  Restart OpenCode, then run `/memtomem-status` or `/memtomem-search topic`.
30
30
  `uvx` must be available on `PATH`; the plugin starts the exact-pinned
31
- `memtomem[onnx]==0.6.3` runtime on demand. For development from this repository,
31
+ `memtomem[onnx]==0.6.4` runtime on demand. For development from this repository,
32
32
  point the same `plugin` array at `packages/opencode-memtomem/dist/server.js`.
33
33
 
34
34
  If you only need the MCP tools — without the bundled commands and skills —
35
35
  configure the local MCP server directly instead, which pulls the
36
- `memtomem[all]==0.6.3` runtime from PyPI:
36
+ `memtomem[all]==0.6.4` runtime from PyPI:
37
37
 
38
38
  ```json
39
39
  {
@@ -41,7 +41,7 @@ configure the local MCP server directly instead, which pulls the
41
41
  "mcp": {
42
42
  "memtomem": {
43
43
  "type": "local",
44
- "command": ["uvx", "--isolated", "--from", "memtomem[all]==0.6.3", "memtomem-server"],
44
+ "command": ["uvx", "--isolated", "--from", "memtomem[all]==0.6.4", "memtomem-server"],
45
45
  "enabled": true,
46
46
  "timeout": 60000,
47
47
  "environment": {"MEMTOMEM_TOOL_MODE": "core"}
@@ -1,5 +1,5 @@
1
- export declare const CORE_VERSION = "0.6.3";
2
- export declare const MCP_REQUIREMENT = "memtomem[onnx]==0.6.3";
1
+ export declare const CORE_VERSION = "0.6.4";
2
+ export declare const MCP_REQUIREMENT = "memtomem[onnx]==0.6.4";
3
3
  export declare const TOOL_MODE = "core";
4
4
  export declare const MCP_TIMEOUT_MS = 60000;
5
5
  export declare const OPENCODE_COMMANDS: {
package/dist/generated.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // Generated by tools/render_plugin_assets.py. Do not edit.
2
- export const CORE_VERSION = "0.6.3";
3
- export const MCP_REQUIREMENT = "memtomem[onnx]==0.6.3";
2
+ export const CORE_VERSION = "0.6.4";
3
+ export const MCP_REQUIREMENT = "memtomem[onnx]==0.6.4";
4
4
  export const TOOL_MODE = "core";
5
5
  export const MCP_TIMEOUT_MS = 60000;
6
6
  export const OPENCODE_COMMANDS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-memtomem",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Safe memtomem MCP, commands, and read skills for OpenCode",
5
5
  "type": "module",
6
6
  "sideEffects": false,