opencode-memtomem 0.3.0 → 0.3.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 +6 -8
- package/dist/generated.d.ts +1 -1
- package/dist/generated.js +1 -1
- package/package.json +3 -3
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.
|
|
10
|
-
`0.
|
|
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.2`, bundling
|
|
10
|
+
core `0.6.1`.
|
|
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.
|
|
16
|
+
{"plugin": ["opencode-memtomem@0.3.2"]}
|
|
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.
|
|
25
|
+
`memtomem==0.6.1` 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.
|
|
30
|
+
`memtomem[all]==0.6.1` 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.
|
|
38
|
+
"command": ["uvx", "--isolated", "--from", "memtomem[all]==0.6.1", "memtomem-server"],
|
|
41
39
|
"enabled": true,
|
|
42
40
|
"timeout": 60000,
|
|
43
41
|
"environment": {"MEMTOMEM_TOOL_MODE": "core"}
|
package/dist/generated.d.ts
CHANGED
package/dist/generated.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-memtomem",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
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.
|
|
39
|
-
"@types/node": "26.4.
|
|
38
|
+
"@opencode-ai/plugin": "1.18.27",
|
|
39
|
+
"@types/node": "26.4.1",
|
|
40
40
|
"typescript": "5.9.3"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|