@elizaos/plugin-roblox 2.0.3-beta.2 → 2.0.3-beta.3
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 +4 -3
- package/registry-entry.json +88 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-roblox",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -25,10 +25,11 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
|
+
"registry-entry.json",
|
|
28
29
|
"dist"
|
|
29
30
|
],
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@elizaos/core": "2.0.3-beta.
|
|
32
|
+
"@elizaos/core": "2.0.3-beta.3"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
35
|
"@biomejs/biome": "^2.4.14",
|
|
@@ -105,5 +106,5 @@
|
|
|
105
106
|
"node": "ESM build available via exports.import"
|
|
106
107
|
}
|
|
107
108
|
},
|
|
108
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
109
110
|
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "roblox",
|
|
3
|
+
"name": "Roblox",
|
|
4
|
+
"description": "Roblox app integration for agent-driven gameplay and interactive experiences.",
|
|
5
|
+
"npmName": "@elizaos/plugin-roblox",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["app", "games", "roblox", "interactive"],
|
|
9
|
+
"config": {
|
|
10
|
+
"ROBLOX_API_KEY": {
|
|
11
|
+
"type": "secret",
|
|
12
|
+
"required": true,
|
|
13
|
+
"sensitive": true,
|
|
14
|
+
"label": "Api Key",
|
|
15
|
+
"help": "API key for authenticating with the Roblox Open Cloud API.",
|
|
16
|
+
"advanced": false
|
|
17
|
+
},
|
|
18
|
+
"ROBLOX_DRY_RUN": {
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"required": false,
|
|
21
|
+
"sensitive": false,
|
|
22
|
+
"default": "False",
|
|
23
|
+
"label": "Dry Run",
|
|
24
|
+
"help": "When true, operations are simulated but not executed.",
|
|
25
|
+
"advanced": false
|
|
26
|
+
},
|
|
27
|
+
"ROBLOX_PLACE_ID": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": false,
|
|
30
|
+
"sensitive": false,
|
|
31
|
+
"label": "Place Id",
|
|
32
|
+
"help": "The Place ID of the specific Roblox place within the universe.",
|
|
33
|
+
"advanced": false
|
|
34
|
+
},
|
|
35
|
+
"ROBLOX_UNIVERSE_ID": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"required": true,
|
|
38
|
+
"sensitive": false,
|
|
39
|
+
"label": "Universe Id",
|
|
40
|
+
"help": "The Universe ID of the Roblox experience to interact with.",
|
|
41
|
+
"advanced": false
|
|
42
|
+
},
|
|
43
|
+
"ROBLOX_POLL_INTERVAL": {
|
|
44
|
+
"type": "number",
|
|
45
|
+
"required": false,
|
|
46
|
+
"sensitive": false,
|
|
47
|
+
"default": "30",
|
|
48
|
+
"label": "Poll Interval",
|
|
49
|
+
"help": "Polling interval in seconds for Roblox data store operations.",
|
|
50
|
+
"advanced": false,
|
|
51
|
+
"min": 0,
|
|
52
|
+
"unit": "ms"
|
|
53
|
+
},
|
|
54
|
+
"ROBLOX_WEBHOOK_SECRET": {
|
|
55
|
+
"type": "secret",
|
|
56
|
+
"required": false,
|
|
57
|
+
"sensitive": true,
|
|
58
|
+
"label": "Webhook Secret",
|
|
59
|
+
"help": "Secret key for validating incoming webhooks from Roblox.",
|
|
60
|
+
"advanced": false
|
|
61
|
+
},
|
|
62
|
+
"ROBLOX_MESSAGING_TOPIC": {
|
|
63
|
+
"type": "string",
|
|
64
|
+
"required": false,
|
|
65
|
+
"sensitive": false,
|
|
66
|
+
"default": "eliza-agent",
|
|
67
|
+
"label": "Messaging Topic",
|
|
68
|
+
"help": "The messaging service topic for cross-server communication.",
|
|
69
|
+
"advanced": false
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"render": {
|
|
73
|
+
"visible": true,
|
|
74
|
+
"pinTo": [],
|
|
75
|
+
"style": "card",
|
|
76
|
+
"icon": "BrickWall",
|
|
77
|
+
"group": "gaming",
|
|
78
|
+
"groupOrder": 11,
|
|
79
|
+
"actions": ["enable", "configure"]
|
|
80
|
+
},
|
|
81
|
+
"resources": {
|
|
82
|
+
"homepage": "https://github.com/elizaos-plugins/plugin-roblox#readme",
|
|
83
|
+
"repository": "https://github.com/elizaos-plugins/plugin-roblox"
|
|
84
|
+
},
|
|
85
|
+
"dependsOn": [],
|
|
86
|
+
"kind": "plugin",
|
|
87
|
+
"subtype": "gaming"
|
|
88
|
+
}
|