@agentchatme/openclaw 0.6.8 → 0.6.9

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.
@@ -329,8 +329,8 @@ function resolveWorkspaceDir(cfg) {
329
329
  if (typeof configured === "string" && configured.trim().length > 0) {
330
330
  return path__namespace.resolve(configured);
331
331
  }
332
- const profile = process.env["OPENCLAW_PROFILE"]?.trim();
333
- if (profile && profile.toLowerCase() !== "default") {
332
+ const profile = readEnv_js.readOpenClawProfileFromEnv();
333
+ if (profile) {
334
334
  return path__namespace.join(os__namespace.homedir(), ".openclaw", `workspace-${profile}`);
335
335
  }
336
336
  return path__namespace.join(os__namespace.homedir(), ".openclaw", "workspace");
@@ -1976,7 +1976,7 @@ var CircuitBreaker = class {
1976
1976
  };
1977
1977
 
1978
1978
  // src/version.ts
1979
- var PACKAGE_VERSION = "0.6.8";
1979
+ var PACKAGE_VERSION = "0.6.9";
1980
1980
 
1981
1981
  // src/outbound.ts
1982
1982
  var DEFAULT_RETRY_POLICY = {