@the-agenticflow/openflows 0.1.17 → 0.1.19

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/bin/agentflow-bin CHANGED
Binary file
Binary file
Binary file
package/bin/openflows.js CHANGED
@@ -320,6 +320,13 @@ Documentation: https://openflows.dev
320
320
  console.log(`[openflows] ✓ Proxy started, PROXY_URL set to ${env.PROXY_URL}`);
321
321
  }
322
322
  }
323
+
324
+ // Set ANTHROPIC_MODEL for Claude CLI when using proxy
325
+ // The proxy will map this to PROXY_TARGET_MODEL
326
+ if (!process.env.ANTHROPIC_MODEL && !process.env.CLAUDE_MODEL) {
327
+ env.ANTHROPIC_MODEL = 'claude-sonnet-4-5';
328
+ console.log(`[openflows] ✓ Set ANTHROPIC_MODEL=claude-sonnet-4-5 for proxy compatibility`);
329
+ }
323
330
  } else {
324
331
  console.log(`[openflows] Mode: ${reason}`);
325
332
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@the-agenticflow/openflows",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "Autonomous AI development team — turns GitHub issues into working PRs",
5
5
  "main": "index.js",
6
6
  "bin": {