@build-astron-co/nimbus 0.4.2 → 0.4.3

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 (430) hide show
  1. package/dist/src/agent/compaction-agent.js +24 -12
  2. package/dist/src/agent/context-manager.js +2 -1
  3. package/dist/src/agent/expand-files.js +2 -1
  4. package/dist/src/agent/loop.js +71 -33
  5. package/dist/src/agent/permissions.js +4 -2
  6. package/dist/src/agent/system-prompt.js +34 -17
  7. package/dist/src/app.js +1 -1
  8. package/dist/src/auth/keychain.js +8 -4
  9. package/dist/src/auth/store.js +70 -107
  10. package/dist/src/cli/init.js +35 -19
  11. package/dist/src/cli/run.js +18 -10
  12. package/dist/src/cli/serve.js +4 -2
  13. package/dist/src/cli.js +52 -11
  14. package/dist/src/commands/alias.js +5 -3
  15. package/dist/src/commands/audit/index.js +2 -1
  16. package/dist/src/commands/aws-terraform.js +36 -18
  17. package/dist/src/commands/completions.js +1 -1
  18. package/dist/src/commands/config.js +3 -2
  19. package/dist/src/commands/connect-github.js +92 -0
  20. package/dist/src/commands/cost/index.js +3 -2
  21. package/dist/src/commands/deploy.js +15 -10
  22. package/dist/src/commands/doctor.js +6 -3
  23. package/dist/src/commands/drift/index.js +2 -1
  24. package/dist/src/commands/export.js +5 -3
  25. package/dist/src/commands/generate-terraform.js +110 -2
  26. package/dist/src/commands/import.js +3 -3
  27. package/dist/src/commands/incident.js +10 -5
  28. package/dist/src/commands/login.js +8 -93
  29. package/dist/src/commands/logs.js +16 -8
  30. package/dist/src/commands/onboarding.js +6 -4
  31. package/dist/src/commands/pipeline.js +6 -3
  32. package/dist/src/commands/plugin.js +3 -2
  33. package/dist/src/commands/profile.js +27 -14
  34. package/dist/src/commands/questionnaire.js +1 -1
  35. package/dist/src/commands/rollback.js +3 -2
  36. package/dist/src/commands/rollout.js +5 -3
  37. package/dist/src/commands/runbook.js +17 -10
  38. package/dist/src/commands/schedule.js +10 -5
  39. package/dist/src/commands/status.js +2 -1
  40. package/dist/src/commands/team-context.js +12 -7
  41. package/dist/src/commands/template.js +1 -1
  42. package/dist/src/commands/tf/index.js +6 -3
  43. package/dist/src/commands/version.js +6 -3
  44. package/dist/src/commands/watch.js +6 -3
  45. package/dist/src/compat/sqlite.js +5 -3
  46. package/dist/src/config/mode-store.js +2 -1
  47. package/dist/src/config/profiles.js +4 -2
  48. package/dist/src/config/types.js +2 -1
  49. package/dist/src/engine/executor.js +8 -4
  50. package/dist/src/engine/planner.js +9 -5
  51. package/dist/src/llm/providers/anthropic.js +6 -3
  52. package/dist/src/llm/providers/ollama.js +1 -1
  53. package/dist/src/llm/router.js +22 -7
  54. package/dist/src/sessions/manager.js +6 -3
  55. package/dist/src/sharing/viewer.js +2 -1
  56. package/dist/src/tools/file-ops.js +1 -2
  57. package/dist/src/tools/schemas/devops.js +197 -108
  58. package/dist/src/tools/schemas/standard.js +1 -1
  59. package/dist/src/ui/App.js +25 -13
  60. package/dist/src/ui/FileDiffModal.js +22 -11
  61. package/dist/src/ui/HelpModal.js +2 -1
  62. package/dist/src/ui/InputBox.js +6 -3
  63. package/dist/src/ui/MessageList.js +40 -20
  64. package/dist/src/ui/TerminalPane.js +2 -1
  65. package/dist/src/ui/ToolCallDisplay.js +12 -6
  66. package/dist/src/ui/TreePane.js +2 -1
  67. package/dist/src/ui/ink/index.js +37 -21
  68. package/dist/src/watcher/index.js +8 -4
  69. package/package.json +3 -5
  70. package/src/__tests__/alias.test.ts +0 -133
  71. package/src/__tests__/app.test.ts +0 -76
  72. package/src/__tests__/audit.test.ts +0 -877
  73. package/src/__tests__/circuit-breaker.test.ts +0 -116
  74. package/src/__tests__/cli-run.test.ts +0 -351
  75. package/src/__tests__/compat-sqlite.test.ts +0 -68
  76. package/src/__tests__/context-manager.test.ts +0 -632
  77. package/src/__tests__/context.test.ts +0 -242
  78. package/src/__tests__/devops-terminal-gaps.test.ts +0 -718
  79. package/src/__tests__/doctor.test.ts +0 -48
  80. package/src/__tests__/enterprise.test.ts +0 -401
  81. package/src/__tests__/export.test.ts +0 -236
  82. package/src/__tests__/gap-11-18-20.test.ts +0 -958
  83. package/src/__tests__/generator.test.ts +0 -433
  84. package/src/__tests__/helm-streaming.test.ts +0 -127
  85. package/src/__tests__/hooks.test.ts +0 -582
  86. package/src/__tests__/incident.test.ts +0 -179
  87. package/src/__tests__/init.test.ts +0 -487
  88. package/src/__tests__/intent-parser.test.ts +0 -229
  89. package/src/__tests__/llm-router.test.ts +0 -209
  90. package/src/__tests__/logs.test.ts +0 -107
  91. package/src/__tests__/loop-errors.test.ts +0 -244
  92. package/src/__tests__/lsp.test.ts +0 -293
  93. package/src/__tests__/modes.test.ts +0 -336
  94. package/src/__tests__/perf-optimizations.test.ts +0 -847
  95. package/src/__tests__/permissions.test.ts +0 -338
  96. package/src/__tests__/pipeline.test.ts +0 -50
  97. package/src/__tests__/polish-phase3.test.ts +0 -340
  98. package/src/__tests__/profile.test.ts +0 -237
  99. package/src/__tests__/rollback.test.ts +0 -83
  100. package/src/__tests__/runbook.test.ts +0 -219
  101. package/src/__tests__/schedule.test.ts +0 -206
  102. package/src/__tests__/serve.test.ts +0 -275
  103. package/src/__tests__/sessions.test.ts +0 -322
  104. package/src/__tests__/sharing.test.ts +0 -340
  105. package/src/__tests__/snapshots.test.ts +0 -581
  106. package/src/__tests__/standalone-migration.test.ts +0 -199
  107. package/src/__tests__/state-db.test.ts +0 -334
  108. package/src/__tests__/status.test.ts +0 -158
  109. package/src/__tests__/stream-with-tools.test.ts +0 -778
  110. package/src/__tests__/subagents.test.ts +0 -176
  111. package/src/__tests__/system-prompt.test.ts +0 -248
  112. package/src/__tests__/terminal-gap-v2.test.ts +0 -395
  113. package/src/__tests__/terminal-parity.test.ts +0 -393
  114. package/src/__tests__/tf-apply.test.ts +0 -187
  115. package/src/__tests__/tool-converter.test.ts +0 -256
  116. package/src/__tests__/tool-schemas.test.ts +0 -602
  117. package/src/__tests__/tools.test.ts +0 -144
  118. package/src/__tests__/version-json.test.ts +0 -184
  119. package/src/__tests__/version.test.ts +0 -49
  120. package/src/__tests__/watch.test.ts +0 -129
  121. package/src/agent/compaction-agent.ts +0 -266
  122. package/src/agent/context-manager.ts +0 -499
  123. package/src/agent/context.ts +0 -427
  124. package/src/agent/deploy-preview.ts +0 -487
  125. package/src/agent/expand-files.ts +0 -108
  126. package/src/agent/index.ts +0 -68
  127. package/src/agent/loop.ts +0 -1998
  128. package/src/agent/modes.ts +0 -429
  129. package/src/agent/permissions.ts +0 -513
  130. package/src/agent/subagents/base.ts +0 -116
  131. package/src/agent/subagents/cost.ts +0 -51
  132. package/src/agent/subagents/explore.ts +0 -42
  133. package/src/agent/subagents/general.ts +0 -54
  134. package/src/agent/subagents/index.ts +0 -102
  135. package/src/agent/subagents/infra.ts +0 -59
  136. package/src/agent/subagents/security.ts +0 -69
  137. package/src/agent/system-prompt.ts +0 -990
  138. package/src/app.ts +0 -180
  139. package/src/audit/activity-log.ts +0 -290
  140. package/src/audit/compliance-checker.ts +0 -540
  141. package/src/audit/cost-tracker.ts +0 -318
  142. package/src/audit/index.ts +0 -23
  143. package/src/audit/security-scanner.ts +0 -641
  144. package/src/auth/guard.ts +0 -75
  145. package/src/auth/index.ts +0 -56
  146. package/src/auth/keychain.ts +0 -82
  147. package/src/auth/oauth.ts +0 -465
  148. package/src/auth/providers.ts +0 -470
  149. package/src/auth/sso.ts +0 -113
  150. package/src/auth/store.ts +0 -505
  151. package/src/auth/types.ts +0 -187
  152. package/src/build.ts +0 -141
  153. package/src/cli/index.ts +0 -16
  154. package/src/cli/init.ts +0 -1227
  155. package/src/cli/openapi-spec.ts +0 -356
  156. package/src/cli/run.ts +0 -628
  157. package/src/cli/serve-auth.ts +0 -80
  158. package/src/cli/serve.ts +0 -539
  159. package/src/cli/web.ts +0 -71
  160. package/src/cli.ts +0 -1728
  161. package/src/clients/core-engine-client.ts +0 -227
  162. package/src/clients/enterprise-client.ts +0 -334
  163. package/src/clients/generator-client.ts +0 -351
  164. package/src/clients/git-client.ts +0 -627
  165. package/src/clients/github-client.ts +0 -410
  166. package/src/clients/helm-client.ts +0 -504
  167. package/src/clients/index.ts +0 -80
  168. package/src/clients/k8s-client.ts +0 -497
  169. package/src/clients/llm-client.ts +0 -161
  170. package/src/clients/rest-client.ts +0 -130
  171. package/src/clients/service-discovery.ts +0 -38
  172. package/src/clients/terraform-client.ts +0 -482
  173. package/src/clients/tools-client.ts +0 -1843
  174. package/src/clients/ws-client.ts +0 -115
  175. package/src/commands/alias.ts +0 -100
  176. package/src/commands/analyze/index.ts +0 -352
  177. package/src/commands/apply/helm.ts +0 -473
  178. package/src/commands/apply/index.ts +0 -213
  179. package/src/commands/apply/k8s.ts +0 -454
  180. package/src/commands/apply/terraform.ts +0 -582
  181. package/src/commands/ask.ts +0 -167
  182. package/src/commands/audit/index.ts +0 -357
  183. package/src/commands/auth-cloud.ts +0 -407
  184. package/src/commands/auth-list.ts +0 -134
  185. package/src/commands/auth-profile.ts +0 -121
  186. package/src/commands/auth-refresh.ts +0 -187
  187. package/src/commands/auth-status.ts +0 -141
  188. package/src/commands/aws/ec2.ts +0 -501
  189. package/src/commands/aws/iam.ts +0 -397
  190. package/src/commands/aws/index.ts +0 -133
  191. package/src/commands/aws/lambda.ts +0 -396
  192. package/src/commands/aws/rds.ts +0 -439
  193. package/src/commands/aws/s3.ts +0 -439
  194. package/src/commands/aws/vpc.ts +0 -393
  195. package/src/commands/aws-discover.ts +0 -542
  196. package/src/commands/aws-terraform.ts +0 -755
  197. package/src/commands/azure/aks.ts +0 -376
  198. package/src/commands/azure/functions.ts +0 -253
  199. package/src/commands/azure/index.ts +0 -116
  200. package/src/commands/azure/storage.ts +0 -478
  201. package/src/commands/azure/vm.ts +0 -355
  202. package/src/commands/billing/index.ts +0 -256
  203. package/src/commands/chat.ts +0 -320
  204. package/src/commands/completions.ts +0 -268
  205. package/src/commands/config.ts +0 -372
  206. package/src/commands/cost/cloud-cost-estimator.ts +0 -266
  207. package/src/commands/cost/estimator.ts +0 -79
  208. package/src/commands/cost/index.ts +0 -810
  209. package/src/commands/cost/parsers/terraform.ts +0 -273
  210. package/src/commands/cost/parsers/types.ts +0 -25
  211. package/src/commands/cost/pricing/aws.ts +0 -544
  212. package/src/commands/cost/pricing/azure.ts +0 -499
  213. package/src/commands/cost/pricing/gcp.ts +0 -396
  214. package/src/commands/cost/pricing/index.ts +0 -40
  215. package/src/commands/demo.ts +0 -250
  216. package/src/commands/deploy.ts +0 -260
  217. package/src/commands/doctor.ts +0 -1386
  218. package/src/commands/drift/index.ts +0 -787
  219. package/src/commands/explain.ts +0 -277
  220. package/src/commands/export.ts +0 -146
  221. package/src/commands/feedback.ts +0 -389
  222. package/src/commands/fix.ts +0 -324
  223. package/src/commands/fs/index.ts +0 -402
  224. package/src/commands/gcp/compute.ts +0 -325
  225. package/src/commands/gcp/functions.ts +0 -271
  226. package/src/commands/gcp/gke.ts +0 -438
  227. package/src/commands/gcp/iam.ts +0 -344
  228. package/src/commands/gcp/index.ts +0 -129
  229. package/src/commands/gcp/storage.ts +0 -284
  230. package/src/commands/generate-helm.ts +0 -1249
  231. package/src/commands/generate-k8s.ts +0 -1508
  232. package/src/commands/generate-terraform.ts +0 -1202
  233. package/src/commands/gh/index.ts +0 -863
  234. package/src/commands/git/index.ts +0 -1343
  235. package/src/commands/helm/index.ts +0 -1126
  236. package/src/commands/help.ts +0 -715
  237. package/src/commands/history.ts +0 -149
  238. package/src/commands/import.ts +0 -868
  239. package/src/commands/incident.ts +0 -166
  240. package/src/commands/index.ts +0 -367
  241. package/src/commands/init.ts +0 -1051
  242. package/src/commands/k8s/index.ts +0 -1137
  243. package/src/commands/login.ts +0 -716
  244. package/src/commands/logout.ts +0 -83
  245. package/src/commands/logs.ts +0 -167
  246. package/src/commands/onboarding.ts +0 -405
  247. package/src/commands/pipeline.ts +0 -186
  248. package/src/commands/plan/display.ts +0 -279
  249. package/src/commands/plan/index.ts +0 -599
  250. package/src/commands/plugin.ts +0 -398
  251. package/src/commands/preview.ts +0 -452
  252. package/src/commands/profile.ts +0 -342
  253. package/src/commands/questionnaire.ts +0 -1172
  254. package/src/commands/resume.ts +0 -47
  255. package/src/commands/rollback.ts +0 -315
  256. package/src/commands/rollout.ts +0 -88
  257. package/src/commands/runbook.ts +0 -346
  258. package/src/commands/schedule.ts +0 -236
  259. package/src/commands/status.ts +0 -252
  260. package/src/commands/team/index.ts +0 -346
  261. package/src/commands/team-context.ts +0 -220
  262. package/src/commands/template.ts +0 -233
  263. package/src/commands/tf/index.ts +0 -1093
  264. package/src/commands/upgrade.ts +0 -609
  265. package/src/commands/usage/index.ts +0 -134
  266. package/src/commands/version.ts +0 -174
  267. package/src/commands/watch.ts +0 -153
  268. package/src/compat/index.ts +0 -2
  269. package/src/compat/runtime.ts +0 -12
  270. package/src/compat/sqlite.ts +0 -177
  271. package/src/config/index.ts +0 -17
  272. package/src/config/manager.ts +0 -530
  273. package/src/config/mode-store.ts +0 -62
  274. package/src/config/profiles.ts +0 -84
  275. package/src/config/safety-policy.ts +0 -358
  276. package/src/config/schema.ts +0 -125
  277. package/src/config/types.ts +0 -609
  278. package/src/config/workspace-state.ts +0 -53
  279. package/src/context/context-db.ts +0 -199
  280. package/src/demo/index.ts +0 -349
  281. package/src/demo/scenarios/full-journey.ts +0 -229
  282. package/src/demo/scenarios/getting-started.ts +0 -127
  283. package/src/demo/scenarios/helm-release.ts +0 -341
  284. package/src/demo/scenarios/k8s-deployment.ts +0 -194
  285. package/src/demo/scenarios/terraform-vpc.ts +0 -170
  286. package/src/demo/types.ts +0 -92
  287. package/src/engine/cost-estimator.ts +0 -480
  288. package/src/engine/diagram-generator.ts +0 -256
  289. package/src/engine/drift-detector.ts +0 -902
  290. package/src/engine/executor.ts +0 -1066
  291. package/src/engine/index.ts +0 -76
  292. package/src/engine/orchestrator.ts +0 -636
  293. package/src/engine/planner.ts +0 -787
  294. package/src/engine/safety.ts +0 -743
  295. package/src/engine/verifier.ts +0 -770
  296. package/src/enterprise/audit.ts +0 -348
  297. package/src/enterprise/auth.ts +0 -270
  298. package/src/enterprise/billing.ts +0 -822
  299. package/src/enterprise/index.ts +0 -17
  300. package/src/enterprise/teams.ts +0 -443
  301. package/src/generator/best-practices.ts +0 -1608
  302. package/src/generator/helm.ts +0 -630
  303. package/src/generator/index.ts +0 -37
  304. package/src/generator/intent-parser.ts +0 -514
  305. package/src/generator/kubernetes.ts +0 -976
  306. package/src/generator/terraform.ts +0 -1875
  307. package/src/history/index.ts +0 -8
  308. package/src/history/manager.ts +0 -250
  309. package/src/history/types.ts +0 -34
  310. package/src/hooks/config.ts +0 -432
  311. package/src/hooks/engine.ts +0 -392
  312. package/src/hooks/index.ts +0 -4
  313. package/src/llm/auth-bridge.ts +0 -198
  314. package/src/llm/circuit-breaker.ts +0 -140
  315. package/src/llm/config-loader.ts +0 -201
  316. package/src/llm/cost-calculator.ts +0 -171
  317. package/src/llm/index.ts +0 -8
  318. package/src/llm/model-aliases.ts +0 -115
  319. package/src/llm/provider-registry.ts +0 -63
  320. package/src/llm/providers/anthropic.ts +0 -462
  321. package/src/llm/providers/bedrock.ts +0 -477
  322. package/src/llm/providers/google.ts +0 -405
  323. package/src/llm/providers/ollama.ts +0 -767
  324. package/src/llm/providers/openai-compatible.ts +0 -340
  325. package/src/llm/providers/openai.ts +0 -328
  326. package/src/llm/providers/openrouter.ts +0 -338
  327. package/src/llm/router.ts +0 -1104
  328. package/src/llm/types.ts +0 -232
  329. package/src/lsp/client.ts +0 -298
  330. package/src/lsp/languages.ts +0 -119
  331. package/src/lsp/manager.ts +0 -294
  332. package/src/mcp/client.ts +0 -402
  333. package/src/mcp/index.ts +0 -5
  334. package/src/mcp/manager.ts +0 -133
  335. package/src/nimbus.ts +0 -234
  336. package/src/plugins/index.ts +0 -27
  337. package/src/plugins/loader.ts +0 -334
  338. package/src/plugins/manager.ts +0 -376
  339. package/src/plugins/types.ts +0 -284
  340. package/src/scanners/cicd-scanner.ts +0 -258
  341. package/src/scanners/cloud-scanner.ts +0 -466
  342. package/src/scanners/framework-scanner.ts +0 -469
  343. package/src/scanners/iac-scanner.ts +0 -388
  344. package/src/scanners/index.ts +0 -539
  345. package/src/scanners/language-scanner.ts +0 -276
  346. package/src/scanners/package-manager-scanner.ts +0 -277
  347. package/src/scanners/types.ts +0 -172
  348. package/src/sessions/manager.ts +0 -472
  349. package/src/sessions/types.ts +0 -44
  350. package/src/sharing/sync.ts +0 -300
  351. package/src/sharing/viewer.ts +0 -163
  352. package/src/snapshots/index.ts +0 -2
  353. package/src/snapshots/manager.ts +0 -530
  354. package/src/state/artifacts.ts +0 -147
  355. package/src/state/audit.ts +0 -137
  356. package/src/state/billing.ts +0 -240
  357. package/src/state/checkpoints.ts +0 -117
  358. package/src/state/config.ts +0 -67
  359. package/src/state/conversations.ts +0 -14
  360. package/src/state/credentials.ts +0 -154
  361. package/src/state/db.ts +0 -58
  362. package/src/state/index.ts +0 -26
  363. package/src/state/messages.ts +0 -115
  364. package/src/state/projects.ts +0 -123
  365. package/src/state/schema.ts +0 -236
  366. package/src/state/sessions.ts +0 -147
  367. package/src/state/teams.ts +0 -200
  368. package/src/telemetry.ts +0 -108
  369. package/src/tools/aws-ops.ts +0 -952
  370. package/src/tools/azure-ops.ts +0 -579
  371. package/src/tools/file-ops.ts +0 -615
  372. package/src/tools/gcp-ops.ts +0 -625
  373. package/src/tools/git-ops.ts +0 -773
  374. package/src/tools/github-ops.ts +0 -799
  375. package/src/tools/helm-ops.ts +0 -943
  376. package/src/tools/index.ts +0 -17
  377. package/src/tools/k8s-ops.ts +0 -819
  378. package/src/tools/schemas/converter.ts +0 -184
  379. package/src/tools/schemas/devops.ts +0 -3502
  380. package/src/tools/schemas/index.ts +0 -73
  381. package/src/tools/schemas/standard.ts +0 -1148
  382. package/src/tools/schemas/types.ts +0 -735
  383. package/src/tools/spawn-exec.ts +0 -148
  384. package/src/tools/terraform-ops.ts +0 -862
  385. package/src/types/ambient.d.ts +0 -193
  386. package/src/types/config.ts +0 -83
  387. package/src/types/drift.ts +0 -116
  388. package/src/types/enterprise.ts +0 -335
  389. package/src/types/index.ts +0 -20
  390. package/src/types/plan.ts +0 -44
  391. package/src/types/request.ts +0 -65
  392. package/src/types/response.ts +0 -54
  393. package/src/types/service.ts +0 -51
  394. package/src/ui/App.tsx +0 -2114
  395. package/src/ui/DeployPreview.tsx +0 -174
  396. package/src/ui/FileDiffModal.tsx +0 -162
  397. package/src/ui/Header.tsx +0 -131
  398. package/src/ui/HelpModal.tsx +0 -57
  399. package/src/ui/InputBox.tsx +0 -503
  400. package/src/ui/MessageList.tsx +0 -1032
  401. package/src/ui/PermissionPrompt.tsx +0 -163
  402. package/src/ui/StatusBar.tsx +0 -277
  403. package/src/ui/TerminalPane.tsx +0 -84
  404. package/src/ui/ToolCallDisplay.tsx +0 -643
  405. package/src/ui/TreePane.tsx +0 -132
  406. package/src/ui/chat-ui.ts +0 -850
  407. package/src/ui/index.ts +0 -33
  408. package/src/ui/ink/index.ts +0 -1444
  409. package/src/ui/streaming.ts +0 -176
  410. package/src/ui/theme.ts +0 -104
  411. package/src/ui/types.ts +0 -75
  412. package/src/utils/analytics.ts +0 -72
  413. package/src/utils/cost-warning.ts +0 -27
  414. package/src/utils/env.ts +0 -46
  415. package/src/utils/errors.ts +0 -69
  416. package/src/utils/event-bus.ts +0 -38
  417. package/src/utils/index.ts +0 -24
  418. package/src/utils/logger.ts +0 -171
  419. package/src/utils/rate-limiter.ts +0 -121
  420. package/src/utils/service-auth.ts +0 -49
  421. package/src/utils/validation.ts +0 -53
  422. package/src/version.ts +0 -4
  423. package/src/watcher/index.ts +0 -214
  424. package/src/wizard/approval.ts +0 -383
  425. package/src/wizard/index.ts +0 -25
  426. package/src/wizard/prompts.ts +0 -338
  427. package/src/wizard/types.ts +0 -172
  428. package/src/wizard/ui.ts +0 -556
  429. package/src/wizard/wizard.ts +0 -304
  430. package/tsconfig.json +0 -24
