free-coding-models 0.3.37 → 0.3.41
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/CHANGELOG.md +5 -1800
- package/README.md +10 -1
- package/bin/free-coding-models.js +8 -0
- package/package.json +13 -3
- package/src/app.js +30 -0
- package/src/cli-help.js +2 -0
- package/src/command-palette.js +3 -0
- package/src/config.js +7 -0
- package/src/endpoint-installer.js +1 -1
- package/src/key-handler.js +27 -1
- package/src/overlays.js +11 -1
- package/src/shell-env.js +393 -0
- package/src/tool-bootstrap.js +41 -0
- package/src/tool-launchers.js +166 -1
- package/src/tool-metadata.js +12 -0
- package/src/utils.js +12 -0
- package/web/app.legacy.js +900 -0
- package/web/index.html +20 -0
- package/web/server.js +443 -0
- package/web/src/App.jsx +150 -0
- package/web/src/components/analytics/AnalyticsView.jsx +109 -0
- package/web/src/components/analytics/AnalyticsView.module.css +186 -0
- package/web/src/components/atoms/Sparkline.jsx +44 -0
- package/web/src/components/atoms/StabilityCell.jsx +18 -0
- package/web/src/components/atoms/StabilityCell.module.css +8 -0
- package/web/src/components/atoms/StatusDot.jsx +10 -0
- package/web/src/components/atoms/StatusDot.module.css +17 -0
- package/web/src/components/atoms/TierBadge.jsx +10 -0
- package/web/src/components/atoms/TierBadge.module.css +18 -0
- package/web/src/components/atoms/Toast.jsx +25 -0
- package/web/src/components/atoms/Toast.module.css +35 -0
- package/web/src/components/atoms/ToastContainer.jsx +16 -0
- package/web/src/components/atoms/ToastContainer.module.css +10 -0
- package/web/src/components/atoms/VerdictBadge.jsx +13 -0
- package/web/src/components/atoms/VerdictBadge.module.css +19 -0
- package/web/src/components/dashboard/DetailPanel.jsx +131 -0
- package/web/src/components/dashboard/DetailPanel.module.css +99 -0
- package/web/src/components/dashboard/ExportModal.jsx +79 -0
- package/web/src/components/dashboard/ExportModal.module.css +99 -0
- package/web/src/components/dashboard/FilterBar.jsx +73 -0
- package/web/src/components/dashboard/FilterBar.module.css +43 -0
- package/web/src/components/dashboard/ModelTable.jsx +86 -0
- package/web/src/components/dashboard/ModelTable.module.css +46 -0
- package/web/src/components/dashboard/StatsBar.jsx +40 -0
- package/web/src/components/dashboard/StatsBar.module.css +28 -0
- package/web/src/components/layout/Footer.jsx +19 -0
- package/web/src/components/layout/Footer.module.css +10 -0
- package/web/src/components/layout/Header.jsx +38 -0
- package/web/src/components/layout/Header.module.css +73 -0
- package/web/src/components/layout/Sidebar.jsx +41 -0
- package/web/src/components/layout/Sidebar.module.css +76 -0
- package/web/src/components/settings/SettingsView.jsx +264 -0
- package/web/src/components/settings/SettingsView.module.css +377 -0
- package/web/src/global.css +199 -0
- package/web/src/hooks/useFilter.js +83 -0
- package/web/src/hooks/useSSE.js +49 -0
- package/web/src/hooks/useTheme.js +27 -0
- package/web/src/main.jsx +15 -0
- package/web/src/utils/download.js +15 -0
- package/web/src/utils/format.js +42 -0
- package/web/src/utils/ranks.js +37 -0
- package/web/styles.legacy.css +963 -0
package/src/utils.js
CHANGED
|
@@ -455,12 +455,19 @@ export function parseArgs(argv) {
|
|
|
455
455
|
const ampMode = flags.includes('--amp')
|
|
456
456
|
const piMode = flags.includes('--pi')
|
|
457
457
|
const rovoMode = flags.includes('--rovo')
|
|
458
|
+
const hermesMode = flags.includes('--hermes')
|
|
459
|
+
const continueMode = flags.includes('--continue')
|
|
460
|
+
const clineMode = flags.includes('--cline')
|
|
461
|
+
const xcodeMode = flags.includes('--xcode')
|
|
458
462
|
const geminiMode = flags.includes('--gemini')
|
|
459
463
|
const noTelemetry = flags.includes('--no-telemetry')
|
|
460
464
|
const jsonMode = flags.includes('--json')
|
|
461
465
|
const helpMode = flags.includes('--help') || flags.includes('-h')
|
|
462
466
|
const premiumMode = flags.includes('--premium')
|
|
463
467
|
|
|
468
|
+
// 📖 --web / --gui / web subcommand — launch the web dashboard instead of the TUI
|
|
469
|
+
const webMode = flags.includes('--web') || flags.includes('--gui') || args[0] === 'web'
|
|
470
|
+
|
|
464
471
|
// New boolean flags
|
|
465
472
|
const sortDesc = flags.includes('--desc')
|
|
466
473
|
const sortAscFlag = flags.includes('--asc')
|
|
@@ -492,6 +499,10 @@ export function parseArgs(argv) {
|
|
|
492
499
|
openHandsMode,
|
|
493
500
|
ampMode,
|
|
494
501
|
piMode,
|
|
502
|
+
hermesMode,
|
|
503
|
+
continueMode,
|
|
504
|
+
clineMode,
|
|
505
|
+
xcodeMode,
|
|
495
506
|
rovoMode,
|
|
496
507
|
geminiMode,
|
|
497
508
|
noTelemetry,
|
|
@@ -505,6 +516,7 @@ export function parseArgs(argv) {
|
|
|
505
516
|
hideUnconfigured,
|
|
506
517
|
showUnconfigured,
|
|
507
518
|
premiumMode,
|
|
519
|
+
webMode,
|
|
508
520
|
// 📖 Profile system removed - API keys now persist permanently across all sessions
|
|
509
521
|
recommendMode,
|
|
510
522
|
}
|