polydev-ai 1.9.7 → 1.9.8

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/lib/cliManager.js CHANGED
@@ -18,9 +18,9 @@ const execAsync = promisify(exec);
18
18
 
19
19
  // Known default models for each CLI tool (used when detection fails)
20
20
  const CLI_DEFAULT_MODELS = {
21
- 'claude_code': 'claude-sonnet-4-5-20250929',
22
- 'gemini_cli': 'gemini-2.5-flash',
23
- 'codex_cli': 'o4-mini'
21
+ 'claude_code': 'claude-opus-4-6',
22
+ 'gemini_cli': 'gemini-3-pro',
23
+ 'codex_cli': 'gpt-5.3'
24
24
  };
25
25
 
26
26
  class CLIManager {
@@ -1825,9 +1825,9 @@ Error: ${error.message}`
1825
1825
 
1826
1826
  // Fallback to descriptive defaults based on typical CLI models
1827
1827
  const defaults = {
1828
- 'claude_code': 'claude-sonnet-4-5-20250929',
1829
- 'codex_cli': 'o4-mini',
1830
- 'gemini_cli': 'gemini-2.5-flash'
1828
+ 'claude_code': 'claude-opus-4-6',
1829
+ 'codex_cli': 'gpt-5.3',
1830
+ 'gemini_cli': 'gemini-3-pro'
1831
1831
  };
1832
1832
  return defaults[providerId] || 'unknown';
1833
1833
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.9.7",
3
+ "version": "1.9.8",
4
4
  "engines": {
5
5
  "node": ">=20.x <=22.x"
6
6
  },