openclaw-syncralis 2.3.2 → 2.3.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/README.md +21 -3
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Syncralis provides load-balanced web searching, secure file downloads, and mobil
|
|
|
17
17
|
***Path Boundary Enforcement:** Cryptographically verifies all file requests to prevent directory traversal attacks outside the designated workspace.
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
## 🔑
|
|
20
|
+
## 🔑 Requirements & API Keys (Free Tiers)
|
|
21
21
|
|
|
22
22
|
Syncralis relies on three external services. Each of these providers offers a generous free tier for developers (subject to their respective Terms and Conditions):
|
|
23
23
|
|
|
@@ -107,7 +107,16 @@ When running OpenClaw natively on your host machine, Syncralis spins up a secure
|
|
|
107
107
|
"WORKSPACE_DIR": "",
|
|
108
108
|
"PUBLIC_TUNNEL_URL": "https://your-ngrok-url.ngrok-free.app",
|
|
109
109
|
"NGROK_API_PORT": 4040,
|
|
110
|
-
"URL_SIGNING_SECRET": "your_custom_32_character_secret_here"
|
|
110
|
+
"URL_SIGNING_SECRET": "your_custom_32_character_secret_here"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"plugins": {
|
|
116
|
+
"entries": {
|
|
117
|
+
"openclaw-syncralis": {
|
|
118
|
+
"enabled": true,
|
|
119
|
+
"config": {
|
|
111
120
|
"TAVILY_API_KEY": "your_tavily_key",
|
|
112
121
|
"BRAVE_API_KEY": "your_brave_key"
|
|
113
122
|
}
|
|
@@ -137,7 +146,16 @@ OpenClaw often executes tools as ephemeral child processes. In a containerized s
|
|
|
137
146
|
"WORKSPACE_DIR": "",
|
|
138
147
|
"PUBLIC_TUNNEL_URL": "https://your-static-domain.ngrok-free.app",
|
|
139
148
|
"NGROK_API_PORT": 4040,
|
|
140
|
-
"URL_SIGNING_SECRET": "your_custom_32_character_secret_here"
|
|
149
|
+
"URL_SIGNING_SECRET": "your_custom_32_character_secret_here"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
"plugins": {
|
|
155
|
+
"entries": {
|
|
156
|
+
"openclaw-syncralis": {
|
|
157
|
+
"enabled": true,
|
|
158
|
+
"config": {
|
|
141
159
|
"TAVILY_API_KEY": "your_tavily_key",
|
|
142
160
|
"BRAVE_API_KEY": "your_brave_key"
|
|
143
161
|
}
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "openclaw-syncralis",
|
|
3
3
|
"name": "openclaw-syncralis",
|
|
4
4
|
"displayName": "Syncralis Gateway",
|
|
5
|
-
"version": "2.3.
|
|
5
|
+
"version": "2.3.4",
|
|
6
6
|
"description": "An industry-grade file sharing, secure download, and load-balanced gateway designed for high-availability OpenClaw environments.",
|
|
7
7
|
"type": "gateway",
|
|
8
8
|
"main": "./server.js",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-syncralis",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "An industry-grade file sharing, secure download, and load-balanced gateway designed for high-availability OpenClaw environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./server.js",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"openclaw-syncralis": "./server.js"
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=18.0.0"
|
|
11
|
+
"node": ">=18.0.0"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"server.js",
|