@elizaos/plugin-matrix 2.0.3-beta.2 → 2.0.3-beta.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-matrix",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -28,6 +28,7 @@
28
28
  }
29
29
  },
30
30
  "files": [
31
+ "registry-entry.json",
31
32
  "dist",
32
33
  "auto-enable.ts"
33
34
  ],
@@ -53,7 +54,7 @@
53
54
  "matrix-js-sdk": "^41.4.0"
54
55
  },
55
56
  "peerDependencies": {
56
- "@elizaos/core": "2.0.3-beta.2"
57
+ "@elizaos/core": "2.0.3-beta.4"
57
58
  },
58
59
  "devDependencies": {
59
60
  "@biomejs/biome": "^2.4.14",
@@ -125,5 +126,5 @@
125
126
  }
126
127
  }
127
128
  },
128
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
129
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
129
130
  }
@@ -0,0 +1,95 @@
1
+ {
2
+ "id": "matrix",
3
+ "name": "Matrix",
4
+ "description": "Matrix connector for rooms, bots, and federated chat workflows.",
5
+ "npmName": "@elizaos/plugin-matrix",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["connector", "messaging", "matrix", "chat", "social", "social-chat"],
9
+ "config": {
10
+ "MATRIX_ROOMS": {
11
+ "type": "string",
12
+ "required": false,
13
+ "sensitive": false,
14
+ "label": "Rooms",
15
+ "help": "Comma-separated room/channel list",
16
+ "advanced": false
17
+ },
18
+ "MATRIX_USER_ID": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "label": "User Id",
23
+ "help": "User identifier",
24
+ "advanced": false
25
+ },
26
+ "MATRIX_AUTO_JOIN": {
27
+ "type": "boolean",
28
+ "required": false,
29
+ "sensitive": false,
30
+ "label": "Auto Join",
31
+ "help": "Automatically join/discover channels",
32
+ "advanced": false
33
+ },
34
+ "MATRIX_DEVICE_ID": {
35
+ "type": "string",
36
+ "required": false,
37
+ "sensitive": false,
38
+ "label": "Device Id",
39
+ "help": "Device identifier",
40
+ "advanced": false
41
+ },
42
+ "MATRIX_ENCRYPTION": {
43
+ "type": "boolean",
44
+ "required": false,
45
+ "sensitive": false,
46
+ "label": "Encryption",
47
+ "help": "Enable encryption",
48
+ "advanced": false
49
+ },
50
+ "MATRIX_HOMESERVER": {
51
+ "type": "string",
52
+ "required": false,
53
+ "sensitive": false,
54
+ "label": "Homeserver",
55
+ "help": "Homeserver URL",
56
+ "advanced": false
57
+ },
58
+ "MATRIX_ACCESS_TOKEN": {
59
+ "type": "secret",
60
+ "required": true,
61
+ "sensitive": true,
62
+ "label": "Access Token",
63
+ "help": "Access token for Matrix",
64
+ "advanced": false
65
+ },
66
+ "MATRIX_REQUIRE_MENTION": {
67
+ "type": "boolean",
68
+ "required": false,
69
+ "sensitive": false,
70
+ "label": "Require Mention",
71
+ "help": "Only respond when mentioned",
72
+ "advanced": false
73
+ }
74
+ },
75
+ "render": {
76
+ "visible": false,
77
+ "pinTo": [],
78
+ "style": "setup-panel",
79
+ "icon": "Link",
80
+ "group": "connector",
81
+ "groupOrder": 1,
82
+ "actions": ["enable", "configure", "setup-guide"]
83
+ },
84
+ "resources": {
85
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#matrix"
86
+ },
87
+ "dependsOn": [],
88
+ "kind": "connector",
89
+ "subtype": "messaging",
90
+ "auth": {
91
+ "kind": "token",
92
+ "credentialKeys": ["MATRIX_ACCESS_TOKEN"]
93
+ },
94
+ "channels": ["matrix"]
95
+ }