opencode-memtomem 0.1.1 → 0.1.2

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,9 +6,10 @@ and three read-only skills. It does not add event hooks or automatic indexing.
6
6
 
7
7
  ## Current status
8
8
 
9
- `opencode-memtomem` is present in this source repository but is not currently
10
- published to npm. Do not use an `opencode plugin add` command; OpenCode loads
11
- npm plugins from the singular `plugin` array in `opencode.json`.
9
+ The published npm release is `opencode-memtomem@0.1.1`; this source tree is
10
+ version `0.1.2` (bundling core `0.3.12`), which is not on npm yet. Do not use
11
+ an `opencode plugin add` command; OpenCode loads npm plugins from the singular
12
+ `plugin` array in `opencode.json`.
12
13
 
13
14
  For a released memtomem installation, configure the local MCP server now:
14
15
 
@@ -18,7 +19,7 @@ For a released memtomem installation, configure the local MCP server now:
18
19
  "mcp": {
19
20
  "memtomem": {
20
21
  "type": "local",
21
- "command": ["uvx", "--isolated", "--from", "memtomem[all]==0.3.11", "memtomem-server"],
22
+ "command": ["uvx", "--isolated", "--from", "memtomem[all]==0.3.12", "memtomem-server"],
22
23
  "enabled": true,
23
24
  "timeout": 60000,
24
25
  "environment": {"MEMTOMEM_TOOL_MODE": "core"}
@@ -27,15 +28,15 @@ For a released memtomem installation, configure the local MCP server now:
27
28
  }
28
29
  ```
29
30
 
30
- After the npm package is published, the plugin form will be:
31
+ After `0.1.2` is published, the plugin form will be:
31
32
 
32
33
  ```json
33
- {"plugin": ["opencode-memtomem@0.1.1"]}
34
+ {"plugin": ["opencode-memtomem@0.1.2"]}
34
35
  ```
35
36
 
36
37
  Restart OpenCode, then run `/memtomem-status` or `/memtomem-search topic`.
37
38
  `uvx` must be available on `PATH`. The manual configuration above starts the
38
- exact-pinned `memtomem[all]==0.3.11` runtime on demand.
39
+ exact-pinned `memtomem[all]==0.3.12` runtime on demand.
39
40
 
40
41
  The plugin supports macOS, Linux, and Windows through WSL. Native Windows has
41
42
  not been verified.
@@ -1,4 +1,4 @@
1
- export declare const CORE_VERSION = "0.3.11";
1
+ export declare const CORE_VERSION = "0.3.12";
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.3.11";
2
+ export const CORE_VERSION = "0.3.12";
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.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Safe memtomem MCP, commands, and read skills for OpenCode",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -35,7 +35,7 @@
35
35
  "pack:check": "npm pack --dry-run"
36
36
  },
37
37
  "devDependencies": {
38
- "@opencode-ai/plugin": "1.17.18",
38
+ "@opencode-ai/plugin": "1.18.3",
39
39
  "@types/node": "26.1.1",
40
40
  "typescript": "5.9.3"
41
41
  },