vibecodingmachine-core 2026.2.26-1739 → 2026.3.9-850

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 (192) hide show
  1. package/package.json +1 -1
  2. package/src/agents/AgentCheckDiscoveryService.js +180 -0
  3. package/src/agents/AgentCheckService.js +18 -261
  4. package/src/agents/AgentCheckStatisticsService.js +195 -0
  5. package/src/agents/EnvironmentConfigurationManager.js +31 -380
  6. package/src/agents/InstallationType.js +19 -6
  7. package/src/agents/SimpleAgentCheckService.js +472 -0
  8. package/src/agents/config-managers/ConfigUtils.js +72 -0
  9. package/src/agents/config-managers/DefaultConfig.js +58 -0
  10. package/src/agents/config-managers/EnvVarLoader.js +66 -0
  11. package/src/agents/config-managers/FileConfigLoader.js +124 -0
  12. package/src/agents/config-managers/TypeConverters.js +61 -0
  13. package/src/agents/config-managers/VariableMappings.js +92 -0
  14. package/src/agents/discovery/AgentDiscoveryService-refactored.js +272 -0
  15. package/src/agents/discovery/AgentDiscoveryService.js +29 -403
  16. package/src/agents/discovery/agent-validator.js +262 -0
  17. package/src/agents/discovery/discovery-results.js +176 -0
  18. package/src/agents/discovery/discovery-scanner.js +268 -0
  19. package/src/agents/discovery/discovery-utils.js +161 -0
  20. package/src/agents/discovery/executable-analyzer.js +290 -0
  21. package/src/agents/discovery/history-manager.js +310 -0
  22. package/src/agents/verification/ResultAnalyzer-refactored.js +341 -0
  23. package/src/agents/verification/ResultAnalyzer.js +30 -431
  24. package/src/agents/verification/analysis-utils.js +310 -0
  25. package/src/agents/verification/batch-analyzer.js +440 -0
  26. package/src/agents/verification/pattern-recognizer.js +369 -0
  27. package/src/agents/verification/report-generator.js +320 -0
  28. package/src/agents/verification/test-analyzer.js +290 -0
  29. package/src/agents/windows/InstallerFactory.js +4 -0
  30. package/src/agents/windows/VSCodeExtensionInstaller.js +404 -0
  31. package/src/analysis/analysis-engine.js +314 -0
  32. package/src/analysis/ast-analyzer.js +342 -0
  33. package/src/analysis/boundary-detector-refactored.js +378 -0
  34. package/src/analysis/boundary-detector.js +200 -603
  35. package/src/analysis/boundary-scanner.js +609 -0
  36. package/src/analysis/boundary-types.js +118 -0
  37. package/src/analysis/boundary-utils.js +293 -0
  38. package/src/analysis/deadline-priority-calculator.js +18 -0
  39. package/src/analysis/detection-methods.js +347 -0
  40. package/src/analysis/importance-priority-calculator.js +18 -0
  41. package/src/analysis/priority/factor-calculators.js +204 -0
  42. package/src/analysis/priority/factor-helpers.js +71 -0
  43. package/src/analysis/priority/priority-constants.js +73 -0
  44. package/src/analysis/priority/priority-factor-calculators.js +301 -0
  45. package/src/analysis/priority/reasons-generator.js +44 -0
  46. package/src/analysis/priority-calculator.js +15 -580
  47. package/src/analysis/strategy-generator.js +16 -66
  48. package/src/analysis/type-priority-calculator.js +18 -0
  49. package/src/analysis/urgency-priority-calculator.js +18 -0
  50. package/src/auto-mode/AutoModeBusinessLogic.js +2 -40
  51. package/src/commands/disable-requirement.js +60 -0
  52. package/src/commands/disable-spec.js +60 -0
  53. package/src/commands/enable-requirement.js +60 -0
  54. package/src/commands/enable-spec.js +60 -0
  55. package/src/commands/registry.js +1 -6
  56. package/src/commands/requirements.js +8 -2
  57. package/src/ide-integration/applescript-manager.cjs +9 -24
  58. package/src/ide-integration/cdp-handlers/chat-reader.js +44 -0
  59. package/src/ide-integration/cdp-handlers/connection-handler.js +88 -0
  60. package/src/ide-integration/cdp-handlers/continuation-handler.js +314 -0
  61. package/src/ide-integration/cdp-handlers/message-submitter.js +75 -0
  62. package/src/ide-integration/cdp-handlers/text-sender.js +138 -0
  63. package/src/ide-integration/cdp-manager.js +28 -573
  64. package/src/ide-integration/claude-code-cli-manager.cjs +48 -12
  65. package/src/ide-integration/ide-openers/claude-opener.js +171 -0
  66. package/src/ide-integration/ide-openers/cursor-opener.js +53 -0
  67. package/src/ide-integration/ide-openers/other-ides-opener.js +230 -0
  68. package/src/ide-integration/ide-openers/vscode-opener.js +147 -0
  69. package/src/ide-integration/macos-ide-manager.js +20 -582
  70. package/src/ide-integration/macos-quota-checker.js +164 -0
  71. package/src/ide-integration/macos-text-sender.js +19 -38
  72. package/src/ide-integration/provider-manager.cjs +52 -7
  73. package/src/index.cjs +6 -0
  74. package/src/index.js +10 -0
  75. package/src/llm/direct-llm-manager.cjs +501 -0
  76. package/src/localization/translations/en-part1.js +363 -0
  77. package/src/localization/translations/en-part2.js +320 -0
  78. package/src/localization/translations/en.js +4 -687
  79. package/src/localization/translations/es-part1.js +363 -0
  80. package/src/localization/translations/es-part2.js +320 -0
  81. package/src/localization/translations/es.js +4 -688
  82. package/src/models/file-analysis-collection.js +139 -0
  83. package/src/models/file-analysis-metrics.js +50 -0
  84. package/src/models/file-analysis.js +15 -262
  85. package/src/models/plan-manager.js +410 -0
  86. package/src/models/refactoring-models.js +380 -0
  87. package/src/models/refactoring-plan-refactored.js +81 -0
  88. package/src/models/refactoring-plan.js +2 -663
  89. package/src/monitoring/alert-system.js +4 -45
  90. package/src/monitoring/continuous-scan-notifications.js +37 -191
  91. package/src/monitoring/notification-handlers/base-handler.js +58 -0
  92. package/src/monitoring/notification-handlers/error-handler.js +36 -0
  93. package/src/monitoring/notification-handlers/index.js +21 -0
  94. package/src/monitoring/notification-handlers/new-violation-handler.js +91 -0
  95. package/src/monitoring/notification-handlers/progress-handler.js +48 -0
  96. package/src/monitoring/notification-handlers/resolved-violation-handler.js +54 -0
  97. package/src/monitoring/notification-handlers/threshold-handler.js +36 -0
  98. package/src/provider-registry.js +8 -0
  99. package/src/refactoring/boundary/boundary-detector-refactored.js +58 -0
  100. package/src/refactoring/boundary/boundary-detector.js +26 -596
  101. package/src/refactoring/boundary/detectors/boundary-analyzers.js +281 -0
  102. package/src/refactoring/boundary/detectors/boundary-core.js +167 -0
  103. package/src/refactoring/boundary/detectors/class-detector.js +247 -0
  104. package/src/refactoring/boundary/detectors/config-detector.js +270 -0
  105. package/src/refactoring/boundary/detectors/constant-detector.js +269 -0
  106. package/src/refactoring/boundary/detectors/function-detector.js +248 -0
  107. package/src/refactoring/boundary/detectors/module-detector.js +249 -0
  108. package/src/refactoring/boundary/detectors/object-detector.js +247 -0
  109. package/src/refactoring/boundary/detectors/type-detectors.js +338 -0
  110. package/src/refactoring/boundary/detectors/utility-detector.js +270 -0
  111. package/src/refactoring/circular-dependency-resolver-original.js +16 -76
  112. package/src/refactoring/code-mover-refactored.js +309 -0
  113. package/src/refactoring/code-mover.js +48 -355
  114. package/src/refactoring/execution-status.js +18 -0
  115. package/src/refactoring/execution-strategies.js +172 -0
  116. package/src/refactoring/file-splitter-core.js +568 -0
  117. package/src/refactoring/file-splitter-types.js +136 -0
  118. package/src/refactoring/file-splitter.js +2 -682
  119. package/src/refactoring/functionality-validator.js +11 -51
  120. package/src/refactoring/import-manager-refactored.js +385 -0
  121. package/src/refactoring/import-manager.js +112 -487
  122. package/src/refactoring/import-models.js +189 -0
  123. package/src/refactoring/import-parser.js +306 -0
  124. package/src/refactoring/move-executor.js +431 -0
  125. package/src/refactoring/move-utils.js +368 -0
  126. package/src/refactoring/operation-executor.js +76 -0
  127. package/src/refactoring/plan-creator.js +36 -0
  128. package/src/refactoring/plan-executor.js +143 -0
  129. package/src/refactoring/plan-validator.js +68 -0
  130. package/src/refactoring/refactoring-executor-result.js +70 -0
  131. package/src/refactoring/refactoring-executor.js +34 -569
  132. package/src/refactoring/refactoring-operation.js +94 -0
  133. package/src/refactoring/refactoring-plan.js +69 -0
  134. package/src/refactoring/refactoring-rollback.js +22 -527
  135. package/src/refactoring/rollback-handlers/RollbackExecutor.js +107 -0
  136. package/src/refactoring/rollback-handlers/RollbackManager.js +265 -0
  137. package/src/refactoring/rollback-handlers/RollbackOperation.js +105 -0
  138. package/src/refactoring/rollback-handlers/RollbackResult.js +109 -0
  139. package/src/refactoring/rollback-handlers/RollbackStatistics.js +77 -0
  140. package/src/refactoring/test-validator.js +32 -448
  141. package/src/refactoring/validation/baseline-runner.js +71 -0
  142. package/src/refactoring/validation/report-generator.js +136 -0
  143. package/src/refactoring/validation/result-comparator.js +92 -0
  144. package/src/refactoring/validation/test-suite.js +59 -0
  145. package/src/refactoring/validation/test-validation-result.js +83 -0
  146. package/src/refactoring/validation/validation-runner.js +95 -0
  147. package/src/refactoring/validation/validation-status.js +18 -0
  148. package/src/rui/commands/AgentCommandParser.js +60 -369
  149. package/src/rui/commands/AgentResponseFormatter.js +7 -47
  150. package/src/rui/commands/parsers/CommandMapper.js +148 -0
  151. package/src/rui/commands/parsers/CommandValidator.js +228 -0
  152. package/src/rui/commands/parsers/ComponentExtractor.js +100 -0
  153. package/src/rui/commands/parsers/TokenParser.js +69 -0
  154. package/src/rui/commands/parsers/tokenizer.js +153 -0
  155. package/src/utils/current-requirement-operations.js +50 -1
  156. package/src/utils/report-generator.js +18 -514
  157. package/src/utils/report-generators/analysis-generator.js +115 -0
  158. package/src/utils/report-generators/base-generator.js +141 -0
  159. package/src/utils/report-generators/compliance-generator.js +41 -0
  160. package/src/utils/report-generators/format-handlers.js +185 -0
  161. package/src/utils/report-generators/refactoring-generator.js +46 -0
  162. package/src/utils/report-generators/validation-generator.js +63 -0
  163. package/src/utils/requirement-enable-disable.js +265 -0
  164. package/src/utils/requirement-helpers/requirement-file-ops.js +69 -1
  165. package/src/utils/requirement-helpers/requirement-mover.js +88 -1
  166. package/src/utils/requirement-helpers.js +5 -2
  167. package/src/utils/smoke-test-cli.js +45 -8
  168. package/src/utils/specification-enable-disable.js +122 -0
  169. package/src/utils/specification-helpers.js +30 -4
  170. package/src/utils/specification-migration.js +5 -5
  171. package/src/utils/test-comparator.js +118 -0
  172. package/src/utils/test-config.js +54 -0
  173. package/src/utils/test-executor.js +133 -0
  174. package/src/utils/test-parser.js +215 -0
  175. package/src/utils/test-runner-baseline.js +63 -0
  176. package/src/utils/test-runner-core.js +98 -0
  177. package/src/utils/test-runner-report.js +39 -0
  178. package/src/utils/test-runner-validation.js +71 -0
  179. package/src/utils/test-runner.js +11 -535
  180. package/src/validation/comparison-analyzer.js +333 -0
  181. package/src/validation/compliance-reporter-new.js +282 -0
  182. package/src/validation/compliance-reporter-refactored.js +344 -0
  183. package/src/validation/compliance-reporter.js +278 -591
  184. package/src/validation/compliance-utils.js +278 -0
  185. package/src/validation/html-generator.js +446 -0
  186. package/src/validation/metrics/category-calculator.js +137 -0
  187. package/src/validation/metrics/metrics-helpers.js +155 -0
  188. package/src/validation/metrics/overview-calculator.js +85 -0
  189. package/src/validation/metrics/overview-metrics.js +41 -0
  190. package/src/validation/metrics/quality-calculator.js +166 -0
  191. package/src/validation/metrics/size-calculator.js +69 -0
  192. package/src/validation/metrics-calculator.js +27 -551
