free-coding-models 0.3.43 → 0.3.45

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/src/utils.js CHANGED
@@ -392,10 +392,10 @@ export function findBestModel(results) {
392
392
  // --openhands, --amp, --pi, --no-telemetry, --json, --help/-h (case-insensitive)
393
393
  // - Value flag: --tier <letter> (the next non-flag arg is the tier value)
394
394
  //
395
- // 📖 Returns:
395
+ // Returns:
396
396
  // { apiKey, bestMode, fiableMode, openCodeMode, openCodeDesktopMode, openClawMode,
397
397
  // aiderMode, crushMode, gooseMode, qwenMode, openHandsMode, ampMode,
398
- // piMode, noTelemetry, jsonMode, helpMode, tierFilter }
398
+ // piMode, jcodeMode, noTelemetry, jsonMode, helpMode, tierFilter }
399
399
  //
400
400
  // 📖 Note: apiKey may be null here — the main CLI falls back to env vars and saved config.
401
401
  export function parseArgs(argv) {
@@ -460,6 +460,7 @@ export function parseArgs(argv) {
460
460
  const clineMode = flags.includes('--cline')
461
461
  const xcodeMode = flags.includes('--xcode')
462
462
  const geminiMode = flags.includes('--gemini')
463
+ const jcodeMode = flags.includes('--jcode')
463
464
  const noTelemetry = flags.includes('--no-telemetry')
464
465
  const jsonMode = flags.includes('--json')
465
466
  const helpMode = flags.includes('--help') || flags.includes('-h')
@@ -505,6 +506,7 @@ export function parseArgs(argv) {
505
506
  xcodeMode,
506
507
  rovoMode,
507
508
  geminiMode,
509
+ jcodeMode,
508
510
  noTelemetry,
509
511
  jsonMode,
510
512
  helpMode,