@devtheops/opencode-plugin-mempalace 1.1.0 → 1.2.0
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 +9 -8
- package/package.json +29 -29
package/README.md
CHANGED
|
@@ -2,17 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@devtheops/opencode-plugin-mempalace)
|
|
4
4
|
[](https://www.npmjs.com/package/@devtheops/opencode-plugin-mempalace)
|
|
5
|
-
[](https://github.com/DEVtheOPS/opencode-mempalace/stargazers)
|
|
6
|
-
[](https://github.com/DEVtheOPS/opencode-mempalace/actions/workflows/release-please.yml)
|
|
7
|
-
[](https://github.com/DEVtheOPS/opencode-mempalace/blob/main/LICENSE)
|
|
5
|
+
[](https://github.com/DEVtheOPS/opencode-plugin-mempalace/stargazers)
|
|
6
|
+
[](https://github.com/DEVtheOPS/opencode-plugin-mempalace/actions/workflows/release-please.yml)
|
|
7
|
+
[](https://github.com/DEVtheOPS/opencode-plugin-mempalace/blob/main/LICENSE)
|
|
8
8
|
|
|
9
9
|
An [OpenCode](https://opencode.ai) server plugin that integrates [MemPalace](https://github.com/MemPalace/mempalace) without vendoring the MemPalace application code.
|
|
10
10
|
|
|
11
|
-
- [
|
|
12
|
-
- [
|
|
13
|
-
- [
|
|
14
|
-
- [
|
|
15
|
-
- [
|
|
11
|
+
- [opencode-plugin-mempalace](#opencode-plugin-mempalace)
|
|
12
|
+
- [Installation](#installation)
|
|
13
|
+
- [Requirements](#requirements)
|
|
14
|
+
- [What It Adds](#what-it-adds)
|
|
15
|
+
- [Runtime Behavior](#runtime-behavior)
|
|
16
|
+
- [Development](#development)
|
|
16
17
|
|
|
17
18
|
The plugin:
|
|
18
19
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@devtheops/opencode-plugin-mempalace",
|
|
3
|
-
"version": "1.1.0",
|
|
4
|
-
"description": "MemPalace plugin for OpenCode. Installs the Python package, registers the MCP server, and injects commands and a bundled skill.",
|
|
5
|
-
"type": "module",
|
|
6
2
|
"author": "DEVtheOPS",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"homepage": "https://github.com/DEVtheOPS/opencode-mempalace#readme",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/DEVtheOPS/opencode-mempalace.git"
|
|
12
|
-
},
|
|
13
3
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/DEVtheOPS/opencode-mempalace/issues"
|
|
4
|
+
"url": "https://github.com/DEVtheOPS/opencode-plugin-mempalace/issues"
|
|
15
5
|
},
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@opencode-ai/plugin": "^1.2.23",
|
|
8
|
+
"@opencode-ai/sdk": "^1.2.23",
|
|
9
|
+
"typescript": "^5.9.3"
|
|
10
|
+
},
|
|
11
|
+
"description": "MemPalace plugin for OpenCode. Installs the Python package, registers the MCP server, and injects commands and a bundled skill.",
|
|
12
|
+
"devDependencies": {
|
|
13
|
+
"@types/bun": "latest",
|
|
14
|
+
"@types/node": "^25.6.0"
|
|
15
|
+
},
|
|
16
|
+
"exports": {
|
|
17
|
+
".": "./src/index.ts",
|
|
18
|
+
"./server": "./src/index.ts"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"src/",
|
|
22
|
+
"skills/"
|
|
23
|
+
],
|
|
24
|
+
"homepage": "https://github.com/DEVtheOPS/opencode-plugin-mempalace#readme",
|
|
16
25
|
"keywords": [
|
|
17
26
|
"opencode",
|
|
18
27
|
"plugin",
|
|
@@ -21,33 +30,24 @@
|
|
|
21
30
|
"mcp",
|
|
22
31
|
"python"
|
|
23
32
|
],
|
|
33
|
+
"license": "MIT",
|
|
24
34
|
"main": "./src/index.ts",
|
|
25
35
|
"module": "./src/index.ts",
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
},
|
|
30
|
-
"files": [
|
|
31
|
-
"src/",
|
|
32
|
-
"skills/"
|
|
36
|
+
"name": "@devtheops/opencode-plugin-mempalace",
|
|
37
|
+
"oc-plugin": [
|
|
38
|
+
"server"
|
|
33
39
|
],
|
|
34
40
|
"publishConfig": {
|
|
35
41
|
"access": "public"
|
|
36
42
|
},
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"typescript": "^5.9.3"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/bun": "latest",
|
|
44
|
-
"@types/node": "^25.6.0"
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/DEVtheOPS/opencode-plugin-mempalace.git"
|
|
45
46
|
},
|
|
46
47
|
"scripts": {
|
|
47
48
|
"test": "bun test",
|
|
48
49
|
"typecheck": "tsc --noEmit"
|
|
49
50
|
},
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
]
|
|
51
|
+
"type": "module",
|
|
52
|
+
"version": "1.2.0"
|
|
53
53
|
}
|