@@ -0,0 +1,363 @@
1
+ module.exports = {
2
+ 'app.name': 'Vibe Coding Machine',
3
+ 'app.version': 'Version {version}',
4
+ 'app.loading': 'Loading...',
5
+ 'app.error': 'Error',
6
+ 'app.success': 'Success',
7
+ 'app.cancel': 'Cancel',
8
+ 'app.save': 'Save',
9
+ 'app.close': 'Close',
10
+ 'app.back': 'Back',
11
+ 'app.next': 'Next',
12
+ 'app.previous': 'Previous',
13
+ 'app.continue': 'Continue',
14
+ 'app.retry': 'Retry',
15
+ 'app.refresh': 'Refresh',
16
+ 'app.restart': 'Restart',
17
+
18
+ // Authentication
19
+ 'auth.login': 'Sign in with Google',
20
+ 'auth.logout': 'Logout',
21
+ 'auth.login.success': 'Successfully authenticated as {email}',
22
+ 'auth.login.already': 'Already authenticated as {email}',
23
+ 'auth.login.failed': 'Login failed',
24
+ 'auth.logout.success': 'Logged out successfully',
25
+ 'auth.logout.failed': 'Logout failed',
26
+ 'auth.not.authenticated': 'Not authenticated',
27
+ 'auth.run.login': 'Run {command} to sign in',
28
+ 'auth.starting.interactive': 'Starting interactive mode...',
29
+
30
+ // User Profile
31
+ 'profile.name': 'Name',
32
+ 'profile.email': 'Email',
33
+ 'profile.tier': 'Tier',
34
+ 'profile.tier.free': 'Free',
35
+ 'profile.tier.premium': 'Premium 🌟',
36
+ 'profile.usage': 'Usage',
37
+ 'profile.daily.usage': 'Daily Usage',
38
+ 'profile.limit': 'Limit',
39
+ 'profile.unlimited': 'Unlimited 🚀',
40
+ 'profile.iterations': 'iterations',
41
+ 'profile.quota.exceeded': 'Daily quota exceeded',
42
+ 'profile.upgrade.suggestion': 'Upgrade to Premium for unlimited usage.',
43
+
44
+ // Status and Progress
45
+ 'status.title': 'Vibe Coding Machine Status',
46
+ 'status.repository': 'Repository',
47
+ 'status.auto.mode': 'Auto mode',
48
+ 'status.running': 'running',
49
+ 'status.stopped': 'stopped',
50
+ 'status.ide': 'IDE',
51
+ 'status.chats': 'Chats',
52
+ 'status.progress': 'Progress',
53
+ 'status.current.status': 'Current Status',
54
+ 'status.unknown': 'UNKNOWN',
55
+ 'status.not.set': 'not set',
56
+ 'status.no.repo': 'No repository path configured',
57
+ 'status.no.requirements': 'No REQUIREMENTS file found.',
58
+ 'status.check.failed': 'Failed to check status',
59
+
60
+ // Setup and Configuration
61
+ 'setup.title': 'Setup',
62
+ 'setup.description': 'We need to download and install several other applications. Vibe Coding Machine will automate as much as it can, but you will need to allow permissions when the computer asks.',
63
+ 'setup.agents': 'Agents (LLMs & IDEs)',
64
+ 'setup.agents.description': 'Select the agents you want to use. You can reorder them in the Settings tab or CLI.',
65
+ 'setup.loading.agents': 'Loading agents...',
66
+ 'setup.permissions': 'Permissions',
67
+ 'setup.accessibility': 'Accessibility',
68
+ 'setup.input.monitoring': 'Input Monitoring',
69
+ 'setup.screen.recording': 'Screen Recording',
70
+ 'setup.open.settings': 'Open Settings',
71
+ 'setup.recheck': 'Re-check',
72
+ 'setup.alias.title': 'Setup Vibe Coding Machine Alias',
73
+ 'setup.alias.detected': 'Detected shell: {shell}',
74
+ 'setup.alias.config': 'Config file: {file}',
75
+ 'setup.alias.exists': '"vcm" alias is already configured!',
76
+ 'setup.alias.confirm': 'Add \'vcm\' alias to {file}?',
77
+ 'setup.alias.cancelled': 'Cancelled.',
78
+ 'setup.alias.added': 'Added alias to {file}',
79
+ 'setup.alias.restart': 'You may need to restart your terminal or run:',
80
+ 'setup.alias.source': 'source {file}',
81
+ 'setup.alias.error': 'Error writing to config file: {error}',
82
+ 'setup.shell.unsupported': 'Could not detect supported shell (zsh, bash, fish). Current shell: {shell}',
83
+ 'setup.manual.alias': 'You can manually add the alias:',
84
+
85
+ // Requirements
86
+ 'requirements.title': 'Project Requirements',
87
+ 'requirements.menu.label': 'Requirements',
88
+ 'requirements.for.computer': 'Requirements for {computerId}',
89
+ 'requirements.search': 'Search requirements...',
90
+ 'requirements.clear.search': 'Clear search',
91
+ 'requirements.project.details': 'Project Details',
92
+ 'requirements.project.name': 'Project Name',
93
+ 'requirements.add.title': 'Add',
94
+ 'requirements.web.app': 'Web Application',
95
+ 'requirements.iphone.app': 'iPhone Application',
96
+ 'requirements.android.app': 'Android Application',
97
+ 'requirements.desktop.app': 'Desktop Application (rare)',
98
+ 'requirements.browser.extension': 'Browser Extension (rare)',
99
+ 'requirements.ai.agent': 'AI Agent',
100
+ 'requirements.features': 'Features',
101
+ 'requirements.login': 'Login',
102
+ 'requirements.user.registration': 'User Registration',
103
+ 'requirements.password.reset': 'Password Reset',
104
+ 'requirements.user.profile': 'User Profile',
105
+ 'requirements.search': 'Search',
106
+ 'requirements.notifications': 'Notifications',
107
+ 'requirements.file.upload': 'File Upload',
108
+ 'requirements.api': 'API',
109
+ 'requirements.development': 'Development',
110
+ 'requirements.unit.tests': 'Unit tests (strongly suggest keeping these)',
111
+ 'requirements.browser.tests': 'Browser based tests (strongly suggest keeping these)',
112
+ 'requirements.git': 'git (revision control)',
113
+ 'requirements.description': 'Description',
114
+ 'requirements.description.help': 'Explain in as much detail as you can (the more detailed the better results you will get) like you are explaining to your grandma. This will be used to create the list of requirements for Vibe Coding Machine to implement. You will be able to review the generated requirements and modify them directly, or add more information to modify them via chat, but best to get it as close as possible the first time around. You may want to use the microphone so you don\'t have to type so much. Don\'t worry about punctuation. Enjoy!',
115
+ 'requirements.description.placeholder': 'Describe your project in detail...',
116
+ 'requirements.advertising': 'Advertising your product',
117
+ 'requirements.budget': 'Budget: ($)',
118
+ 'requirements.budget.placeholder': 'Enter budget amount',
119
+ 'requirements.monetize': 'Monetize',
120
+ 'requirements.ads': 'Ads',
121
+ 'requirements.subscription.tiers': 'Subscription tiers',
122
+ 'requirements.target': 'Target: ($)',
123
+ 'requirements.target.placeholder': 'e.g., 20000',
124
+ 'requirements.target.per.year': 'per year',
125
+ 'requirements.need.information': 'Requirements that need information',
126
+ 'requirements.need.information.description': 'These requirements need your input to proceed. Please review the options and select how you\'d like to continue.',
127
+ 'requirements.need.information.none': 'No requirements need information at this time.',
128
+ 'requirements.todo': 'TODO',
129
+ 'requirements.add.new': 'Add New Requirement',
130
+ 'requirements.add.multiple': 'Add Multiple Requirements',
131
+ 'requirements.name': 'Requirement Name',
132
+ 'requirements.name.placeholder': 'Enter requirement name...',
133
+ 'requirements.details': 'Requirement Details',
134
+ 'requirements.details.placeholder': 'Enter requirement details...',
135
+ 'requirements.save': 'Save Requirement',
136
+ 'requirements.save.multiple': 'Save Requirements',
137
+ 'requirements.describe.multiple': 'Describe Requirements',
138
+ 'requirements.describe.multiple.help': 'Describe in a few paragraphs what requirements you want to add. The AI will create individual requirements from your description. Note: Requirements are taken from the top of the list, so new ones added at the top will be worked on first.',
139
+ 'requirements.placement': 'Where to add these requirements',
140
+ 'requirements.placement.top': 'Top of list (will be worked on first)',
141
+ 'requirements.placement.bottom': 'Bottom of list (will be worked on last)',
142
+ 'requirements.none.found': 'No existing requirements found.',
143
+ 'requirements.to.verify': 'TO VERIFY (Verified by AI screenshot. Needs Human to Verify)',
144
+ 'requirements.completed.none': 'No completed requirements found.',
145
+ 'requirements.verified': 'VERIFIED',
146
+ 'requirements.changelog.none': 'No CHANGELOG entries found.',
147
+ 'requirements.save.changes': 'Save Requirements',
148
+ 'requirements.cancel.changes': 'Cancel',
149
+
150
+ // Settings
151
+ 'settings.title': 'Settings',
152
+ 'settings.description': 'Configure Vibe Coding Machine settings and preferences.',
153
+ 'settings.stop.after.max.chats': 'Stop after a maximum number of chats',
154
+ 'settings.max.chats': 'Maximum Chats',
155
+ 'settings.workflow.stages': 'Workflow Stages',
156
+
157
+ // Progress
158
+ 'progress.title': 'Progress',
159
+ 'progress.recent.logs': 'Recent Logs',
160
+ 'progress.no.logs': 'No logs available.',
161
+
162
+ // Mobile
163
+ 'mobile.title': 'Mobile',
164
+
165
+ // Console
166
+ 'console.title': 'Console',
167
+
168
+ // Auto Mode
169
+ 'auto.start': 'Start Auto',
170
+ 'auto.stop': 'Stop Auto',
171
+ 'auto.mode.on': 'Auto Mode On',
172
+ 'auto.mode.off': 'Auto Mode Off',
173
+
174
+ // Package Management
175
+ 'package.label': 'Package',
176
+ 'package.launch': 'Launch',
177
+ 'package.tests': 'Tests',
178
+ 'package.run.tests': 'Run Tests',
179
+
180
+ // IDE Names
181
+ 'ide.cline': 'Cline IDE',
182
+ 'ide.cursor': 'Cursor',
183
+ 'ide.vscode': 'VS Code',
184
+ 'ide.windsurf': 'Windsurf',
185
+
186
+ // Logs
187
+ 'logs.recent': 'Recent Logs',
188
+ 'logs.none': 'No logs available.',
189
+
190
+ // Errors and Messages
191
+ 'error.repo.path': 'No repository path configured',
192
+ 'error.requirements.file': 'No REQUIREMENTS file found',
193
+ 'error.status.check': 'Failed to check status: {error}',
194
+ 'error.config.write': 'Error writing to config file: {error}',
195
+
196
+ // CLI Specific
197
+ 'cli.alias.manual': 'alias vcm="vibecodingmachine"',
198
+
199
+ // Quota and Usage
200
+ 'quota.overall': 'Overall Quota',
201
+ 'quota.remaining': 'Loading...',
202
+ 'quota.resets.in': 'Resets in',
203
+ 'quota.exceeded.warning': '{reason}',
204
+
205
+ // Tabs
206
+ 'tab.setup': 'Setup',
207
+ 'tab.requirements': 'Requirements',
208
+ 'tab.settings': 'Settings',
209
+ 'tab.progress': 'Progress',
210
+ 'tab.mobile': 'Mobile',
211
+ 'tab.console': 'Console',
212
+
213
+ // CLI Commands
214
+ 'cli.repo.manage': 'Manage repository settings',
215
+ 'cli.repo.set': 'Set the active repository path',
216
+ 'cli.repo.get': 'Get the current repository path',
217
+ 'cli.repo.init': 'Initialize Vibe Coding Machine in current directory',
218
+ 'cli.auto.start': 'Start autonomous development mode',
219
+ 'cli.auto.direct': 'Start autonomous mode with direct LLM API calls (recommended)',
220
+ 'cli.auto.stop': 'Stop autonomous development mode',
221
+ 'cli.auto.status': 'Check autonomous mode status',
222
+ 'cli.auto.config': 'Configure auto mode settings',
223
+ 'cli.auto.agents': 'List available agents and their quota status',
224
+ 'cli.req.list': 'List all requirements',
225
+ 'cli.req.add': 'Add a new requirement',
226
+ 'cli.req.current': 'Show current requirement being worked on',
227
+ 'cli.req.next': 'Move to next requirement',
228
+ 'cli.req.edit': 'Open requirements file in editor',
229
+ 'cli.req.watch': 'Watch requirements file for changes',
230
+ 'cli.req.rename': 'Rename requirement and optionally update description',
231
+ 'cli.ide.list': 'List available IDEs',
232
+ 'cli.ide.open': 'Open IDE with current repository',
233
+ 'cli.ide.send': 'Send message to IDE AI chat',
234
+ 'cli.status': 'Show Vibe Coding Machine status and progress',
235
+ 'cli.progress': 'Show development progress',
236
+ 'cli.logs': 'Show recent activity logs',
237
+ 'cli.setup': 'Setup "vcm" alias for shell',
238
+ 'cli.auth.login': 'Login with Google',
239
+ 'cli.auth.logout': 'Logout',
240
+ 'cli.auth.status': 'Check authentication status',
241
+ 'cli.computers': 'List all registered computers',
242
+ 'cli.computer.status': 'Show detailed status of a specific computer',
243
+ 'cli.computer.register': 'Register current computer with focus area',
244
+ 'cli.computer.focus': 'View or update focus area for current computer',
245
+ 'cli.computer.requirements': 'View requirements for another computer',
246
+ 'cli.computer.add.requirement': 'Add requirement to another computer',
247
+ 'cli.sync.now': 'Trigger immediate sync',
248
+ 'cli.sync.status': 'Show sync status and statistics',
249
+ 'cli.sync.queue': 'View pending changes in offline queue',
250
+ 'cli.sync.force': 'Force sync even if offline',
251
+ 'cli.sync.history': 'View sync history',
252
+ 'cli.interactive': 'Start interactive mode',
253
+
254
+ // CLI Messages
255
+ 'cli.auth.opening.browser': 'Opening browser for authentication...',
256
+ 'cli.auth.success': 'Authentication successful!',
257
+ 'cli.auth.failed': 'Authentication failed',
258
+ 'cli.compliance.failed': 'Compliance check failed. Exiting.',
259
+ 'cli.error': 'Error',
260
+
261
+ // Computer Management Commands
262
+ 'cli.computers.list': 'List all registered computers',
263
+ 'cli.computer.status.show': 'Show detailed status of a specific computer',
264
+ 'cli.computer.register': 'Register current computer with focus area',
265
+ 'cli.computer.focus.view': 'View or update focus area for current computer',
266
+ 'cli.computer.requirements.view': 'View requirements for another computer',
267
+ 'cli.computer.requirement.add': 'Add requirement to another computer',
268
+
269
+ // Sync Management Commands
270
+ 'cli.sync.trigger': 'Trigger immediate sync',
271
+ 'cli.sync.status.show': 'Show sync status and statistics',
272
+ 'cli.sync.queue.view': 'View pending changes in offline queue',
273
+ 'cli.sync.force.sync': 'Force sync even if offline',
274
+ 'cli.sync.history.view': 'View sync history',
275
+
276
+ // Interactive Mode
277
+ 'interactive.auto.mode': 'Auto Mode',
278
+ 'interactive.auto.stopped': 'Stopped',
279
+ 'interactive.auto.running': 'Running',
280
+ 'interactive.stop.condition': 'Stop Condition',
281
+ 'interactive.stop.after': 'Stop after {count}',
282
+ 'interactive.never.stop': 'Never Stop',
283
+ 'interactive.first.agent': 'First Agent',
284
+ 'interactive.requirements': 'Requirements',
285
+ 'interactive.todo': 'TODO',
286
+ 'interactive.to.verify': 'TO VERIFY',
287
+ 'interactive.verified': 'VERIFIED',
288
+ 'interactive.hostname.enabled': 'Use Hostname in Req File',
289
+ 'interactive.hostname.disabled': 'DISABLED',
290
+ 'interactive.configure.stages': 'Configure Stages',
291
+ 'interactive.stages': 'stages',
292
+ 'interactive.cloud.sync': 'Cloud Sync',
293
+ 'interactive.online': 'Online',
294
+ 'interactive.offline': 'Offline',
295
+ 'interactive.next.todo': 'Next TODO Requirement',
296
+ 'interactive.view.computers': 'View All Computers',
297
+ 'interactive.sync.now': 'Sync Now',
298
+ 'interactive.logout': 'Logout',
299
+ 'interactive.exit': 'Exit',
300
+ 'interactive.feedback': 'Feedback',
301
+ 'interactive.feedback.title': 'Vibe Coding Machine Feedback',
302
+ 'interactive.feedback.instructions': 'Your feedback helps us make Vibe Coding Machine better! Please let us know what you think.',
303
+ 'interactive.feedback.email': 'Email (optional):',
304
+ 'interactive.feedback.comment': 'Comment:',
305
+ 'interactive.feedback.comment.instructions': 'Enter your comments below (press Enter twice on an empty line to finish):',
306
+ 'interactive.feedback.comment.required': 'Comment is required',
307
+ 'interactive.feedback.submitting': 'Submitting feedback',
308
+ 'interactive.feedback.success': 'Feedback submitted successfully!',
309
+ 'interactive.feedback.error': 'Failed to submit feedback',
310
+ 'interactive.feedback.error.network': 'Network error - please check your internet connection or try again later.',
311
+ 'interactive.feedback.cancelled': 'Feedback cancelled',
312
+ 'interactive.initialize': 'Initialize repository (.vibecodingmachine)',
313
+ 'interactive.goodbye': 'Goodbye! Be dreaming about what requirements to add!',
314
+ 'interactive.confirm.exit': 'Are you sure you want to exit? (Y/n/x)',
315
+
316
+ // Requirements Navigator
317
+ 'requirements.navigator.title': 'Requirements Navigator',
318
+ 'requirements.navigator.instructions': 'Use ↑/↓ to navigate, →/Enter to expand/view questions, ← to go back, R to Remove, J to move down, K to move up, U Promote (👍), D Demote/Move to TODO (👎), X/ESC to Exit.',
319
+ 'requirements.navigator.basic.instructions': 'Use ↑/↓ to navigate, →/Enter/Space to expand, ←/ESC to collapse/go back',
320
+ 'requirements.add.new': 'Add new requirement',
321
+ 'requirements.add.multiple': 'Add multiple requirements',
322
+ 'requirements.section.verified': 'VERIFIED',
323
+ 'requirements.section.to.verify': 'TO VERIFY',
324
+ 'requirements.section.todo': 'TODO',
325
+
326
+ // Provider Configuration
327
+ 'provider.title': 'Provider Order & Availability',
328
+ 'provider.overall.quota': 'Overall Quota',
329
+ 'provider.available': 'Available',
330
+ 'provider.resets.in': 'Resets in',
331
+ 'provider.rate.limit.resets': 'Rate limit resets in',
332
+ 'provider.instructions': '↑/↓ move selection j/k reorder e enable d disable i install c check enabled agents Space toggle Enter save/select Esc cancel',
333
+ 'provider.status.available': 'Available',
334
+ 'provider.status.quota.infinite': 'Quota: Infinite',
335
+ 'provider.status.available.resets': 'available • resets in',
336
+ 'provider.no.pending.changes': 'No pending changes.',
337
+ 'provider.pending.changes': 'Pending changes will be saved on Enter...',
338
+
339
+ // Interactive Navigation
340
+ 'interactive.navigation.help': '↑/↓ to navigate, →/Enter to select, ←/X to exit, or press a letter ({letters})',
341
+
342
+ // Requirement File Labels
343
+ 'requirement.label.package': 'PACKAGE:',
344
+ 'requirement.label.status': 'STATUS:',
345
+ 'requirement.label.package.es': 'PAQUETE:',
346
+ 'requirement.label.status.es': 'ESTADO:',
347
+
348
+ // Welcome Banner
349
+ 'banner.tagline': 'Big Dreams + AI + VibeCodingMachine.com = Your money making apps',
350
+
351
+ // System Information
352
+ 'system.repo': 'Repo:',
353
+ 'system.git.branch': 'Branch:',
354
+ 'system.git.status.dirty': '(modified)',
355
+ 'system.computer.name': 'Computer Name:',
356
+
357
+ // Configuration Dialogs
358
+ 'config.stop.condition.title': '⚙️ Configure Stop Condition',
359
+ 'config.max.chats.prompt': 'Max chats (0 for never stop):',
360
+ 'config.stop.condition.updated': 'Stop condition updated:',
361
+ 'config.stop.after': 'Stop after {count}',
362
+ 'config.never.stop': 'Never Stop',
363
+ };