opencode-mempalace-persistence 1.1.0 → 1.1.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 +2 -2
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# opencode-mempalace-persistence
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **Community plugin** — not officially maintained by the MemPalace team. Fully open source, ~120 lines of TypeScript.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
An OpenCode plugin that automatically saves every conversation to MemPalace and uses stored memory to provide better, context-aware responses. Real-time, zero cron, zero external scripts.
|
|
6
6
|
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-mempalace-persistence",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "OpenCode plugin — auto-sync conversations to MemPalace memory in real-time. No forced wings, KG extraction via MCP tools.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
8
10
|
"scripts": {
|
|
9
11
|
"build": "tsc",
|
|
10
12
|
"prepublishOnly": "npm run build"
|
|
11
13
|
},
|
|
12
|
-
"keywords": [
|
|
14
|
+
"keywords": [
|
|
15
|
+
"opencode",
|
|
16
|
+
"mempalace",
|
|
17
|
+
"memory",
|
|
18
|
+
"opencode-plugin",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
13
21
|
"author": "geco",
|
|
14
22
|
"license": "MIT",
|
|
15
23
|
"type": "module",
|