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,320 @@
1
+ module.exports = {
2
+ // Auto Mode
3
+ 'auto.starting': '🚀 Starting Auto Mode...',
4
+ 'auto.direct.title': '🤖 Vibe Coding Machine - Direct API Auto Mode',
5
+ 'auto.repository': 'Repository:',
6
+ 'auto.fatal.error': '✗ Fatal Error:',
7
+
8
+ // Auto Direct - Status and Requirement Management
9
+ 'auto.direct.status.update.warning': 'Warning: Could not update status in requirements file:',
10
+ 'auto.direct.requirement.read.error': 'Error reading requirement:',
11
+ 'auto.direct.requirement.count.error': 'Error counting requirements:',
12
+ 'auto.direct.requirement.not.found.todo': 'Could not find requirement "{requirement}" in TODO section',
13
+ 'auto.direct.requirement.no.more.todo': 'No more requirements in TODO section',
14
+ 'auto.direct.verify.section.create.failed': 'Failed to create TO VERIFY BY HUMAN section',
15
+ 'auto.direct.verify.section.wrong.insert': 'ERROR: Attempted to insert into VERIFIED section instead of TO VERIFY',
16
+ 'auto.direct.requirement.move.verify.error': 'Error moving requirement to TO VERIFY:',
17
+ 'auto.direct.requirement.not.found': 'Could not find requirement',
18
+ 'auto.direct.requirement.move.error': 'Error moving requirement:',
19
+
20
+ // Auto Direct - Provider Messages
21
+ 'auto.direct.provider.none.available': 'No providers available. Configure API keys or IDE agents first.',
22
+ 'auto.direct.provider.all.disabled': 'All providers are disabled. Enable at least one provider in the Agent menu.',
23
+ 'auto.direct.provider.all.rate.limited': 'All enabled providers are currently rate limited.',
24
+ 'auto.direct.provider.enable.tip': 'Tip: Enable additional providers in the Agent menu for more fallbacks.',
25
+ 'auto.direct.provider.launching': 'Launching {provider} fallback (auto:start)...',
26
+ 'auto.direct.provider.quota.exhausted': '{provider} quota exhausted, switching to next IDE',
27
+ 'auto.direct.provider.completed': 'IDE provider completed iteration',
28
+
29
+ // Auto Direct - File Search
30
+ 'auto.direct.files.searching': 'Searching for relevant files',
31
+ 'auto.direct.files.trying.exact': 'Trying exact match',
32
+ 'auto.direct.files.trying.fuzzy': 'Trying fuzzy match',
33
+ 'auto.direct.files.trying.partial': 'Trying partial match',
34
+ 'auto.direct.files.trying.pattern': 'Trying pattern match',
35
+ 'auto.direct.files.error': 'Error finding files:',
36
+ 'auto.direct.files.found': 'Found {count} relevant file(s)',
37
+ 'auto.direct.files.none.found': 'No matching files found',
38
+
39
+ // Auto Direct - IDE Agent Interaction
40
+ 'auto.direct.ide.waiting': 'Waiting for IDE agent to complete...',
41
+ 'auto.direct.ide.monitoring': 'Monitoring: {filename}',
42
+ 'auto.direct.ide.timeout': 'Timeout: {minutes} minutes',
43
+ 'auto.direct.ide.prompt.sent': 'Prompt sent to IDE agent successfully',
44
+ 'auto.direct.ide.skipping.context': 'Skipping direct file context - delegating to IDE agent.',
45
+ 'auto.direct.ide.detected': '{ide} detected - using AppleScript for reliable text sending',
46
+ 'auto.direct.ide.launching': 'Launching {ide}...',
47
+ 'auto.direct.ide.starting': '{ide} may still be starting up...',
48
+ 'auto.direct.ide.sent.applescript': 'Successfully sent message to {ide} via AppleScript',
49
+ 'auto.direct.ide.autonomous.started': 'Autonomous mode started and initial message sent',
50
+ 'auto.direct.ide.still.waiting': 'Still waiting... ({elapsed}m elapsed, {remaining}m remaining)',
51
+ 'auto.direct.ide.timeout.after': 'Timeout after {minutes} minutes',
52
+
53
+ // Auto Mode - IDE Status
54
+ 'auto.ide.is.installed': '{ide} is installed',
55
+ 'auto.ide.is.running': '{ide} is already running (PID: {pid})',
56
+ 'auto.ide.label': 'IDE:',
57
+ 'auto.max.chats.label': 'Max chats:',
58
+ 'auto.coding.autonomously': 'Vibe Coding Machine is now coding autonomously',
59
+ 'auto.starting.mode': 'Starting autonomous mode...',
60
+
61
+ // Auto Direct - Requirement Display
62
+ 'auto.direct.requirement.header': 'REQUIREMENT {current} of {total}',
63
+ 'auto.direct.requirement.working.on': 'Working on:',
64
+
65
+ // Workflow Stages
66
+ 'workflow.stage.prepare': 'PREPARE',
67
+ 'workflow.stage.reproduce': 'REPRODUCE',
68
+ 'workflow.stage.create.unit.test': 'CREATE UNIT TEST',
69
+ 'workflow.stage.act': 'ACT',
70
+ 'workflow.stage.clean.up': 'CLEAN UP',
71
+ 'workflow.stage.verify': 'VERIFY',
72
+ 'workflow.stage.run.unit.tests': 'RUN UNIT TESTS',
73
+ 'workflow.stage.done': 'DONE',
74
+
75
+ // Workflow Stages Configuration
76
+ 'workflow.config.title': 'Configure Workflow Stages',
77
+ 'workflow.config.description': 'Select the stages you want to include in the auto-mode workflow.',
78
+ 'workflow.config.order.note': 'Stages will be executed in the order shown.',
79
+ 'workflow.config.instructions': 'Use arrow keys to navigate, <space> to select, <a> to toggle all, <enter> to confirm.',
80
+ 'workflow.config.select.prompt': 'Select stages:',
81
+ 'workflow.config.validation.error': 'You must select at least one stage.',
82
+ 'workflow.config.updated': 'Stages configuration updated:',
83
+
84
+ // Interactive Menu
85
+ 'interactive.press.enter.return': 'Press Enter to return to menu...',
86
+ 'interactive.press.enter.continue': 'Press Enter to continue...',
87
+ 'interactive.select.option': 'Select an option:',
88
+ 'interactive.back.to.menu': '← Back to Main Menu',
89
+ 'interactive.logout.success': 'Logged out successfully!',
90
+ 'interactive.logout.login.again': 'Run "vcm auth:login" or "vcm" to login again.',
91
+ 'interactive.logout.failed': 'Logout failed:',
92
+ 'interactive.press.any.key': 'Press any key to continue...',
93
+ 'interactive.press.any.key.menu': 'Press any key to continue to the main menu...',
94
+ 'interactive.press.any.key.return': 'Press any key to return to main menu...',
95
+ 'interactive.press.any.key.back': 'Press any key to go back...',
96
+ 'auto.press.any.key.stop': 'Press any key to stop, or wait 10 seconds to continue...',
97
+
98
+ // Cloud Sync Management
99
+ 'cloud.sync.title': 'Cloud Sync Management',
100
+ 'cloud.sync.not.configured': 'Cloud sync is not configured.',
101
+ 'cloud.sync.setup.title': 'To set up cloud sync:',
102
+ 'cloud.sync.setup.step1': 'Run:',
103
+ 'cloud.sync.setup.step2': 'Add AWS configuration to your .env file',
104
+ 'cloud.sync.setup.step3': 'Restart vcm',
105
+ 'cloud.sync.setup.info': 'For more info, see:',
106
+ 'cloud.sync.menu.view.computers': '📊 View All Computers',
107
+ 'cloud.sync.menu.manage.remote': '🖥️ Manage Another Computer\'s Requirements',
108
+ 'cloud.sync.menu.sync.now': '🔄 Sync Now',
109
+ 'cloud.sync.menu.sync.status': '📈 Sync Status',
110
+ 'cloud.sync.menu.sync.history': '📜 Sync History',
111
+ 'cloud.sync.menu.offline.queue': '📋 View Offline Queue',
112
+ 'cloud.sync.menu.register': '🖥️ Register This Computer',
113
+ 'cloud.sync.menu.update.focus': '🎯 Update Focus Area',
114
+
115
+ // Computers Management
116
+ 'computers.no.computers': 'No computers registered yet.',
117
+ 'computers.will.appear': 'Computers will appear here once they sync for the first time.',
118
+ 'computers.table.computer': 'Computer',
119
+ 'computers.table.focus': 'Focus Area',
120
+ 'computers.table.status': 'Status',
121
+ 'computers.table.requirement': 'Current Requirement',
122
+ 'computers.table.progress': 'Progress',
123
+ 'computers.table.last.sync': 'Last Sync',
124
+ 'computers.status.active': 'active',
125
+ 'computers.status.idle': 'idle',
126
+ 'computers.status.error': 'error',
127
+ 'computers.status.offline': 'offline',
128
+ 'computers.status.unknown': 'unknown',
129
+ 'computers.never': 'never',
130
+ 'computers.total': 'Total: {count} computers',
131
+ 'computers.active': 'Active: {count}',
132
+ 'computers.idle': 'Idle: {count}',
133
+ 'computers.error': 'Error: {count}',
134
+ 'computers.fetch.failed': 'Failed to fetch computers:',
135
+ 'computers.not.found': 'Computer \'{id}\' not found.',
136
+ 'computers.details.title': 'Computer Details',
137
+ 'computers.details.hostname': 'Hostname:',
138
+ 'computers.details.id': 'Computer ID:',
139
+ 'computers.details.focus': 'Focus Area:',
140
+ 'computers.details.os': 'OS:',
141
+ 'computers.details.status': 'Status:',
142
+ 'computers.details.last.sync': 'Last Sync:',
143
+ 'computers.work.title': 'Current Work',
144
+ 'computers.work.requirement': 'Requirement:',
145
+ 'computers.work.progress': 'Progress:',
146
+ 'computers.work.time.active': 'Time Active:',
147
+ 'computers.work.ide': 'IDE:',
148
+ 'computers.work.none': 'None',
149
+ 'computers.stats.title': 'Statistics',
150
+ 'computers.stats.total': 'Total Requirements:',
151
+ 'computers.stats.completed': 'Completed:',
152
+ 'computers.stats.in.progress': 'In Progress:',
153
+ 'computers.stats.to.verify': 'To Verify:',
154
+ 'computers.stats.completion.rate': 'Completion Rate:',
155
+ 'computers.status.fetch.failed': 'Failed to fetch computer status:',
156
+ 'computers.register.success': 'Computer registered successfully!',
157
+ 'computers.register.id': 'Computer ID:',
158
+ 'computers.register.hostname': 'Hostname:',
159
+ 'computers.register.focus': 'Focus Area:',
160
+ 'computers.register.failed': 'Failed to register computer:',
161
+ 'computers.not.registered': 'Computer not registered. Registering now...',
162
+ 'computers.focus.updated': 'Focus area updated!',
163
+ 'computers.focus.computer': 'Computer:',
164
+ 'computers.focus.new': 'New Focus:',
165
+ 'computers.focus.update.failed': 'Failed to update focus area:',
166
+ 'computers.time.days.ago': '{count}d ago',
167
+ 'computers.time.hours.ago': '{count}h ago',
168
+ 'computers.time.minutes.ago': '{count}m ago',
169
+ 'computers.time.seconds.ago': '{count}s ago',
170
+ 'computers.no.focus': 'No focus',
171
+ 'computers.select.to.manage': 'Select computer to manage:',
172
+ 'computers.cancel': '← Cancel',
173
+ 'computers.register.focus.prompt': 'Enter focus area for this computer:',
174
+ 'computers.register.focus.default': 'General Development',
175
+
176
+ // Sync Management
177
+ 'sync.starting': 'Starting sync...',
178
+ 'sync.complete': 'Sync complete!',
179
+ 'sync.failed': 'Sync failed:',
180
+ 'sync.tip.aws': 'Tip: Check AWS credentials and DynamoDB table configuration.',
181
+ 'sync.last.sync': 'Last Sync:',
182
+ 'sync.remote.changes': 'Remote Changes:',
183
+ 'sync.local.changes': 'Local Changes:',
184
+ 'sync.conflicts': 'Conflicts:',
185
+ 'sync.queued.changes': 'Queued Changes:',
186
+ 'sync.status.title': 'Sync Status',
187
+ 'sync.connection': 'Connection:',
188
+ 'sync.status': 'Status:',
189
+ 'sync.status.online': 'Online',
190
+ 'sync.status.offline': 'Offline',
191
+ 'sync.status.syncing': 'Syncing...',
192
+ 'sync.status.idle': 'Idle',
193
+ 'sync.never': 'Never',
194
+ 'sync.conflict.mode': 'Conflict Mode:',
195
+ 'sync.computer.id': 'Computer ID:',
196
+ 'sync.recent.events': 'Recent Sync Events',
197
+ 'sync.status.failed': 'Failed to get sync status:',
198
+ 'sync.queue.no.pending': 'No pending changes in queue.',
199
+ 'sync.queue.title': 'Offline Queue ({count} changes)',
200
+ 'sync.queue.header.number': '#',
201
+ 'sync.queue.header.type': 'Type',
202
+ 'sync.queue.header.requirement': 'Requirement',
203
+ 'sync.queue.header.timestamp': 'Timestamp',
204
+ 'sync.queue.will.sync': 'These changes will be synced when connection is restored.',
205
+ 'sync.queue.commands': 'Commands:',
206
+ 'sync.queue.force.now': 'Force sync now',
207
+ 'sync.queue.sync.online': 'Sync when online',
208
+ 'sync.queue.view.failed': 'Failed to view queue:',
209
+ 'sync.force.starting': 'Forcing sync (ignoring offline status)...',
210
+ 'sync.force.complete': 'Force sync complete!',
211
+ 'sync.force.failed': 'Force sync failed:',
212
+ 'sync.force.unreachable': 'This usually means the server is unreachable.',
213
+ 'sync.history.no.events': 'No sync history available.',
214
+ 'sync.history.title': 'Sync History (last {count} events)',
215
+ 'sync.history.header.time': 'Time',
216
+ 'sync.history.header.type': 'Type',
217
+ 'sync.history.header.details': 'Details',
218
+ 'sync.history.view.failed': 'Failed to view history:',
219
+ 'sync.event.resolved': 'Resolved: {id}',
220
+ 'sync.event.remote.local': 'Remote: {remote}, Local: {local}',
221
+ 'sync.event.applied': 'Applied: {id}',
222
+ 'sync.event.pushed': 'Pushed: {id}',
223
+
224
+ // Auto Direct - Status Display
225
+ 'auto.direct.status.coding': 'Vibe Coding Machine is now coding autonomously',
226
+ 'auto.direct.status.max.chats': 'Max chats: {count}',
227
+ 'auto.direct.status.quota.limit': 'Overall quota limit reached. Switching to IDE agents for remaining iterations.',
228
+ 'auto.direct.status.timeout': 'Timeout waiting for requirement completion',
229
+ 'auto.direct.status.verification.pending': 'Requirement moved to TO VERIFY BY HUMAN section',
230
+ 'auto.direct.status.verification.complete': 'Requirement verified and completed',
231
+ 'auto.direct.status.verification.failed': 'Verification failed',
232
+
233
+ // Auto Direct - Requirement Display
234
+ 'auto.direct.requirement.title': 'REQUIREMENT:',
235
+ 'auto.direct.requirement.current': 'Current requirement:',
236
+ 'auto.direct.requirement.next': 'Next TODO Requirement',
237
+ 'auto.direct.requirement.todo.count': 'TODO: {count}',
238
+ 'auto.direct.requirement.verify.count': 'TO VERIFY: {count}',
239
+ 'auto.direct.requirement.verified.count': 'VERIFIED: {count}',
240
+
241
+ // Auto Direct - Code Processing
242
+ 'auto.direct.code.applying.changes': 'Applying code changes...',
243
+ 'auto.direct.code.change.applied': 'Applied change to {file}',
244
+ 'auto.direct.code.change.failed': 'Failed to apply change to {file}',
245
+ 'auto.direct.code.no.changes': 'No code changes to apply',
246
+ 'auto.direct.code.processing.response': 'Processing LLM response...',
247
+
248
+ // Auto Direct - Summary and Completion
249
+ 'auto.direct.summary.title': 'Summary',
250
+ 'auto.direct.summary.iterations': 'Iterations completed: {count}',
251
+ 'auto.direct.summary.requirements.completed': 'Requirements completed: {count}',
252
+ 'auto.direct.summary.time.elapsed': 'Time elapsed: {time}',
253
+ 'auto.direct.completion.summary': 'Requirement completion summary',
254
+ 'auto.direct.summary.total.requirements': 'Total requirements:',
255
+ 'auto.direct.summary.completed': 'Completed:',
256
+ 'auto.direct.summary.failed': 'Failed:',
257
+ 'auto.direct.summary.provider': 'Provider:',
258
+ 'auto.direct.summary.files.modified': 'Files modified:',
259
+ 'auto.direct.summary.status': 'Status:',
260
+ 'auto.direct.summary.time': 'Time:',
261
+ 'auto.direct.summary.moving.to.verify': 'Moving to TO VERIFY BY HUMAN',
262
+ 'auto.direct.summary.final.message': '{count} requirement{plural} moved to TO VERIFY BY HUMAN!',
263
+ 'auto.direct.requirement.completed': 'REQUIREMENT COMPLETED!',
264
+ 'auto.direct.no.repository.configured': 'No repository configured',
265
+ 'auto.direct.no.more.todo.items': 'No more TODO items found in REQUIREMENTS file',
266
+ 'auto.direct.section.not.found': 'Could not find relevant section in {file}',
267
+ 'auto.direct.requirement.may.be.lost': 'Requirement may have been lost. Please check the requirements file.',
268
+ 'auto.direct.verification.still.pending': 'Requirement still pending verification in REQUIREMENTS file',
269
+
270
+ // Auto Direct - Configuration
271
+ 'auto.direct.config.repo.not.set': 'Run: vcm repo:set <path>',
272
+ 'auto.direct.config.max.iterations': 'Max iterations:',
273
+ 'auto.direct.config.restart.error': 'Error restarting CLI:',
274
+
275
+ // Auto Direct - Activity Log
276
+ 'auto.direct.activity.recent': 'Recent Activity:',
277
+ 'auto.direct.activity.none': 'No items to display.',
278
+ 'auto.direct.activity.press.key': 'Press any key to return to main menu...',
279
+
280
+ // Interactive Mode - Additional UI Strings
281
+ 'interactive.header.title': 'Vibe Coding Machine',
282
+ 'interactive.header.version': 'Version {version}',
283
+ 'interactive.chats.label': 'Chats:',
284
+ 'interactive.changelog.title': '(From CHANGELOG.md - read only)',
285
+ 'interactive.changelog.press.key': 'Press any key to go back...',
286
+ 'interactive.edit.responses': '✍️ Edit Clarification Responses',
287
+ 'interactive.responses.saved': '✓ Responses saved!',
288
+ 'interactive.moved.to.todo': '✓ Moved to TODO!',
289
+ 'interactive.ai.found.label': 'AI Found in Codebase:',
290
+ 'interactive.clarifying.questions': 'Clarifying Questions:',
291
+ 'interactive.what.to.do': 'What would you like to do?',
292
+ 'interactive.movement.confirm': 'Moved "{requirement}" to {section}',
293
+ 'interactive.edit.requirement.title': 'Edit Requirement',
294
+ 'interactive.edit.requirement.current': 'Current: {requirement}',
295
+ 'interactive.edit.requirement.prompt': 'Enter new text (or press Enter to keep current):',
296
+ 'interactive.requirement.renamed': '✓ Requirement renamed/updated',
297
+ 'interactive.requirement.not.found.rename': 'Could not find requirement to rename',
298
+ 'interactive.requirement.not.found.delete': 'Could not find requirement to delete',
299
+ 'interactive.requirement.not.found.recycle': 'Could not find requirement to recycle',
300
+ 'interactive.error.invalid.input': 'Invalid input. Please try again.',
301
+ 'interactive.description.prompt': 'Enter description (or press Enter to skip):',
302
+ 'interactive.adding.multiple': 'Adding multiple requirements:',
303
+ 'interactive.no.requirements.file': 'No requirements file found.',
304
+
305
+ // Provider and IDE Display Names
306
+ 'provider.groq.name': 'Groq (Cloud - Very Fast)',
307
+ 'provider.anthropic.name': 'Anthropic (Claude Sonnet 4)',
308
+ 'provider.bedrock.name': 'AWS Bedrock (Claude)',
309
+ 'provider.openai.name': 'OpenAI (GPT-4)',
310
+ 'provider.deepseek.name': 'DeepSeek',
311
+ 'provider.google.name': 'Google (Gemini)',
312
+ 'provider.openrouter.name': 'OpenRouter',
313
+ 'provider.ollama.name': 'Ollama (Local)',
314
+ 'provider.lmstudio.name': 'LM Studio (Local)',
315
+ 'ide.agent.cursor': 'Cursor IDE Agent',
316
+ 'ide.agent.windsurf': 'Windsurf IDE Agent',
317
+ 'ide.agent.vscode': 'VS Code (Continue) IDE Agent',
318
+ 'ide.agent.cline': 'Cline IDE Agent',
319
+ 'ide.agent.claude.code': 'Claude Code CLI',
320
+ };