@kesarcloud/omega-plus-cli 2.0.7 → 2.0.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kesarcloud/omega-plus-cli",
3
- "version": "2.0.7",
3
+ "version": "2.0.9",
4
4
  "description": "Interactive Omega Plus setup wizard for coding CLI tools.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,6 +65,10 @@ async function configureClaude(input) {
65
65
  ANTHROPIC_BASE_URL: options.anthropicBaseUrl,
66
66
  ANTHROPIC_MODEL: options.model,
67
67
  ANTHROPIC_SMALL_FAST_MODEL: options.fastModel,
68
+ ANTHROPIC_DEFAULT_OPUS_MODEL: "KesarCloud/anthropic/claude-opus-4.7",
69
+ ANTHROPIC_DEFAULT_SONNET_MODEL: "KesarCloud/anthropic/claude-opus-4-6",
70
+ ANTHROPIC_DEFAULT_HAIKU_MODEL: "omega-plus",
71
+ CLAUDE_CODE_SUBAGENT_MODEL: "omega-plus",
68
72
  CLAUDE_CODE_MAX_OUTPUT_TOKENS: String(OMEGA_MAX_OUTPUT_TOKENS),
69
73
  CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: "1",
70
74
  },
package/src/constants.mjs CHANGED
@@ -1,4 +1,4 @@
1
- export const VERSION = "2.0.7";
1
+ export const VERSION = "2.0.9";
2
2
  export const DEFAULT_ORIGIN = "https://omega.kesarcloud.in";
3
3
  export const DEFAULT_BASE_URL = `${DEFAULT_ORIGIN}/v1`;
4
4
  export const DEFAULT_ANTHROPIC_BASE_URL = `${DEFAULT_ORIGIN}/v1`;
package/src/wizard.mjs CHANGED
@@ -243,7 +243,7 @@ export async function runWizard(options = {}) {
243
243
 
244
244
  // Option 2: Update
245
245
  if (menuChoice === 2) {
246
- return runUpdateFlow(options, rl);
246
+ return await runUpdateFlow(options, rl);
247
247
  }
248
248
 
249
249
  // Option 1 or invalid: New Setup (default)