This commit is contained in:
Gustavo Madeira Santana
2026-02-22 20:41:34 -05:00
parent acdb0be472
commit ef088aa81f
3 changed files with 9 additions and 29 deletions

View File

@@ -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.

View File

@@ -1,6 +1,6 @@
{
"id": "matrix",
"channels": ["matrix"],
"id": "matrix-js",
"channels": ["matrix-js"],
"configSchema": {
"type": "object",
"additionalProperties": false,

View File

@@ -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"
}
}