From ef088aa81fa27eb8300573b151404a360722374d Mon Sep 17 00:00:00 2001 From: Gustavo Madeira Santana Date: Sun, 22 Feb 2026 20:41:34 -0500 Subject: [PATCH] updates --- extensions/matrix-js/CHANGELOG.md | 20 -------------------- extensions/matrix-js/openclaw.plugin.json | 4 ++-- extensions/matrix-js/package.json | 14 +++++++------- 3 files changed, 9 insertions(+), 29 deletions(-) delete mode 100644 extensions/matrix-js/CHANGELOG.md diff --git a/extensions/matrix-js/CHANGELOG.md b/extensions/matrix-js/CHANGELOG.md deleted file mode 100644 index fcbaf44e2d9..00000000000 --- a/extensions/matrix-js/CHANGELOG.md +++ /dev/null @@ -1,20 +0,0 @@ -# Changelog - -## 2026.2.22 - -### Changes - -- Version alignment with core OpenClaw release numbers. - -## 2026.1.14 - -### Features - -- Matrix channel plugin with homeserver + user ID auth (access token or password login with device name). -- Direct messages with pairing/allowlist/open/disabled policies and allowFrom support. -- Group/room controls: allowlist policy, per-room config, mention gating, auto-reply, per-room skills/system prompts. -- Threads: replyToMode controls and thread replies (off/inbound/always). -- Messaging: text chunking, media uploads with size caps, reactions, polls, typing, and message edits/deletes. -- Actions: read messages, list/remove reactions, pin/unpin/list pins, member info, room info. -- Auto-join invites with allowlist support. -- Status + probe reporting for health checks. diff --git a/extensions/matrix-js/openclaw.plugin.json b/extensions/matrix-js/openclaw.plugin.json index 2c179d9c6a9..6044d2ad998 100644 --- a/extensions/matrix-js/openclaw.plugin.json +++ b/extensions/matrix-js/openclaw.plugin.json @@ -1,6 +1,6 @@ { - "id": "matrix", - "channels": ["matrix"], + "id": "matrix-js", + "channels": ["matrix-js"], "configSchema": { "type": "object", "additionalProperties": false, diff --git a/extensions/matrix-js/package.json b/extensions/matrix-js/package.json index 89d5ce2b038..d067972e315 100644 --- a/extensions/matrix-js/package.json +++ b/extensions/matrix-js/package.json @@ -1,6 +1,6 @@ { - "name": "@openclaw/matrix", - "version": "2026.2.6-3", + "name": "@openclaw/matrix-js", + "version": "2026.2.22", "description": "OpenClaw Matrix channel plugin", "type": "module", "dependencies": { @@ -19,9 +19,9 @@ "./index.ts" ], "channel": { - "id": "matrix", - "label": "Matrix", - "selectionLabel": "Matrix (plugin)", + "id": "matrix-js", + "label": "Matrix-js", + "selectionLabel": "Matrix-js (plugin)", "docsPath": "/channels/matrix", "docsLabel": "matrix", "blurb": "open protocol; install the plugin to enable.", @@ -29,8 +29,8 @@ "quickstartAllowFrom": true }, "install": { - "npmSpec": "@openclaw/matrix", - "localPath": "extensions/matrix", + "npmSpec": "@openclaw/matrix-js", + "localPath": "extensions/matrix-js", "defaultChoice": "npm" } }