opencode-memtomem 0.3.0 → 0.3.1

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,16 +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 is `opencode-memtomem@0.3.0`, bundling core
10
- `0.5.0`. It is published from this repository's `opencode-v*` tag shortly
11
- after each PyPI release; until that tag lands, npm's `latest` is the previous
12
- version and the manual MCP path below is the way to run core `0.5.0`.
9
+ The npm release for this core version is `opencode-memtomem@0.3.1`, bundling
10
+ core `0.6.0`.
13
11
 
14
12
  Do not use an `opencode plugin add` command; OpenCode loads npm plugins from
15
13
  the singular `plugin` array in `opencode.json`:
16
14
 
17
15
  ```json
18
- {"plugin": ["opencode-memtomem@0.3.0"]}
16
+ {"plugin": ["opencode-memtomem@0.3.1"]}
19
17
  ```
20
18
 
21
19
  Upgrade if your pin is still `0.1.3` or older: those bundle pre-`0.3.14`
@@ -24,12 +22,12 @@ picks up `mcp` 2.x and fails at import (#1978).
24
22
 
25
23
  Restart OpenCode, then run `/memtomem-status` or `/memtomem-search topic`.
26
24
  `uvx` must be available on `PATH`; the plugin starts the exact-pinned
27
- `memtomem==0.5.0` runtime on demand. For development from this repository,
25
+ `memtomem==0.6.0` runtime on demand. For development from this repository,
28
26
  point the same `plugin` array at `packages/opencode-memtomem/dist/server.js`.
29
27
 
30
28
  If you only need the MCP tools — without the bundled commands and skills —
31
29
  configure the local MCP server directly instead, which pulls the
32
- `memtomem[all]==0.5.0` runtime from PyPI:
30
+ `memtomem[all]==0.6.0` runtime from PyPI:
33
31
 
34
32
  ```json
35
33
  {
@@ -37,7 +35,7 @@ configure the local MCP server directly instead, which pulls the
37
35
  "mcp": {
38
36
  "memtomem": {
39
37
  "type": "local",
40
- "command": ["uvx", "--isolated", "--from", "memtomem[all]==0.5.0", "memtomem-server"],
38
+ "command": ["uvx", "--isolated", "--from", "memtomem[all]==0.6.0", "memtomem-server"],
41
39
  "enabled": true,
42
40
  "timeout": 60000,
43
41
  "environment": {"MEMTOMEM_TOOL_MODE": "core"}
@@ -1,4 +1,4 @@
1
- export declare const CORE_VERSION = "0.5.0";
1
+ export declare const CORE_VERSION = "0.6.0";
2
2
  export declare const TOOL_MODE = "core";
3
3
  export declare const MCP_TIMEOUT_MS = 60000;
4
4
  export declare const OPENCODE_COMMANDS: {
package/dist/generated.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Generated by tools/render_plugin_assets.py. Do not edit.
2
- export const CORE_VERSION = "0.5.0";
2
+ export const CORE_VERSION = "0.6.0";
3
3
  export const TOOL_MODE = "core";
4
4
  export const MCP_TIMEOUT_MS = 60000;
5
5
  export const OPENCODE_COMMANDS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-memtomem",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Safe memtomem MCP, commands, and read skills for OpenCode",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -35,8 +35,8 @@
35
35
  "pack:check": "npm pack --dry-run"
36
36
  },
37
37
  "devDependencies": {
38
- "@opencode-ai/plugin": "1.18.23",
39
- "@types/node": "26.4.0",
38
+ "@opencode-ai/plugin": "1.18.27",
39
+ "@types/node": "26.4.1",
40
40
  "typescript": "5.9.3"
41
41
  },
42
42
  "publishConfig": {