diff --git a/examples/@memclaw/plugin/SECURITY.md b/examples/@memclaw/plugin/SECURITY.md index 5299c24..a421db0 100644 --- a/examples/@memclaw/plugin/SECURITY.md +++ b/examples/@memclaw/plugin/SECURITY.md @@ -44,6 +44,7 @@ MemClaw uses platform-specific binary packages distributed via npm: |---------|----------|----------| | `@memclaw/bin-darwin-arm64` | macOS Apple Silicon | Qdrant, cortex-mem-service, cortex-mem-cli | | `@memclaw/bin-win-x64` | Windows x64 | Qdrant, cortex-mem-service, cortex-mem-cli | +| `@memclaw/bin-linux-x64` | Linux x64 | Qdrant, cortex-mem-service, cortex-mem-cli | ### Verification @@ -53,6 +54,7 @@ To verify binary packages: # Check package integrity via npm npm view @memclaw/bin-darwin-arm64 npm view @memclaw/bin-win-x64 +npm view @memclaw/bin-linux-x64 # Inspect package contents npm pack @memclaw/bin-darwin-arm64 diff --git a/examples/@memclaw/plugin/dist/index.js b/examples/@memclaw/plugin/dist/index.js index 5b833eb..265bcae 100644 --- a/examples/@memclaw/plugin/dist/index.js +++ b/examples/@memclaw/plugin/dist/index.js @@ -38,7 +38,7 @@ function memclawPlugin(api) { exports.plugin = { id: 'memclaw', name: 'MemClaw', - version: '0.9.27', + version: '0.9.29', configSchema: { type: 'object', properties: { diff --git a/examples/@memclaw/plugin/index.ts b/examples/@memclaw/plugin/index.ts index ae9c5b2..0588408 100644 --- a/examples/@memclaw/plugin/index.ts +++ b/examples/@memclaw/plugin/index.ts @@ -68,7 +68,7 @@ export default function memclawPlugin(api: PluginAPI) { export const plugin = { id: 'memclaw', name: 'MemClaw', - version: '0.9.27', + version: '0.9.29', configSchema: { type: 'object', properties: { diff --git a/examples/@memclaw/plugin/openclaw.plugin.json b/examples/@memclaw/plugin/openclaw.plugin.json index 1760afd..337d220 100644 --- a/examples/@memclaw/plugin/openclaw.plugin.json +++ b/examples/@memclaw/plugin/openclaw.plugin.json @@ -1,12 +1,12 @@ { "id": "memclaw", "name": "MemClaw", - "version": "0.9.27", + "version": "0.9.29", "description": "Layered semantic memory for OpenClaw with L0/L1/L2 tiered retrieval, easy setup, and migration from native memory", "kind": "memory", "skills": ["skills/memclaw", "skills/memclaw-maintance"], - "platforms": ["darwin-arm64", "win32-x64"], - "osRestriction": ["darwin-arm64", "win32-x64"], + "platforms": ["darwin-arm64", "win32-x64", "linux-x64"], + "osRestriction": ["darwin-arm64", "win32-x64", "linux-x64"], "configSchema": { "type": "object", "properties": { diff --git a/examples/@memclaw/plugin/package.json b/examples/@memclaw/plugin/package.json index 2a89884..88b937c 100644 --- a/examples/@memclaw/plugin/package.json +++ b/examples/@memclaw/plugin/package.json @@ -1,6 +1,6 @@ { "name": "@memclaw/memclaw", - "version": "0.9.27", + "version": "0.9.29", "description": "MemClaw - The Cortex Memory plugin for OpenClaw. Layered semantic memory for OpenClaw with easy setup and migration", "homepage": "https://github.com/sopaco/cortex-mem", "repository": {