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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -3
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # opencode-mempalace-persistence
2
2
 
3
- 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.
3
+ > **Community plugin** not officially maintained by the MemPalace team. Fully open source, ~120 lines of TypeScript.
4
4
 
5
- > **It just works** install, use OpenCode, the plugin handles the rest.
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
  [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
8
8
 
package/package.json CHANGED
@@ -1,15 +1,23 @@
1
1
  {
2
2
  "name": "opencode-mempalace-persistence",
3
- "version": "1.1.0",
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": ["dist"],
7
+ "files": [
8
+ "dist"
9
+ ],
8
10
  "scripts": {
9
11
  "build": "tsc",
10
12
  "prepublishOnly": "npm run build"
11
13
  },
12
- "keywords": ["opencode", "mempalace", "memory", "opencode-plugin", "typescript"],
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",