@elizaos/plugin-bluesky 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 +5 -4
- package/registry-entry.json +173 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-bluesky",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cjs/index.node.cjs",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
40
|
+
"registry-entry.json",
|
|
40
41
|
"dist"
|
|
41
42
|
],
|
|
42
43
|
"keywords": [],
|
|
@@ -60,7 +61,7 @@
|
|
|
60
61
|
"@atproto/lexicon": "^0.7.2",
|
|
61
62
|
"@atproto/syntax": "^0.6.1",
|
|
62
63
|
"@atproto/xrpc": "^0.7.0",
|
|
63
|
-
"@elizaos/core": "2.0.3-beta.
|
|
64
|
+
"@elizaos/core": "2.0.3-beta.4",
|
|
64
65
|
"lru-cache": "^11.1.0",
|
|
65
66
|
"zod": "^4.4.3"
|
|
66
67
|
},
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"typescript": "^6.0.3"
|
|
71
72
|
},
|
|
72
73
|
"peerDependencies": {
|
|
73
|
-
"@elizaos/core": "2.0.3-beta.
|
|
74
|
+
"@elizaos/core": "2.0.3-beta.4"
|
|
74
75
|
},
|
|
75
76
|
"resolutions": {
|
|
76
77
|
"@noble/hashes": "2.2.0"
|
|
@@ -200,5 +201,5 @@
|
|
|
200
201
|
"node": "Node.js build available via exports.node"
|
|
201
202
|
}
|
|
202
203
|
},
|
|
203
|
-
"gitHead": "
|
|
204
|
+
"gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
|
|
204
205
|
}
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "bluesky",
|
|
3
|
+
"name": "Bluesky",
|
|
4
|
+
"description": "Bluesky connector for ElizaOS",
|
|
5
|
+
"npmName": "@elizaos/plugin-bluesky",
|
|
6
|
+
"version": "2.0.0-beta.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["connector", "social", "social-feed", "bluesky"],
|
|
9
|
+
"config": {
|
|
10
|
+
"BLUESKY_HANDLE": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"required": true,
|
|
13
|
+
"sensitive": false,
|
|
14
|
+
"label": "Handle",
|
|
15
|
+
"help": "The BlueSky handle (username) for the agent account.",
|
|
16
|
+
"advanced": false
|
|
17
|
+
},
|
|
18
|
+
"BLUESKY_DRY_RUN": {
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"required": false,
|
|
21
|
+
"sensitive": false,
|
|
22
|
+
"default": "False",
|
|
23
|
+
"label": "Dry Run",
|
|
24
|
+
"help": "Enables or disables dry run mode when interacting with BlueSky; when true, operations are simulated but not executed.",
|
|
25
|
+
"advanced": false
|
|
26
|
+
},
|
|
27
|
+
"BLUESKY_ENABLED": {
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"required": false,
|
|
30
|
+
"sensitive": false,
|
|
31
|
+
"default": "True",
|
|
32
|
+
"label": "Enabled",
|
|
33
|
+
"help": "Enables or disables the BlueSky plugin.",
|
|
34
|
+
"advanced": false
|
|
35
|
+
},
|
|
36
|
+
"BLUESKY_SERVICE": {
|
|
37
|
+
"type": "string",
|
|
38
|
+
"required": false,
|
|
39
|
+
"sensitive": false,
|
|
40
|
+
"default": "https://bsky.social",
|
|
41
|
+
"label": "Service",
|
|
42
|
+
"help": "The BlueSky service URL (PDS instance).",
|
|
43
|
+
"advanced": false
|
|
44
|
+
},
|
|
45
|
+
"BLUESKY_PASSWORD": {
|
|
46
|
+
"type": "secret",
|
|
47
|
+
"required": true,
|
|
48
|
+
"sensitive": true,
|
|
49
|
+
"label": "Password",
|
|
50
|
+
"help": "The app password for authentication with BlueSky.",
|
|
51
|
+
"advanced": false
|
|
52
|
+
},
|
|
53
|
+
"BLUESKY_ENABLE_DMS": {
|
|
54
|
+
"type": "boolean",
|
|
55
|
+
"required": false,
|
|
56
|
+
"sensitive": false,
|
|
57
|
+
"default": "True",
|
|
58
|
+
"label": "Enable Dms",
|
|
59
|
+
"help": "Enable processing of direct messages via the chat.bsky API.",
|
|
60
|
+
"advanced": false
|
|
61
|
+
},
|
|
62
|
+
"BLUESKY_POLL_INTERVAL": {
|
|
63
|
+
"type": "number",
|
|
64
|
+
"required": false,
|
|
65
|
+
"sensitive": false,
|
|
66
|
+
"default": "60",
|
|
67
|
+
"label": "Poll Interval",
|
|
68
|
+
"help": "Polling interval in seconds for BlueSky operations such as fetching new notifications.",
|
|
69
|
+
"advanced": false,
|
|
70
|
+
"min": 0,
|
|
71
|
+
"unit": "ms"
|
|
72
|
+
},
|
|
73
|
+
"BLUESKY_ENABLE_POSTING": {
|
|
74
|
+
"type": "boolean",
|
|
75
|
+
"required": false,
|
|
76
|
+
"sensitive": false,
|
|
77
|
+
"default": "True",
|
|
78
|
+
"label": "Enable Posting",
|
|
79
|
+
"help": "Enables or disables the ability to post to BlueSky.",
|
|
80
|
+
"advanced": false
|
|
81
|
+
},
|
|
82
|
+
"BLUESKY_ACTION_INTERVAL": {
|
|
83
|
+
"type": "number",
|
|
84
|
+
"required": false,
|
|
85
|
+
"sensitive": false,
|
|
86
|
+
"default": "120",
|
|
87
|
+
"label": "Action Interval",
|
|
88
|
+
"help": "Interval in seconds between action-processing cycles.",
|
|
89
|
+
"advanced": false,
|
|
90
|
+
"min": 0,
|
|
91
|
+
"unit": "ms"
|
|
92
|
+
},
|
|
93
|
+
"BLUESKY_MAX_POST_LENGTH": {
|
|
94
|
+
"type": "number",
|
|
95
|
+
"required": false,
|
|
96
|
+
"sensitive": false,
|
|
97
|
+
"default": "300",
|
|
98
|
+
"label": "Max Post Length",
|
|
99
|
+
"help": "Maximum number of characters allowed in a BlueSky post.",
|
|
100
|
+
"advanced": false
|
|
101
|
+
},
|
|
102
|
+
"BLUESKY_POST_IMMEDIATELY": {
|
|
103
|
+
"type": "boolean",
|
|
104
|
+
"required": false,
|
|
105
|
+
"sensitive": false,
|
|
106
|
+
"default": "False",
|
|
107
|
+
"label": "Post Immediately",
|
|
108
|
+
"help": "If true, posts are published immediately instead of waiting for a schedule.",
|
|
109
|
+
"advanced": false
|
|
110
|
+
},
|
|
111
|
+
"BLUESKY_POST_INTERVAL_MAX": {
|
|
112
|
+
"type": "number",
|
|
113
|
+
"required": false,
|
|
114
|
+
"sensitive": false,
|
|
115
|
+
"default": "3600",
|
|
116
|
+
"label": "Post Interval Max",
|
|
117
|
+
"help": "Maximum interval in seconds between automated posts.",
|
|
118
|
+
"advanced": false,
|
|
119
|
+
"min": 0,
|
|
120
|
+
"unit": "ms"
|
|
121
|
+
},
|
|
122
|
+
"BLUESKY_POST_INTERVAL_MIN": {
|
|
123
|
+
"type": "number",
|
|
124
|
+
"required": false,
|
|
125
|
+
"sensitive": false,
|
|
126
|
+
"default": "1800",
|
|
127
|
+
"label": "Post Interval Min",
|
|
128
|
+
"help": "Minimum interval in seconds between automated posts.",
|
|
129
|
+
"advanced": false,
|
|
130
|
+
"min": 0,
|
|
131
|
+
"unit": "ms"
|
|
132
|
+
},
|
|
133
|
+
"BLUESKY_MAX_ACTIONS_PROCESSING": {
|
|
134
|
+
"type": "number",
|
|
135
|
+
"required": false,
|
|
136
|
+
"sensitive": false,
|
|
137
|
+
"default": "5",
|
|
138
|
+
"label": "Max Actions Processing",
|
|
139
|
+
"help": "Maximum number of BlueSky actions to process in a single batch.",
|
|
140
|
+
"advanced": false
|
|
141
|
+
},
|
|
142
|
+
"BLUESKY_ENABLE_ACTION_PROCESSING": {
|
|
143
|
+
"type": "boolean",
|
|
144
|
+
"required": false,
|
|
145
|
+
"sensitive": false,
|
|
146
|
+
"default": "True",
|
|
147
|
+
"label": "Enable Action Processing",
|
|
148
|
+
"help": "Turns on or off automated action processing for BlueSky events.",
|
|
149
|
+
"advanced": false
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"render": {
|
|
153
|
+
"visible": false,
|
|
154
|
+
"pinTo": [],
|
|
155
|
+
"style": "setup-panel",
|
|
156
|
+
"icon": "Leaf",
|
|
157
|
+
"group": "connector",
|
|
158
|
+
"groupOrder": 1,
|
|
159
|
+
"actions": ["enable", "configure", "setup-guide"]
|
|
160
|
+
},
|
|
161
|
+
"resources": {
|
|
162
|
+
"homepage": "https://github.com/elizaos/elizaos#readme",
|
|
163
|
+
"repository": "https://github.com/elizaos/elizaos",
|
|
164
|
+
"setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#bluesky"
|
|
165
|
+
},
|
|
166
|
+
"dependsOn": [],
|
|
167
|
+
"kind": "connector",
|
|
168
|
+
"subtype": "messaging",
|
|
169
|
+
"auth": {
|
|
170
|
+
"kind": "token",
|
|
171
|
+
"credentialKeys": []
|
|
172
|
+
}
|
|
173
|
+
}
|