Skip to content
Merged

Dev #61

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/@memclaw/plugin/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/@memclaw/plugin/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/@memclaw/plugin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
6 changes: 3 additions & 3 deletions examples/@memclaw/plugin/openclaw.plugin.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion examples/@memclaw/plugin/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Loading