@@ -1,1386 +0,0 @@
1
- /**
2
- * Doctor Command
3
- *
4
- * Run diagnostic checks on Nimbus installation and configuration
5
- *
6
- * Usage: nimbus doctor [options]
7
- */
8
-
9
- import { logger } from '../utils';
10
- import { ui } from '../wizard';
11
-
12
- /**
13
- * Command options
14
- */
15
- export interface DoctorOptions {
16
- fix?: boolean;
17
- verbose?: boolean;
18
- json?: boolean;
19
- metrics?: boolean;
20
- quiet?: boolean;
21
- }
22
-
23
- /**
24
- * Check result structure
25
- */
26
- interface CheckResult {
27
- name: string;
28
- passed: boolean;
29
- message?: string;
30
- error?: string;
31
- details?: Record<string, unknown>;
32
- fix?: string;
33
- runFix?: () => Promise<void>;
34
- }
35
-
36
- /**
37
- * Diagnostic check function type
38
- */
39
- type DiagnosticCheck = (options: DoctorOptions) => Promise<CheckResult>;
40
-
41
- /**
42
- * Check configuration files
43
- */
44
- async function checkConfiguration(options: DoctorOptions): Promise<CheckResult> {
45
- const fs = await import('fs/promises');
46
- const path = await import('path');
47
- const os = await import('os');
48
-
49
- const configDir = path.join(os.homedir(), '.nimbus');
50
- const configFile = path.join(configDir, 'config.json');
51
-
52
- try {
53
- await fs.access(configDir);
54
- } catch {
55
- return {
56
- name: 'Configuration',
57
- passed: false,
58
- error: 'Configuration directory not found',
59
- fix: 'Run "nimbus init" to create configuration',
60
- runFix: async () => {
61
- await fs.mkdir(configDir, { recursive: true });
62
- },
63
- };
64
- }
65
-
66
- try {
67
- await fs.access(configFile);
68
- const content = await fs.readFile(configFile, 'utf-8');
69
- JSON.parse(content); // Validate JSON
70
- return {
71
- name: 'Configuration',
72
- passed: true,
73
- message: 'Configuration file valid',
74
- details: options.verbose ? { path: configFile } : undefined,
75
- };
76
- } catch (error: any) {
77
- if (error.code === 'ENOENT') {
78
- return {
79
- name: 'Configuration',
80
- passed: false,
81
- error: 'Configuration file not found',
82
- fix: 'Run "nimbus config init" to create configuration',
83
- };
84
- }
85
- return {
86
- name: 'Configuration',
87
- passed: false,
88
- error: `Invalid configuration: ${error.message}`,
89
- fix: 'Run "nimbus config reset" to reset configuration',
90
- };
91
- }
92
- }
93
-
94
- /**
95
- * Check LLM provider configuration
96
- */
97
- async function checkLLMProvider(options: DoctorOptions): Promise<CheckResult> {
98
- const fs = await import('fs/promises');
99
- const path = await import('path');
100
- const os = await import('os');
101
-
102
- // Check for API keys
103
- const envKeys = ['ANTHROPIC_API_KEY', 'OPENAI_API_KEY', 'AWS_ACCESS_KEY_ID'];
104
- const foundKeys: string[] = [];
105
-
106
- for (const key of envKeys) {
107
- if (process.env[key]) {
108
- foundKeys.push(key);
109
- }
110
- }
111
-
112
- // Check credentials file
113
- const credentialsFile = path.join(os.homedir(), '.nimbus', 'auth.json');
114
- let hasStoredCredentials = false;
115
-
116
- try {
117
- await fs.access(credentialsFile);
118
- const content = await fs.readFile(credentialsFile, 'utf-8');
119
- const creds = JSON.parse(content);
120
- hasStoredCredentials = Object.keys(creds.providers || {}).length > 0;
121
- } catch {
122
- // No stored credentials
123
- }
124
-
125
- if (foundKeys.length === 0 && !hasStoredCredentials) {
126
- return {
127
- name: 'LLM Provider',
128
- passed: false,
129
- error: 'No LLM provider configured',
130
- fix: 'Run "nimbus login" to configure an LLM provider',
131
- runFix: async () => {
132
- const { loginCommand } = await import('./login');
133
- await loginCommand();
134
- },
135
- };
136
- }
137
-
138
- return {
139
- name: 'LLM Provider',
140
- passed: true,
141
- message: hasStoredCredentials ? 'Credentials configured' : `Using ${foundKeys.join(', ')}`,
142
- details: options.verbose
143
- ? {
144
- envKeys: foundKeys,
145
- hasStoredCredentials,
146
- }
147
- : undefined,
148
- };
149
- }
150
-
151
- /**
152
- * Check cloud credentials (AWS, etc.)
153
- */
154
- async function checkCloudCredentials(options: DoctorOptions): Promise<CheckResult> {
155
- const fs = await import('fs/promises');
156
- const path = await import('path');
157
- const os = await import('os');
158
-
159
- const checks: string[] = [];
160
-
161
- // Check AWS credentials
162
- const awsConfigDir = path.join(os.homedir(), '.aws');
163
-
164
- try {
165
- await fs.access(path.join(awsConfigDir, 'credentials'));
166
- checks.push('AWS credentials');
167
- } catch {
168
- // Check environment variables
169
- if (process.env.AWS_ACCESS_KEY_ID && process.env.AWS_SECRET_ACCESS_KEY) {
170
- checks.push('AWS (env vars)');
171
- }
172
- }
173
-
174
- // Check GCP credentials
175
- if (process.env.GOOGLE_APPLICATION_CREDENTIALS) {
176
- try {
177
- await fs.access(process.env.GOOGLE_APPLICATION_CREDENTIALS);
178
- checks.push('GCP credentials');
179
- } catch {
180
- // Invalid path
181
- }
182
- }
183
-
184
- // Check Azure credentials
185
- if (process.env.AZURE_CLIENT_ID || process.env.AZURE_SUBSCRIPTION_ID) {
186
- checks.push('Azure (env vars)');
187
- }
188
-
189
- // Check kubeconfig
190
- const kubeconfigPath = process.env.KUBECONFIG || path.join(os.homedir(), '.kube', 'config');
191
- try {
192
- await fs.access(kubeconfigPath);
193
- checks.push('Kubernetes');
194
- } catch {
195
- // No kubeconfig
196
- }
197
-
198
- if (checks.length === 0) {
199
- return {
200
- name: 'Cloud Credentials',
201
- passed: false,
202
- error: 'No cloud credentials found',
203
- fix: 'Configure AWS credentials (~/.aws/credentials) or set environment variables',
204
- runFix: async () => {
205
- ui.info('To configure cloud credentials, run one of:');
206
- ui.print(' AWS: nimbus login --cloud aws (runs aws configure)');
207
- ui.print(' GCP: nimbus login --cloud gcp (runs gcloud auth login)');
208
- ui.print(' Azure: nimbus login --cloud azure (runs az login)');
209
- },
210
- };
211
- }
212
-
213
- return {
214
- name: 'Cloud Credentials',
215
- passed: true,
216
- message: `Found: ${checks.join(', ')}`,
217
- details: options.verbose ? { providers: checks } : undefined,
218
- };
219
- }
220
-
221
- /**
222
- * Check cloud connectivity (real API calls)
223
- */
224
- async function checkCloudConnectivity(options: DoctorOptions): Promise<CheckResult> {
225
- const { execFileSync } = await import('child_process');
226
-
227
- const results: Array<{ provider: string; status: string; details?: string }> = [];
228
-
229
- // AWS: try sts get-caller-identity
230
- try {
231
- const output = execFileSync('aws', ['sts', 'get-caller-identity', '--output', 'json'], {
232
- encoding: 'utf-8',
233
- timeout: 10000,
234
- stdio: ['pipe', 'pipe', 'pipe'],
235
- });
236
- const identity = JSON.parse(output);
237
- results.push({
238
- provider: 'AWS',
239
- status: 'connected',
240
- details: `Account: ${identity.Account}, User: ${identity.UserId}`,
241
- });
242
- } catch (error: any) {
243
- if (error.code === 'ENOENT') {
244
- results.push({
245
- provider: 'AWS',
246
- status: 'not installed',
247
- details: 'Install AWS CLI: https://aws.amazon.com/cli/',
248
- });
249
- } else {
250
- results.push({
251
- provider: 'AWS',
252
- status: 'failed',
253
- details: 'Run "aws configure" or check credentials',
254
- });
255
- }
256
- }
257
-
258
- // GCP: try gcloud auth print-access-token
259
- try {
260
- const output = execFileSync('gcloud', ['auth', 'print-access-token'], {
261
- encoding: 'utf-8',
262
- timeout: 10000,
263
- stdio: ['pipe', 'pipe', 'pipe'],
264
- });
265
- if (output.trim().length > 0) {
266
- results.push({ provider: 'GCP', status: 'connected', details: 'Access token valid' });
267
- } else {
268
- results.push({ provider: 'GCP', status: 'failed', details: 'Run "gcloud auth login"' });
269
- }
270
- } catch (error: any) {
271
- if (error.code === 'ENOENT') {
272
- results.push({
273
- provider: 'GCP',
274
- status: 'not installed',
275
- details: 'Install gcloud: https://cloud.google.com/sdk/docs/install',
276
- });
277
- } else {
278
- results.push({ provider: 'GCP', status: 'failed', details: 'Run "gcloud auth login"' });
279
- }
280
- }
281
-
282
- // Azure: try az account show
283
- try {
284
- const output = execFileSync('az', ['account', 'show', '--output', 'json'], {
285
- encoding: 'utf-8',
286
- timeout: 10000,
287
- stdio: ['pipe', 'pipe', 'pipe'],
288
- });
289
- const account = JSON.parse(output);
290
- results.push({
291
- provider: 'Azure',
292
- status: 'connected',
293
- details: `Subscription: ${account.name || account.id}`,
294
- });
295
- } catch (error: any) {
296
- if (error.code === 'ENOENT') {
297
- results.push({
298
- provider: 'Azure',
299
- status: 'not installed',
300
- details: 'Install Azure CLI: https://learn.microsoft.com/en-us/cli/azure/install-azure-cli',
301
- });
302
- } else {
303
- results.push({ provider: 'Azure', status: 'failed', details: 'Run "az login"' });
304
- }
305
- }
306
-
307
- const connected = results.filter(r => r.status === 'connected');
308
-
309
- if (connected.length === 0) {
310
- const installed = results.filter(r => r.status !== 'not installed');
311
- if (installed.length === 0) {
312
- return {
313
- name: 'Cloud Connectivity',
314
- passed: true,
315
- message: 'No cloud CLIs installed (optional)',
316
- details: options.verbose ? { providers: results } : undefined,
317
- };
318
- }
319
- return {
320
- name: 'Cloud Connectivity',
321
- passed: false,
322
- error: 'No cloud provider connected',
323
- fix: results
324
- .map(r => r.details)
325
- .filter(Boolean)
326
- .join('; '),
327
- details: options.verbose ? { providers: results } : undefined,
328
- runFix: async () => {
329
- const { execFileSync } = await import('child_process');
330
- // Try AWS SSO refresh
331
- const awsFailed = results.find(r => r.provider === 'AWS' && r.status === 'failed');
332
- if (awsFailed) {
333
- ui.info('Attempting AWS SSO login...');
334
- try {
335
- execFileSync('aws', ['sso', 'login'], { stdio: 'inherit', timeout: 120000 });
336
- } catch { ui.warning('AWS SSO login failed. Run `aws configure` manually.'); }
337
- }
338
- // Try GCP refresh
339
- const gcpFailed = results.find(r => r.provider === 'GCP' && r.status === 'failed');
340
- if (gcpFailed) {
341
- ui.info('Attempting GCP application-default login...');
342
- try {
343
- execFileSync('gcloud', ['auth', 'application-default', 'login'], { stdio: 'inherit', timeout: 120000 });
344
- } catch { ui.warning('GCP login failed. Run `gcloud auth login` manually.'); }
345
- }
346
- },
347
- };
348
- }
349
-
350
- return {
351
- name: 'Cloud Connectivity',
352
- passed: true,
353
- message: connected.map(r => `${r.provider}: ${r.details}`).join(', '),
354
- details: options.verbose ? { providers: results } : undefined,
355
- };
356
- }
357
-
358
- /**
359
- * Check embedded core systems (SQLite database + LLM auth + tool registry)
360
- */
361
- async function checkCoreServices(options: DoctorOptions): Promise<CheckResult> {
362
- const fs = await import('fs/promises');
363
- const path = await import('path');
364
- const os = await import('os');
365
-
366
- const results: Array<{ name: string; status: string; details?: string }> = [];
367
-
368
- // Check SQLite database
369
- const dbPath = path.join(os.homedir(), '.nimbus', 'nimbus.db');
370
- try {
371
- await fs.access(dbPath);
372
- const stat = await fs.stat(dbPath);
373
- results.push({
374
- name: 'SQLite DB',
375
- status: 'ok',
376
- details: options.verbose ? `${dbPath} (${(stat.size / 1024).toFixed(1)} KB)` : undefined,
377
- });
378
- } catch {
379
- results.push({
380
- name: 'SQLite DB',
381
- status: 'not initialized',
382
- details: 'Will be created on first use',
383
- });
384
- }
385
-
386
- // Check LLM credentials
387
- const credFile = path.join(os.homedir(), '.nimbus', 'auth.json');
388
- let llmStatus = 'not configured';
389
- let llmDetails: string | undefined;
390
- try {
391
- const content = await fs.readFile(credFile, 'utf-8');
392
- const creds = JSON.parse(content);
393
- const providers = Object.keys(creds.providers || {});
394
- if (providers.length > 0) {
395
- llmStatus = 'configured';
396
- llmDetails = options.verbose ? `Providers: ${providers.join(', ')}` : undefined;
397
- }
398
- } catch {
399
- // Check env vars as fallback
400
- const envKeys = ['ANTHROPIC_API_KEY', 'OPENAI_API_KEY', 'GOOGLE_API_KEY', 'AWS_ACCESS_KEY_ID'];
401
- const found = envKeys.filter(k => process.env[k]);
402
- if (found.length > 0) {
403
- llmStatus = 'via env vars';
404
- llmDetails = options.verbose ? found.join(', ') : undefined;
405
- }
406
- }
407
- results.push({ name: 'LLM Auth', status: llmStatus, details: llmDetails });
408
-
409
- // Check tool registry (Nimbus built-in tools)
410
- try {
411
- const { standardTools } = await import('../tools/schemas/standard');
412
- const { devopsTools } = await import('../tools/schemas/devops');
413
- // Count expected tools
414
- const expectedCount = standardTools.length + devopsTools.length;
415
- results.push({
416
- name: 'Tool Registry',
417
- status: 'ok',
418
- details: options.verbose ? `${expectedCount} tools available` : undefined,
419
- });
420
- } catch (e: any) {
421
- results.push({ name: 'Tool Registry', status: 'error', details: e.message });
422
- }
423
-
424
- const failed = results.filter(r => r.status === 'error' || r.status === 'not configured');
425
- const passed = failed.length === 0;
426
-
427
- const summary = results.map(r => `${r.name}: ${r.status}`).join(', ');
428
-
429
- return {
430
- name: 'Core Systems',
431
- passed,
432
- message: passed ? summary : `Issues: ${failed.map(r => r.name).join(', ')}`,
433
- details: options.verbose ? { systems: results } : undefined,
434
- };
435
- }
436
-
437
- /**
438
- * Check DevOps CLI tools availability (terraform, kubectl, helm, aws)
439
- */
440
- async function checkToolServices(options: DoctorOptions): Promise<CheckResult> {
441
- const { execFileSync } = await import('child_process');
442
-
443
- const devopsTools = [
444
- { name: 'terraform', cmd: 'terraform', args: ['version', '-json'] },
445
- { name: 'kubectl', cmd: 'kubectl', args: ['version', '--client', '--output=json'] },
446
- { name: 'helm', cmd: 'helm', args: ['version', '--short'] },
447
- { name: 'aws', cmd: 'aws', args: ['--version'] },
448
- { name: 'gcloud', cmd: 'gcloud', args: ['version', '--format=json'] },
449
- { name: 'az', cmd: 'az', args: ['version', '--output=json'] },
450
- ];
451
-
452
- const results: Array<{ name: string; version: string; available: boolean }> = [];
453
-
454
- for (const tool of devopsTools) {
455
- try {
456
- const output = execFileSync(tool.cmd, tool.args, {
457
- encoding: 'utf-8',
458
- timeout: 5000,
459
- stdio: ['pipe', 'pipe', 'pipe'],
460
- });
461
- // Extract version number
462
- let version = 'installed';
463
- try {
464
- const parsed = JSON.parse(output);
465
- // terraform: { terraform_version: "1.7.0" }, kubectl: { clientVersion: { gitVersion: "v1.28.0" } }
466
- version = parsed.terraform_version || parsed.clientVersion?.gitVersion || 'installed';
467
- } catch {
468
- const match = output.match(/[\d]+\.[\d]+\.[\d]+/);
469
- if (match) version = match[0];
470
- }
471
- results.push({ name: tool.name, version, available: true });
472
- } catch {
473
- results.push({ name: tool.name, version: 'not found', available: false });
474
- }
475
- }
476
-
477
- const available = results.filter(r => r.available);
478
- const missing = results.filter(r => !r.available);
479
-
480
- // GAP-12: OS-aware runFix — actually installs missing tools via Homebrew on macOS
481
- const BREW_INSTALL: Record<string, string> = {
482
- terraform: 'terraform',
483
- kubectl: 'kubernetes-cli',
484
- helm: 'helm',
485
- aws: 'awscli',
486
- gcloud: '--cask google-cloud-sdk',
487
- az: 'azure-cli',
488
- };
489
- const INSTALL_URLS: Record<string, string> = {
490
- terraform: 'https://developer.hashicorp.com/terraform/install',
491
- kubectl: 'https://kubernetes.io/docs/tasks/tools/',
492
- helm: 'https://helm.sh/docs/intro/install/',
493
- aws: 'https://aws.amazon.com/cli/',
494
- gcloud: 'https://cloud.google.com/sdk/docs/install',
495
- az: 'https://learn.microsoft.com/en-us/cli/azure/install-azure-cli',
496
- };
497
- const osAwareRunFix = async () => {
498
- const { execFileSync: brew } = await import('child_process');
499
- const isMac = process.platform === 'darwin';
500
- const isLinux = process.platform === 'linux';
501
- for (const tool of missing) {
502
- const toolName = tool.name;
503
- if (isMac && BREW_INSTALL[toolName]) {
504
- ui.print(`Installing ${toolName} via Homebrew...`);
505
- try {
506
- const brewArgs = ['install', ...BREW_INSTALL[toolName].split(' ')];
507
- brew('brew', brewArgs, { stdio: 'inherit', timeout: 120_000 });
508
- ui.success(`${toolName} installed successfully`);
509
- } catch (brewErr) {
510
- ui.warning(`brew install failed for ${toolName}: ${brewErr instanceof Error ? brewErr.message : String(brewErr)}`);
511
- ui.print(` Manual install: ${INSTALL_URLS[toolName] ?? 'check official docs'}`);
512
- }
513
- } else if (isLinux) {
514
- ui.print(` ${toolName}: ${INSTALL_URLS[toolName] ?? 'check official docs'}`);
515
- } else {
516
- ui.print(` ${toolName}: ${INSTALL_URLS[toolName] ?? 'check official docs'}`);
517
- }
518
- }
519
- };
520
-
521
- if (available.length === 0) {
522
- return {
523
- name: 'DevOps Tools',
524
- passed: false,
525
- error: 'No DevOps CLI tools found (terraform, kubectl, helm, aws, gcloud, az)',
526
- fix: 'Install at least one: terraform, kubectl, or helm',
527
- details: options.verbose ? { tools: results } : undefined,
528
- runFix: osAwareRunFix,
529
- };
530
- }
531
-
532
- return {
533
- name: 'DevOps Tools',
534
- passed: true,
535
- message: `${available.length}/${devopsTools.length} available: ${available.map(t => `${t.name} ${t.version}`).join(', ')}${missing.length > 0 ? ` | missing: ${missing.map(t => t.name).join(', ')}` : ''}`,
536
- details: options.verbose ? { tools: results } : undefined,
537
- };
538
- }
539
-
540
- /**
541
- * Check dependencies (CLI tools)
542
- */
543
- async function checkDependencies(options: DoctorOptions): Promise<CheckResult> {
544
- const { execFileSync } = await import('child_process');
545
-
546
- // Use execFileSync with args arrays to prevent shell injection
547
- const tools = [
548
- { name: 'git', cmd: 'git', args: ['--version'], required: true },
549
- { name: 'terraform', cmd: 'terraform', args: ['version'], required: false },
550
- { name: 'kubectl', cmd: 'kubectl', args: ['version', '--client'], required: false },
551
- { name: 'helm', cmd: 'helm', args: ['version', '--short'], required: false },
552
- { name: 'aws', cmd: 'aws', args: ['--version'], required: false },
553
- { name: 'gcloud', cmd: 'gcloud', args: ['version'], required: false },
554
- { name: 'az', cmd: 'az', args: ['version'], required: false },
555
- ];
556
-
557
- const results: Array<{ name: string; version?: string; available: boolean }> = [];
558
- const requiredMissing: string[] = [];
559
-
560
- for (const tool of tools) {
561
- try {
562
- const output = execFileSync(tool.cmd, tool.args, {
563
- encoding: 'utf-8',
564
- timeout: 5000,
565
- stdio: ['pipe', 'pipe', 'pipe'],
566
- });
567
-
568
- // Extract version from output
569
- const versionMatch = output.match(/\d+\.\d+(\.\d+)?/);
570
- results.push({
571
- name: tool.name,
572
- version: versionMatch ? versionMatch[0] : 'installed',
573
- available: true,
574
- });
575
- } catch {
576
- results.push({ name: tool.name, available: false });
577
- if (tool.required) {
578
- requiredMissing.push(tool.name);
579
- }
580
- }
581
- }
582
-
583
- if (requiredMissing.length > 0) {
584
- return {
585
- name: 'Dependencies',
586
- passed: false,
587
- error: `Required tools not found: ${requiredMissing.join(', ')}`,
588
- fix: `Install missing tools: ${requiredMissing.join(', ')}`,
589
- };
590
- }
591
-
592
- const availableCount = results.filter(r => r.available).length;
593
-
594
- return {
595
- name: 'Dependencies',
596
- passed: true,
597
- message: `${availableCount}/${tools.length} tools available`,
598
- details: options.verbose ? { tools: results } : undefined,
599
- // G21: runFix checks for .tf files without .terraform/ and suggests terraform init
600
- runFix: async () => {
601
- const fs = await import('fs/promises');
602
- const path = await import('path');
603
- const cwd = process.cwd();
604
-
605
- // Check for .tf files without .terraform dir
606
- try {
607
- const entries = await fs.readdir(cwd);
608
- const hasTfFiles = entries.some(e => e.endsWith('.tf'));
609
- const hasTerraformDir = entries.includes('.terraform');
610
-
611
- if (hasTfFiles && !hasTerraformDir) {
612
- ui.info('Found .tf files without .terraform/ directory. Run:');
613
- ui.print(' terraform init');
614
- }
615
- } catch { /* ignore */ }
616
- },
617
- };
618
- }
619
-
620
- /**
621
- * Check disk space
622
- */
623
- async function checkDiskSpace(_options: DoctorOptions): Promise<CheckResult> {
624
- const os = await import('os');
625
- const { execFileSync } = await import('child_process');
626
-
627
- try {
628
- // Get disk space for home directory
629
- const homeDir = os.homedir();
630
- let available: number | undefined;
631
-
632
- if (process.platform === 'win32') {
633
- // Windows - use execFileSync with args array to prevent shell injection
634
- const output = execFileSync('wmic', ['logicaldisk', 'get', 'size,freespace,caption'], {
635
- encoding: 'utf-8',
636
- });
637
- const lines = output.trim().split('\n');
638
- const drive = homeDir.charAt(0).toUpperCase();
639
- for (const line of lines) {
640
- if (line.startsWith(drive)) {
641
- const parts = line.trim().split(/\s+/);
642
- available = parseInt(parts[1], 10);
643
- break;
644
- }
645
- }
646
- } else {
647
- // Unix-like - use execFileSync with args array to prevent shell injection
648
- const output = execFileSync('df', ['-k', homeDir], { encoding: 'utf-8' });
649
- // Skip header line and parse the data line
650
- const lines = output.trim().split('\n');
651
- const dataLine = lines[lines.length - 1];
652
- const parts = dataLine.trim().split(/\s+/);
653
- available = parseInt(parts[3], 10) * 1024; // Convert KB to bytes
654
- }
655
-
656
- // Handle case where disk space could not be determined
657
- if (available === undefined || isNaN(available)) {
658
- return {
659
- name: 'Disk Space',
660
- passed: true,
661
- message: 'Unable to determine disk space (assuming OK)',
662
- };
663
- }
664
-
665
- const availableGB = available / (1024 * 1024 * 1024);
666
- const minRequired = 1; // 1 GB minimum
667
-
668
- if (availableGB < minRequired) {
669
- return {
670
- name: 'Disk Space',
671
- passed: false,
672
- error: `Low disk space: ${availableGB.toFixed(1)} GB available`,
673
- fix: 'Free up disk space (at least 1 GB recommended)',
674
- };
675
- }
676
-
677
- return {
678
- name: 'Disk Space',
679
- passed: true,
680
- message: `${availableGB.toFixed(1)} GB available`,
681
- };
682
- } catch {
683
- return {
684
- name: 'Disk Space',
685
- passed: true,
686
- message: 'Unable to check (assuming OK)',
687
- };
688
- }
689
- }
690
-
691
- /**
692
- * Check network connectivity
693
- */
694
- async function checkNetwork(options: DoctorOptions): Promise<CheckResult> {
695
- const endpoints = [
696
- { name: 'api.anthropic.com', url: 'https://api.anthropic.com' },
697
- { name: 'api.openai.com', url: 'https://api.openai.com' },
698
- ];
699
-
700
- const results: Array<{ name: string; reachable: boolean }> = [];
701
-
702
- for (const endpoint of endpoints) {
703
- try {
704
- await fetch(endpoint.url, {
705
- method: 'HEAD',
706
- signal: AbortSignal.timeout(5000),
707
- });
708
- results.push({ name: endpoint.name, reachable: true });
709
- } catch {
710
- results.push({ name: endpoint.name, reachable: false });
711
- }
712
- }
713
-
714
- const reachableCount = results.filter(r => r.reachable).length;
715
-
716
- if (reachableCount === 0) {
717
- return {
718
- name: 'Network',
719
- passed: false,
720
- error: 'Cannot reach LLM APIs',
721
- fix: 'Check network connection and firewall settings',
722
- details: options.verbose ? { endpoints: results } : undefined,
723
- };
724
- }
725
-
726
- return {
727
- name: 'Network',
728
- passed: true,
729
- message: `${reachableCount}/${endpoints.length} API endpoints reachable`,
730
- details: options.verbose ? { endpoints: results } : undefined,
731
- };
732
- }
733
-
734
- /**
735
- * Check Docker daemon availability (C1/L10)
736
- */
737
- async function checkDockerDaemon(_options: DoctorOptions): Promise<CheckResult> {
738
- const { execFileSync } = await import('child_process');
739
- try {
740
- execFileSync('docker', ['info'], { encoding: 'utf-8', timeout: 8000, stdio: ['pipe', 'pipe', 'pipe'] });
741
- return { name: 'Docker Daemon', passed: true, message: 'Docker daemon running' };
742
- } catch {
743
- try {
744
- // Just check if docker binary exists
745
- execFileSync('docker', ['--version'], { encoding: 'utf-8', timeout: 3000, stdio: ['pipe', 'pipe', 'pipe'] });
746
- return {
747
- name: 'Docker Daemon',
748
- passed: false,
749
- error: 'Docker installed but daemon not running',
750
- fix: 'Start Docker: `open -a Docker` (macOS) or `sudo systemctl start docker` (Linux)',
751
- };
752
- } catch {
753
- return { name: 'Docker Daemon', passed: false, error: 'Docker not installed', fix: 'Install Docker Desktop from https://www.docker.com' };
754
- }
755
- }
756
- }
757
-
758
- /**
759
- * Check Vault CLI and status (C2/L10)
760
- */
761
- async function checkVault(_options: DoctorOptions): Promise<CheckResult> {
762
- const { execFileSync } = await import('child_process');
763
- try {
764
- execFileSync('vault', ['--version'], { encoding: 'utf-8', timeout: 3000, stdio: ['pipe', 'pipe', 'pipe'] });
765
- if (process.env.VAULT_ADDR) {
766
- try {
767
- const out = execFileSync('vault', ['status', '-format=json'], {
768
- encoding: 'utf-8',
769
- timeout: 5000,
770
- stdio: ['pipe', 'pipe', 'pipe'],
771
- env: process.env,
772
- });
773
- const status = JSON.parse(out);
774
- if (status.sealed) {
775
- return { name: 'Vault', passed: false, error: 'Vault is sealed', fix: 'Run `vault operator unseal`' };
776
- }
777
- return { name: 'Vault', passed: true, message: `Vault available at ${process.env.VAULT_ADDR} (unsealed)` };
778
- } catch {
779
- return { name: 'Vault', passed: false, error: `Cannot reach Vault at ${process.env.VAULT_ADDR}`, fix: 'Check VAULT_ADDR and network connectivity' };
780
- }
781
- }
782
- return { name: 'Vault', passed: true, message: 'vault CLI installed (VAULT_ADDR not set)' };
783
- } catch {
784
- return { name: 'Vault', passed: true, message: 'vault CLI not installed (optional)' };
785
- }
786
- }
787
-
788
- /**
789
- * Check CI/CD CLIs: gh, glab, circleci (C3/L10)
790
- */
791
- async function checkCICDCLIs(_options: DoctorOptions): Promise<CheckResult> {
792
- const { execFileSync } = await import('child_process');
793
- const clis = [
794
- { name: 'gh (GitHub CLI)', cmd: 'gh', args: ['--version'] },
795
- { name: 'glab (GitLab CLI)', cmd: 'glab', args: ['--version'] },
796
- { name: 'circleci CLI', cmd: 'circleci', args: ['--version'] },
797
- ];
798
- const found: string[] = [];
799
- for (const cli of clis) {
800
- try {
801
- execFileSync(cli.cmd, cli.args, { encoding: 'utf-8', timeout: 3000, stdio: ['pipe', 'pipe', 'pipe'] });
802
- found.push(cli.name);
803
- } catch { /* not installed */ }
804
- }
805
- return {
806
- name: 'CI/CD CLIs',
807
- passed: true,
808
- message: found.length > 0 ? `Found: ${found.join(', ')}` : 'No CI/CD CLIs installed (gh, glab, circleci are optional)',
809
- };
810
- }
811
-
812
- /**
813
- * Check GitOps CLIs: argocd, flux (H2/L10)
814
- */
815
- async function checkGitOpsCLIs(_options: DoctorOptions): Promise<CheckResult> {
816
- const { execFileSync } = await import('child_process');
817
- const clis = [
818
- { name: 'argocd', cmd: 'argocd', args: ['version', '--client'] },
819
- { name: 'flux', cmd: 'flux', args: ['--version'] },
820
- ];
821
- const found: string[] = [];
822
- for (const cli of clis) {
823
- try {
824
- execFileSync(cli.cmd, cli.args, { encoding: 'utf-8', timeout: 3000, stdio: ['pipe', 'pipe', 'pipe'] });
825
- found.push(cli.name);
826
- } catch { /* not installed */ }
827
- }
828
- return {
829
- name: 'GitOps CLIs',
830
- passed: true,
831
- message: found.length > 0 ? `Found: ${found.join(', ')}` : 'No GitOps CLIs installed (argocd, flux are optional)',
832
- };
833
- }
834
-
835
- /**
836
- * Pre-flight checks for common DevOps issues (L10)
837
- */
838
- async function checkDevOpsPreFlight(options: DoctorOptions): Promise<CheckResult> {
839
- const { execFileSync } = await import('child_process');
840
- const issues: string[] = [];
841
- const hints: string[] = [];
842
-
843
- // kubectl cluster reachability
844
- try {
845
- execFileSync('kubectl', ['cluster-info', '--request-timeout=5s'], {
846
- encoding: 'utf-8', timeout: 8000, stdio: ['pipe', 'pipe', 'pipe'],
847
- });
848
- } catch (e) {
849
- const msg = e instanceof Error ? e.message : String(e);
850
- if (!msg.includes('not found') && !msg.includes('ENOENT')) {
851
- issues.push('kubectl: cannot reach cluster');
852
- hints.push('Check kubectl context: `kubectl config current-context`');
853
- }
854
- }
855
-
856
- // helm repos
857
- try {
858
- const out = execFileSync('helm', ['repo', 'list', '-o', 'json'], {
859
- encoding: 'utf-8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'],
860
- });
861
- const repos = JSON.parse(out || '[]');
862
- if (!Array.isArray(repos) || repos.length === 0) {
863
- hints.push('No Helm repos configured. Add one: `helm repo add stable https://charts.helm.sh/stable`');
864
- }
865
- } catch { /* helm not installed or no repos */ }
866
-
867
- // GCP project
868
- if (process.env.GOOGLE_APPLICATION_CREDENTIALS || process.env.CLOUDSDK_CORE_PROJECT) {
869
- try {
870
- const proj = execFileSync('gcloud', ['config', 'get-value', 'project'], {
871
- encoding: 'utf-8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'],
872
- }).trim();
873
- if (!proj || proj === '(unset)') {
874
- hints.push('GCP project not set. Run: `gcloud config set project <PROJECT_ID>`');
875
- }
876
- } catch { /* gcloud not installed */ }
877
- }
878
-
879
- if (options.fix) {
880
- // Auto-fix: helm repo update
881
- try {
882
- execFileSync('helm', ['repo', 'update'], { encoding: 'utf-8', timeout: 30000, stdio: ['pipe', 'pipe', 'pipe'] });
883
- } catch { /* ignore */ }
884
- }
885
-
886
- if (issues.length > 0) {
887
- return {
888
- name: 'DevOps Pre-flight',
889
- passed: false,
890
- error: issues.join('; '),
891
- fix: hints.join(' | '),
892
- };
893
- }
894
-
895
- return {
896
- name: 'DevOps Pre-flight',
897
- passed: true,
898
- message: hints.length > 0 ? `OK (warnings: ${hints.join('; ')})` : 'All pre-flight checks passed',
899
- };
900
- }
901
-
902
- /** M5: Check helm-secrets plugin and sops availability */
903
- async function checkHelmSecrets(_options: DoctorOptions): Promise<CheckResult> {
904
- const { execFileSync } = await import('child_process');
905
- const warnings: string[] = [];
906
-
907
- try {
908
- const out = execFileSync('helm', ['plugin', 'list'], { encoding: 'utf-8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'] });
909
- if (!out.includes('secrets')) {
910
- warnings.push('helm-secrets plugin not installed (run: helm plugin install https://github.com/jkroepke/helm-secrets)');
911
- }
912
- } catch {
913
- warnings.push('helm not available — cannot check helm-secrets plugin');
914
- }
915
-
916
- try {
917
- execFileSync('sops', ['--version'], { encoding: 'utf-8', timeout: 3000, stdio: ['pipe', 'pipe', 'pipe'] });
918
- } catch {
919
- warnings.push('sops not installed (run: brew install sops)');
920
- }
921
-
922
- return {
923
- name: 'Helm Secrets (M5)',
924
- passed: true,
925
- message: warnings.length > 0
926
- ? `Optional: ${warnings.join('; ')}`
927
- : 'helm-secrets plugin and sops are available',
928
- };
929
- }
930
-
931
-
932
- /**
933
- * H6: Check Terraform infrastructure context
934
- */
935
- async function checkInfraContext(): Promise<CheckResult> {
936
- const { existsSync } = await import('node:fs');
937
- const { join } = await import('node:path');
938
- const { exec } = await import('node:child_process');
939
- const { promisify } = await import('node:util');
940
- const execAsync2 = promisify(exec);
941
-
942
- const cwd = process.cwd();
943
- const hasTerraformDir = existsSync(join(cwd, '.terraform'));
944
- const hasTfFiles = existsSync(join(cwd, 'main.tf')) || existsSync(join(cwd, 'variables.tf'));
945
-
946
- if (!hasTfFiles && !hasTerraformDir) {
947
- return { name: 'Terraform Context', passed: true, message: 'No Terraform configuration in current directory' };
948
- }
949
-
950
- if (hasTfFiles && !hasTerraformDir) {
951
- return {
952
- name: 'Terraform Context',
953
- passed: false,
954
- error: 'Terraform files found but not initialized.',
955
- fix: 'Run: terraform init',
956
- };
957
- }
958
-
959
- if (hasTerraformDir) {
960
- try {
961
- const { stdout } = await execAsync2('terraform workspace list', { cwd, timeout: 10_000 });
962
- const workspaces = stdout.trim().split('\n').map((w: string) => w.trim());
963
- const active = workspaces.find((w: string) => w.startsWith('*')) ?? 'default';
964
- return { name: 'Terraform Context', passed: true, message: `Terraform initialized. Active workspace: ${active.replace('* ', '')}` };
965
- } catch {
966
- return { name: 'Terraform Context', passed: true, message: 'Terraform initialized but workspace check failed (connectivity issue)' };
967
- }
968
- }
969
-
970
- return { name: 'Terraform Context', passed: true, message: 'No Terraform context found' };
971
- }
972
-
973
- /**
974
- * H6: Check Kubernetes cluster reachability
975
- */
976
- async function checkKubeConfig(): Promise<CheckResult> {
977
- const { exec } = await import('node:child_process');
978
- const { promisify } = await import('node:util');
979
- const execAsync2 = promisify(exec);
980
-
981
- try {
982
- const { stdout: ctx } = await execAsync2('kubectl config current-context', { timeout: 5_000 });
983
- const context = ctx.trim();
984
- if (!context) return { name: 'Kubernetes Reachability', passed: true, message: 'kubectl: no active context' };
985
-
986
- try {
987
- await execAsync2('kubectl cluster-info --request-timeout=3s', { timeout: 8_000 });
988
- try {
989
- const { stdout: ns } = await execAsync2('kubectl config view --minify -o jsonpath={..namespace}', { timeout: 3_000 });
990
- const namespace = ns.trim() || 'default';
991
- return { name: 'Kubernetes Reachability', passed: true, message: `kubectl: context "${context}", namespace "${namespace}" — cluster reachable` };
992
- } catch {
993
- return { name: 'Kubernetes Reachability', passed: true, message: `kubectl: context "${context}" — cluster reachable` };
994
- }
995
- } catch {
996
- return { name: 'Kubernetes Reachability', passed: true, message: `kubectl: context "${context}" — cluster not reachable (check VPN/credentials)` };
997
- }
998
- } catch {
999
- return { name: 'Kubernetes Reachability', passed: true, message: 'kubectl: no context configured (not required)' };
1000
- }
1001
- }
1002
-
1003
- /**
1004
- * H6: Check Helm releases
1005
- */
1006
- async function checkHelmReleases(): Promise<CheckResult> {
1007
- const { exec } = await import('node:child_process');
1008
- const { promisify } = await import('node:util');
1009
- const execAsync2 = promisify(exec);
1010
-
1011
- try {
1012
- await execAsync2('which helm', { timeout: 3_000 });
1013
- const { stdout } = await execAsync2('helm list -A --output json', { timeout: 15_000 });
1014
- const releases: unknown[] = JSON.parse(stdout || '[]');
1015
- return { name: 'Helm Releases', passed: true, message: `Helm: ${releases.length} release(s) across all namespaces` };
1016
- } catch {
1017
- return { name: 'Helm Releases', passed: true, message: 'Helm not installed or no releases found' };
1018
- }
1019
- }
1020
-
1021
- /**
1022
- * M2: Check LLM connectivity by sending a minimal ping request.
1023
- */
1024
- async function checkLLMConnectivity(_options: DoctorOptions): Promise<CheckResult> {
1025
- try {
1026
- const { initApp } = await import('../app');
1027
- const { router } = await initApp();
1028
- let provider = 'unknown';
1029
- try {
1030
- const { loadLLMConfig } = await import('../llm/config-loader');
1031
- const cfg = loadLLMConfig();
1032
- provider = (cfg as unknown as Record<string, unknown>).defaultProvider as string ?? 'anthropic';
1033
- } catch { /* ignore */ }
1034
-
1035
- await Promise.race([
1036
- router.route({ messages: [{ role: 'user', content: 'ping' }], maxTokens: 1 }),
1037
- new Promise<never>((_, reject) => setTimeout(() => reject(new Error('timeout')), 8000)),
1038
- ]);
1039
- return { name: 'LLM Connectivity', passed: true, message: `Connected to ${provider}` };
1040
- } catch (e: any) {
1041
- return {
1042
- name: 'LLM Connectivity',
1043
- passed: false,
1044
- error: e.message,
1045
- fix: 'Run nimbus login to reconfigure',
1046
- };
1047
- }
1048
- }
1049
-
1050
- /**
1051
- * H4: Check DevOps CLI versions with structured version parsing
1052
- */
1053
- async function checkDevOpsCLIs(_options: DoctorOptions): Promise<CheckResult> {
1054
- const { execFileSync } = await import('child_process');
1055
-
1056
- const tools = [
1057
- { name: 'terraform', args: ['version', '-json'], parse: (o: string) => { try { return JSON.parse(o).terraform_version; } catch { return undefined; } } },
1058
- { name: 'kubectl', args: ['version', '--client', '--output=json'], parse: (o: string) => { try { return JSON.parse(o).clientVersion?.gitVersion; } catch { return undefined; } } },
1059
- { name: 'helm', args: ['version', '--short'], parse: (o: string) => o.trim() },
1060
- { name: 'aws', args: ['--version'], parse: (o: string) => o.split('/')[1]?.split(' ')[0] ?? o.trim() },
1061
- { name: 'docker', args: ['--version'], parse: (o: string) => o.replace('Docker version ', '').split(',')[0] },
1062
- ];
1063
-
1064
- const results: string[] = [];
1065
- const missing: string[] = [];
1066
-
1067
- for (const t of tools) {
1068
- try {
1069
- const out = execFileSync(t.name, t.args, { encoding: 'utf-8', timeout: 5000, stdio: ['pipe', 'pipe', 'pipe'] });
1070
- const ver = t.parse(out);
1071
- results.push(` ${t.name.padEnd(12)} ${ver ?? 'installed'}`);
1072
- } catch {
1073
- missing.push(t.name);
1074
- }
1075
- }
1076
-
1077
- const passed = missing.length === 0;
1078
- return {
1079
- name: 'DevOps CLIs',
1080
- passed,
1081
- message: passed ? `All CLIs found:\n${results.join('\n')}` : `Installed:\n${results.join('\n')}`,
1082
- error: missing.length > 0 ? `Not found in PATH: ${missing.join(', ')}` : undefined,
1083
- fix: missing.length > 0 ? `Install missing tools: ${missing.join(', ')}` : undefined,
1084
- };
1085
- }
1086
-
1087
- /**
1088
- * H7: Check Node.js version (>= 18) and tsx availability
1089
- */
1090
- async function checkNodeRuntime(_options: DoctorOptions): Promise<CheckResult> {
1091
- const nodeVersion = process.versions.node;
1092
- const majorStr = nodeVersion.split('.')[0];
1093
- const major = parseInt(majorStr ?? '0', 10);
1094
-
1095
- if (major < 18) {
1096
- return {
1097
- name: 'Node.js Runtime',
1098
- passed: false,
1099
- error: `Node.js ${nodeVersion} is too old (requires >= 18)`,
1100
- fix: 'Upgrade Node.js: https://nodejs.org/',
1101
- };
1102
- }
1103
-
1104
- // Check tsx availability
1105
- const { execFileSync } = await import('child_process');
1106
- let tsxVersion: string | undefined;
1107
- try {
1108
- tsxVersion = execFileSync('npx', ['tsx', '--version'], {
1109
- encoding: 'utf-8',
1110
- timeout: 5000,
1111
- stdio: ['pipe', 'pipe', 'pipe'],
1112
- }).trim();
1113
- } catch {
1114
- // tsx may be installed locally without npx
1115
- try {
1116
- const path = await import('path');
1117
- const { existsSync } = await import('fs');
1118
- const localTsx = path.join(process.cwd(), 'node_modules', '.bin', 'tsx');
1119
- if (existsSync(localTsx)) {
1120
- tsxVersion = 'installed (local)';
1121
- }
1122
- } catch { /* ignore */ }
1123
- }
1124
-
1125
- return {
1126
- name: 'Node.js Runtime',
1127
- passed: true,
1128
- message: `Node.js ${nodeVersion}${tsxVersion ? ` tsx: ${tsxVersion}` : ' tsx: not found (install tsx for dev mode)'}`,
1129
- };
1130
- }
1131
-
1132
- /**
1133
- * All diagnostic checks
1134
- */
1135
- const DIAGNOSTIC_CHECKS: Array<{ name: string; check: DiagnosticCheck }> = [
1136
- { name: 'Node.js Runtime', check: checkNodeRuntime },
1137
- { name: 'Configuration', check: checkConfiguration },
1138
- { name: 'LLM Provider', check: checkLLMProvider },
1139
- { name: 'LLM Connectivity', check: checkLLMConnectivity },
1140
- { name: 'Core Systems', check: checkCoreServices },
1141
- { name: 'DevOps Tools', check: checkToolServices },
1142
- { name: 'Cloud Credentials', check: checkCloudCredentials },
1143
- { name: 'Cloud Connectivity', check: checkCloudConnectivity },
1144
- { name: 'Dependencies', check: checkDependencies },
1145
- { name: 'Disk Space', check: checkDiskSpace },
1146
- { name: 'Network', check: checkNetwork },
1147
- { name: 'Docker Daemon', check: checkDockerDaemon },
1148
- { name: 'Vault', check: checkVault },
1149
- { name: 'CI/CD CLIs', check: checkCICDCLIs },
1150
- { name: 'GitOps CLIs', check: checkGitOpsCLIs },
1151
- { name: 'Helm Secrets', check: checkHelmSecrets },
1152
- { name: 'DevOps Pre-flight', check: checkDevOpsPreFlight },
1153
- { name: 'Terraform Context', check: checkInfraContext },
1154
- { name: 'Kubernetes Reachability', check: checkKubeConfig },
1155
- { name: 'Helm Releases', check: checkHelmReleases },
1156
- { name: 'DevOps CLIs', check: checkDevOpsCLIs },
1157
- ];
1158
-
1159
- // ---------------------------------------------------------------------------
1160
- // Gap 19: Fast startup health checks (subset of doctor, no network calls)
1161
- // ---------------------------------------------------------------------------
1162
-
1163
- export interface StartupCheckResult {
1164
- /** Issues that prevent Nimbus from starting (shown as blocking errors). */
1165
- critical: string[];
1166
- /** Non-blocking warnings shown as first system message in TUI. */
1167
- warnings: string[];
1168
- }
1169
-
1170
- /**
1171
- * Run a fast pre-flight check before starting the TUI (<500ms per check).
1172
- * Only checks that do NOT require network access are included here.
1173
- *
1174
- * Critical failures prevent TUI startup; warnings are surfaced as system messages.
1175
- */
1176
- export async function runStartupChecks(): Promise<StartupCheckResult> {
1177
- const critical: string[] = [];
1178
- const warnings: string[] = [];
1179
-
1180
- // Critical: LLM credentials must be present
1181
- const llmKeys = ['ANTHROPIC_API_KEY', 'OPENAI_API_KEY', 'GOOGLE_API_KEY', 'GROQ_API_KEY'];
1182
- const hasLLMKey = llmKeys.some(k => process.env[k]);
1183
- if (!hasLLMKey) {
1184
- // Also check stored credentials file
1185
- try {
1186
- const { join } = await import('node:path');
1187
- const { homedir } = await import('node:os');
1188
- const { readFileSync, existsSync } = await import('node:fs');
1189
- const credsFile = join(homedir(), '.nimbus', 'auth.json');
1190
- if (existsSync(credsFile)) {
1191
- const creds = JSON.parse(readFileSync(credsFile, 'utf-8'));
1192
- if (Object.keys(creds.providers ?? {}).length === 0) {
1193
- critical.push('No LLM credentials found. Set ANTHROPIC_API_KEY or run `nimbus login`.');
1194
- }
1195
- } else {
1196
- critical.push('No LLM credentials found. Set ANTHROPIC_API_KEY or run `nimbus login`.');
1197
- }
1198
- } catch {
1199
- critical.push('No LLM credentials found. Set ANTHROPIC_API_KEY or run `nimbus login`.');
1200
- }
1201
- }
1202
-
1203
- // Warning: no NIMBUS.md in CWD
1204
- try {
1205
- const { existsSync } = await import('node:fs');
1206
- const { join } = await import('node:path');
1207
- const hasNimbusMd = existsSync(join(process.cwd(), 'NIMBUS.md')) ||
1208
- existsSync(join(process.cwd(), '.nimbus', 'NIMBUS.md'));
1209
- if (!hasNimbusMd) {
1210
- warnings.push('No NIMBUS.md found. Run `nimbus init` to generate project context.');
1211
- }
1212
- } catch { /* ignore */ }
1213
-
1214
- // Warning: kubectl context not set
1215
- try {
1216
- const { execSync } = await import('node:child_process');
1217
- execSync('kubectl config current-context', { timeout: 2000, stdio: ['pipe', 'pipe', 'pipe'] });
1218
- } catch {
1219
- warnings.push('kubectl not configured or not in PATH. K8s operations will be unavailable.');
1220
- }
1221
-
1222
- // Warning: terraform not in PATH
1223
- try {
1224
- const { execSync } = await import('node:child_process');
1225
- execSync('terraform version', { timeout: 2000, stdio: ['pipe', 'pipe', 'pipe'] });
1226
- } catch {
1227
- warnings.push('terraform not in PATH. Install terraform to use Terraform operations.');
1228
- }
1229
-
1230
- return { critical, warnings };
1231
- }
1232
-
1233
- /**
1234
- * Run the doctor command
1235
- */
1236
- export async function doctorCommand(options: DoctorOptions = {}): Promise<void> {
1237
- logger.debug('Running doctor command', { options });
1238
-
1239
- // In quiet mode, suppress banner/header — only show findings
1240
- if (!options.quiet) {
1241
- ui.header('Nimbus Doctor');
1242
- ui.info('Running diagnostic checks...');
1243
- ui.newLine();
1244
- }
1245
-
1246
- const results: CheckResult[] = [];
1247
- let allPassed = true;
1248
-
1249
- for (const { name, check } of DIAGNOSTIC_CHECKS) {
1250
- if (!options.quiet) {
1251
- ui.write(` ${name.padEnd(20)}`);
1252
- }
1253
-
1254
- try {
1255
- const result = await check(options);
1256
- results.push(result);
1257
-
1258
- if (result.passed) {
1259
- if (!options.quiet) {
1260
- ui.print(`${ui.color('✓', 'green')} ${result.message || 'OK'}`);
1261
- }
1262
- } else {
1263
- allPassed = false;
1264
-
1265
- if (options.quiet) {
1266
- // In quiet mode, only print failures
1267
- ui.print(`FAIL ${name}: ${result.error || 'Failed'}${result.fix ? ` — ${result.fix}` : ''}`);
1268
- } else {
1269
- ui.print(`${ui.color('✗', 'red')} ${result.error || 'Failed'}`);
1270
-
1271
- if (options.fix && result.runFix) {
1272
- ui.print(` → Attempting fix...`);
1273
- try {
1274
- await result.runFix();
1275
- ui.print(` → ${ui.color('Fixed', 'green')}`);
1276
- } catch (fixError: any) {
1277
- ui.print(
1278
- ` → ${ui.color(`Fix failed: ${fixError.message}`, 'red')}`
1279
- );
1280
- }
1281
- } else if (result.fix) {
1282
- ui.print(` → ${ui.dim(result.fix)}`);
1283
- }
1284
- }
1285
- }
1286
-
1287
- // Show details in verbose mode (not quiet)
1288
- if (!options.quiet && options.verbose && result.details) {
1289
- for (const [key, value] of Object.entries(result.details)) {
1290
- if (Array.isArray(value)) {
1291
- ui.print(` ${key}:`);
1292
- for (const item of value) {
1293
- if (typeof item === 'object') {
1294
- ui.print(` - ${JSON.stringify(item)}`);
1295
- } else {
1296
- ui.print(` - ${item}`);
1297
- }
1298
- }
1299
- } else {
1300
- ui.print(` ${key}: ${value}`);
1301
- }
1302
- }
1303
- }
1304
- } catch (error: any) {
1305
- if (!options.quiet) {
1306
- ui.print(`${ui.color('✗', 'red')} Error: ${error.message}`);
1307
- } else {
1308
- ui.print(`FAIL ${name}: Error: ${error.message}`);
1309
- }
1310
- results.push({
1311
- name,
1312
- passed: false,
1313
- error: error.message,
1314
- });
1315
- allPassed = false;
1316
- }
1317
- }
1318
-
1319
- if (!options.quiet) {
1320
- ui.newLine();
1321
- }
1322
-
1323
- // JSON output
1324
- if (options.json) {
1325
- console.log(
1326
- JSON.stringify(
1327
- {
1328
- passed: allPassed,
1329
- results: results.map(r => ({
1330
- name: r.name,
1331
- passed: r.passed,
1332
- message: r.message,
1333
- error: r.error,
1334
- details: r.details,
1335
- })),
1336
- },
1337
- null,
1338
- 2
1339
- )
1340
- );
1341
- if (!allPassed) process.exit(1);
1342
- return;
1343
- }
1344
-
1345
- // Summary
1346
- const passedCount = results.filter(r => r.passed).length;
1347
- const totalCount = results.length;
1348
-
1349
- if (allPassed) {
1350
- if (!options.quiet) {
1351
- ui.success(`All checks passed! (${passedCount}/${totalCount})`);
1352
- }
1353
- } else {
1354
- const failedCount = totalCount - passedCount;
1355
- if (!options.quiet) {
1356
- ui.warning(`${failedCount} check(s) failed. ${passedCount}/${totalCount} passed.`);
1357
- ui.newLine();
1358
- ui.info('Run with --fix to attempt automatic fixes');
1359
- ui.info('Run with --verbose for more details');
1360
- }
1361
- process.exit(1);
1362
- }
1363
-
1364
- // Quality Metrics (suppressed in quiet mode)
1365
- if (options.metrics && !options.quiet) {
1366
- ui.newLine();
1367
- ui.header('Quality Metrics');
1368
-
1369
- try {
1370
- const { getDb } = await import('../state/db');
1371
- const db = getDb();
1372
- // Get basic usage stats from the local SQLite database
1373
- const sessionsRow = db.prepare('SELECT COUNT(*) as count FROM sessions').get() as { count: number } | undefined;
1374
- const sessionCount = sessionsRow?.count ?? 0;
1375
- ui.newLine();
1376
- ui.print(` Total sessions ${sessionCount}`);
1377
- ui.print(` Database ~/.nimbus/nimbus.db`);
1378
- ui.print(` Detailed metrics nimbus serve (HTTP API)`);
1379
- } catch {
1380
- ui.warning('Could not fetch metrics. Run "nimbus serve" for the full metrics API.');
1381
- }
1382
- }
1383
- }
1384
-
1385
- // Export as default command
1386
- export default doctorCommand;