clawdi 0.13.100 → 0.13.101

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -575,7 +575,6 @@ if (
575
575
  typeof providerAuth.ensureAuthProfileStoreForLocalUpdate !== "function" ||
576
576
  typeof providerAuth.listProfilesForProvider !== "function" ||
577
577
  typeof providerAuth.removeProviderAuthProfilesWithLock !== "function" ||
578
- typeof providerAuth.resolveOpenClawAgentDir !== "function" ||
579
578
  typeof configMutation.readConfigFileSnapshotForWrite !== "function" ||
580
579
  typeof configMutation.mutateConfigFile !== "function"
581
580
  ) {
@@ -593,7 +592,7 @@ const normalizePath = (value) => {
593
592
  };
594
593
  const stateDir = normalizePath(process.env.OPENCLAW_STATE_DIR?.trim() || join(home, ".openclaw"));
595
594
  const defaultAgentDir = join(stateDir, "agents", "main", "agent");
596
- const agentDirs = new Set([defaultAgentDir, normalizePath(providerAuth.resolveOpenClawAgentDir({}))]);
595
+ const agentDirs = new Set([defaultAgentDir]);
597
596
  if (process.env.OPENCLAW_AGENT_DIR?.trim()) {
598
597
  agentDirs.add(normalizePath(process.env.OPENCLAW_AGENT_DIR));
599
598
  }
@@ -992,7 +991,6 @@ if (
992
991
  typeof providerAuth.ensureAuthProfileStoreForLocalUpdate !== "function" ||
993
992
  typeof providerAuth.listProfilesForProvider !== "function" ||
994
993
  typeof providerAuth.removeProviderAuthProfilesWithLock !== "function" ||
995
- typeof providerAuth.resolveOpenClawAgentDir !== "function" ||
996
994
  typeof configMutation.readConfigFileSnapshotForWrite !== "function" ||
997
995
  typeof configMutation.mutateConfigFile !== "function" ||
998
996
  typeof providerEnvVars.listKnownProviderAuthEnvVarNames !== "function"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawdi",
3
- "version": "0.13.100",
3
+ "version": "0.13.101",
4
4
  "description": "iCloud for AI Agents — cross-agent sessions, skills, memory, and vault.",
5
5
  "license": "MIT",
6
6
  "type": "module",