@defai.digital/automatosx 11.2.9 → 11.3.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/mcp/index.js CHANGED
@@ -2685,8 +2685,18 @@ var init_base_provider = __esm({
2685
2685
  /**
2686
2686
  * Check if CLI is available - Template method pattern
2687
2687
  * Uses getCLICommand() to determine which CLI to check
2688
+ *
2689
+ * v11.2.9 Fix: Always return true in mock mode (AX_MOCK_PROVIDERS=true)
2690
+ * This allows integration tests in CI to run without installing actual provider CLIs
2688
2691
  */
2689
2692
  async checkCLIAvailable() {
2693
+ if (process.env.AX_MOCK_PROVIDERS === "true") {
2694
+ logger.debug(`${this.getCLICommand()} CLI availability check (mock mode)`, {
2695
+ available: true,
2696
+ mockMode: true
2697
+ });
2698
+ return true;
2699
+ }
2690
2700
  try {
2691
2701
  const cliCommand = this.getCLICommand();
2692
2702
  const result = findOnPath(cliCommand);
@@ -5240,7 +5250,7 @@ var PRECOMPILED_CONFIG = {
5240
5250
  "enableFreeTierPrioritization": true,
5241
5251
  "enableWorkloadAwareRouting": true
5242
5252
  },
5243
- "version": "11.2.9"
5253
+ "version": "11.3.0"
5244
5254
  };
5245
5255
 
5246
5256
  // src/core/config/schemas.ts
@@ -12270,8 +12280,8 @@ var ProjectContextLoader = class {
12270
12280
  const projectMatch = markdown.match(/>\s*Project:\s*(.+?)$/im);
12271
12281
  if (projectMatch && projectMatch[1]) {
12272
12282
  const parts = projectMatch[1].trim().split(/\s+v/);
12273
- metadata.name = parts[0];
12274
- if (parts[1]) {
12283
+ metadata.name = parts[0] || "";
12284
+ if (parts.length > 1 && parts[1]) {
12275
12285
  metadata.version = parts[1];
12276
12286
  }
12277
12287
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defai.digital/automatosx",
3
- "version": "11.2.9",
3
+ "version": "11.3.0",
4
4
  "description": "Provider-agnostic AI orchestration platform with 20+ specialized agents, persistent memory, and multi-provider routing for Claude Code, Gemini CLI, Codex CLI, and ax-cli",
5
5
  "type": "module",
6
6
  "publishConfig": {