vibecodingmachine-cli 2026.1.29-713 → 2026.2.20-423

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.
Files changed (45) hide show
  1. package/bin/vibecodingmachine.js +124 -0
  2. package/package.json +3 -2
  3. package/src/commands/agents-check.js +69 -0
  4. package/src/commands/auto-direct.js +930 -145
  5. package/src/commands/auto.js +26 -4
  6. package/src/commands/ide.js +2 -1
  7. package/src/commands/requirements.js +23 -27
  8. package/src/utils/auto-mode.js +4 -1
  9. package/src/utils/cline-js-handler.js +218 -0
  10. package/src/utils/config.js +22 -0
  11. package/src/utils/display-formatters-complete.js +229 -0
  12. package/src/utils/display-formatters-extracted.js +219 -0
  13. package/src/utils/display-formatters.js +157 -0
  14. package/src/utils/feedback-handler.js +143 -0
  15. package/src/utils/ide-detection-complete.js +126 -0
  16. package/src/utils/ide-detection-extracted.js +116 -0
  17. package/src/utils/ide-detection.js +124 -0
  18. package/src/utils/interactive-backup.js +5664 -0
  19. package/src/utils/interactive-broken.js +280 -0
  20. package/src/utils/interactive.js +31 -5534
  21. package/src/utils/provider-checker.js +410 -0
  22. package/src/utils/provider-manager.js +251 -0
  23. package/src/utils/provider-registry.js +18 -9
  24. package/src/utils/requirement-actions.js +884 -0
  25. package/src/utils/requirements-navigator.js +585 -0
  26. package/src/utils/rui-trui-adapter.js +311 -0
  27. package/src/utils/simple-trui.js +204 -0
  28. package/src/utils/status-helpers-extracted.js +125 -0
  29. package/src/utils/status-helpers.js +107 -0
  30. package/src/utils/trui-debug.js +261 -0
  31. package/src/utils/trui-feedback.js +133 -0
  32. package/src/utils/trui-nav-agents.js +119 -0
  33. package/src/utils/trui-nav-requirements.js +268 -0
  34. package/src/utils/trui-nav-settings.js +157 -0
  35. package/src/utils/trui-nav-specifications.js +139 -0
  36. package/src/utils/trui-navigation.js +303 -0
  37. package/src/utils/trui-provider-manager.js +182 -0
  38. package/src/utils/trui-quick-menu.js +365 -0
  39. package/src/utils/trui-req-actions.js +372 -0
  40. package/src/utils/trui-req-tree.js +534 -0
  41. package/src/utils/trui-specifications.js +359 -0
  42. package/src/utils/trui-text-editor.js +350 -0
  43. package/src/utils/trui-windsurf.js +336 -0
  44. package/src/utils/welcome-screen-extracted.js +135 -0
  45. package/src/utils/welcome-screen.js +134 -0
@@ -40,26 +40,27 @@ const PROVIDER_DEFINITIONS = [
40
40
  defaultModel: 'claude-code-cli',
41
41
  estimatedSpeed: 35000
42
42
  },
43
- {
44
- id: 'cursor',
45
- name: 'Cursor IDE Agent',
46
- type: 'ide',
47
- category: 'ide',
48
- ide: 'cursor',
49
- estimatedSpeed: 60000
50
- },
51
43
  {
52
44
  id: 'windsurf',
53
45
  name: 'Windsurf IDE Agent',
54
46
  type: 'ide',
55
47
  category: 'ide',
56
48
  ide: 'windsurf',
49
+ defaultModel: 'default',
57
50
  subAgents: [
58
51
  { id: 'windsurf-default', name: 'Default', model: 'default' },
59
52
  { id: 'windsurf-swe-1-lite', name: 'SWE-1-lite', model: 'swe-1-lite' }
60
53
  ],
61
54
  estimatedSpeed: 90000
62
55
  },
56
+ {
57
+ id: 'cursor',
58
+ name: 'Cursor IDE Agent',
59
+ type: 'ide',
60
+ category: 'ide',
61
+ ide: 'cursor',
62
+ estimatedSpeed: 60000
63
+ },
63
64
  {
64
65
  id: 'antigravity',
65
66
  name: 'Google Antigravity IDE Agent',
@@ -101,6 +102,14 @@ const PROVIDER_DEFINITIONS = [
101
102
  extension: 'amazon-q',
102
103
  estimatedSpeed: 50000
103
104
  },
105
+ {
106
+ id: 'cline',
107
+ name: 'Cline CLI',
108
+ type: 'direct',
109
+ category: 'llm',
110
+ defaultModel: 'cline-cli',
111
+ estimatedSpeed: 55000
112
+ },
104
113
  {
105
114
  id: 'replit',
106
115
  name: 'Replit Agent',
@@ -181,7 +190,7 @@ function mergeProviderPreferences(autoConfig) {
181
190
  cleanedOrder.push(id);
182
191
  }
183
192
  if (enabled[id] === undefined) {
184
- enabled[id] = true;
193
+ enabled[id] = false;
185
194
  }
186
195
  });
187
196