@algosuite/vo-mcp 0.2.0-beta.46 → 0.2.0-beta.48

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.
@@ -105467,7 +105467,7 @@ function normalizePr(pr = {}) {
105467
105467
  function isSafeDependencyOverlapFile(path3 = "") {
105468
105468
  return SAFE_DEPENDENCY_OVERLAP_FILE_RE.test(String(path3 || "").trim());
105469
105469
  }
105470
- var EXEMPT_OVERLAP_FILE_RE = /^docs\/vo\/.*roadmap.*\.md$|^\.github\/workflows\/ci\.yml$/i;
105470
+ var EXEMPT_OVERLAP_FILE_RE = /^docs\/vo\/.*roadmap.*\.md$|^\.github\/workflows\/ci\.yml$|^(?:public|cloud-run\/vo-control-plane\/data)\/roadmap-progress\.json$/i;
105471
105471
  function isExemptOverlapFile(path3 = "") {
105472
105472
  return EXEMPT_OVERLAP_FILE_RE.test(String(path3 || "").trim());
105473
105473
  }
package/dist/cli.js CHANGED
@@ -8424,11 +8424,13 @@ function readKey(EntryCtor, account) {
8424
8424
  return null;
8425
8425
  }
8426
8426
  }
8427
+ var SKIP_KEYCHAIN_ENV = "VO_MCP_SKIP_KEYCHAIN";
8427
8428
  function withLocalConsensusCredentials(baseEnv = process.env, options = {}) {
8428
8429
  const env = { ...baseEnv };
8429
8430
  if (!env.OPENAI_API_KEY?.trim() && env.CODEX_API_KEY?.trim()) {
8430
8431
  env.OPENAI_API_KEY = env.CODEX_API_KEY;
8431
8432
  }
8433
+ if (env[SKIP_KEYCHAIN_ENV]?.trim() === "1") return env;
8432
8434
  const EntryCtor = options.EntryCtor === void 0 ? loadEntryCtor() : options.EntryCtor;
8433
8435
  if (!EntryCtor) return env;
8434
8436
  for (const target of KEYCHAIN_TARGETS) {