@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.
- package/dist/credentials/read-env.cjs +7 -0
- package/dist/credentials/read-env.cjs.map +1 -1
- package/dist/credentials/read-env.d.cts +41 -9
- package/dist/credentials/read-env.d.ts +41 -9
- package/dist/credentials/read-env.js +7 -1
- package/dist/credentials/read-env.js.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +3 -3
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +4 -4
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +13 -1
- package/skills/agentchat/SKILL.md +2 -2
package/dist/setup-entry.cjs
CHANGED
|
@@ -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 =
|
|
333
|
-
if (profile
|
|
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.
|
|
1979
|
+
var PACKAGE_VERSION = "0.6.9";
|
|
1980
1980
|
|
|
1981
1981
|
// src/outbound.ts
|
|
1982
1982
|
var DEFAULT_RETRY_POLICY = {
|