@parall/openclaw-agent 1.29.3 → 1.31.0

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/dist/index.js CHANGED
@@ -27,7 +27,7 @@ function env(name) {
27
27
  const PRLL_API_URL = env("PRLL_API_URL");
28
28
  const PRLL_API_KEY = env("PRLL_API_KEY");
29
29
  const PRLL_ORG_ID = env("PRLL_ORG_ID");
30
- const stateDir = env("PRLL_OPENCLAW_STATE_DIR");
30
+ const stateDir = env("PRLL_STATE_DIR");
31
31
  const PRLL_WS_URL = process.env.PRLL_WS_URL?.trim() || "";
32
32
  const PRLL_SWIMLANE_NAME = process.env.PRLL_SWIMLANE_NAME?.trim() || "";
33
33
  const gatewayPort = process.env.OPENCLAW_GATEWAY_PORT?.trim() || "0";
@@ -224,7 +224,7 @@ catch { /* non-fatal */ }
224
224
  // 7. Spawn openclaw gateway run with signal forwarding
225
225
  // ---------------------------------------------------------------------------
226
226
  log.info("Starting OpenClaw gateway...");
227
- const workspaceDir = process.env.PRLL_OPENCLAW_WORKSPACE_DIR?.trim() || "";
227
+ const workspaceDir = process.env.PRLL_WORKSPACE_DIR?.trim() || "";
228
228
  const gatewayEnv = {
229
229
  ...process.env,
230
230
  OPENCLAW_STATE_DIR: openclawStateDir,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parall/openclaw-agent",
3
- "version": "1.29.3",
3
+ "version": "1.31.0",
4
4
  "description": "OpenClaw bootstrap wrapper for daemon-mode Parall agents — sets up per-agent OpenClaw state and execs openclaw gateway run",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/index.ts CHANGED
@@ -33,7 +33,7 @@ function env(name: string): string {
33
33
  const PRLL_API_URL = env("PRLL_API_URL");
34
34
  const PRLL_API_KEY = env("PRLL_API_KEY");
35
35
  const PRLL_ORG_ID = env("PRLL_ORG_ID");
36
- const stateDir = env("PRLL_OPENCLAW_STATE_DIR");
36
+ const stateDir = env("PRLL_STATE_DIR");
37
37
 
38
38
  const PRLL_WS_URL = process.env.PRLL_WS_URL?.trim() || "";
39
39
  const PRLL_SWIMLANE_NAME = process.env.PRLL_SWIMLANE_NAME?.trim() || "";
@@ -249,7 +249,7 @@ try {
249
249
 
250
250
  log.info("Starting OpenClaw gateway...");
251
251
 
252
- const workspaceDir = process.env.PRLL_OPENCLAW_WORKSPACE_DIR?.trim() || "";
252
+ const workspaceDir = process.env.PRLL_WORKSPACE_DIR?.trim() || "";
253
253
 
254
254
  const gatewayEnv: NodeJS.ProcessEnv = {
255
255
  ...process.env,