@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,990 +0,0 @@
1
- /**
2
- * System Prompt Builder for the Nimbus Agentic Loop
3
- *
4
- * Generates the complete system prompt that is injected as the first message
5
- * in every LLM conversation. The prompt tells the model who it is, what mode
6
- * it is operating in, which tools are available, and how to behave.
7
- *
8
- * The prompt is assembled from several composable sections:
9
- *
10
- * 1. **Base identity** -- who Nimbus is and its core behavioral rules.
11
- * 2. **Mode instructions** -- what the current {@link AgentMode} allows.
12
- * 3. **Tool-use guidelines** -- general best practices for tool invocation.
13
- * 4. **Available tools** -- a summarized list built from {@link ToolDefinition}s.
14
- * 5. **NIMBUS.md** -- optional per-project or per-user custom instructions.
15
- * 6. **Subagent instructions** -- constraints when running as a spawned subagent.
16
- * 7. **Environment context** -- working directory, platform, date, git status.
17
- *
18
- * @module agent/system-prompt
19
- */
20
-
21
- import * as fs from 'node:fs';
22
- import * as path from 'node:path';
23
- import { homedir } from 'node:os';
24
- import { execSync } from 'node:child_process';
25
- import type { ToolDefinition } from '../tools/schemas/types';
26
-
27
- // ---------------------------------------------------------------------------
28
- // Agent Mode
29
- // ---------------------------------------------------------------------------
30
-
31
- /**
32
- * Agent modes that control tool availability and behavior.
33
- *
34
- * | Mode | Description |
35
- * | -------- | ---------------------------------------------------------- |
36
- * | `plan` | Read-only exploration, analysis, and proposal generation. |
37
- * | `build` | File editing, code generation, and non-destructive DevOps. |
38
- * | `deploy` | Full infrastructure mutation with approval gates. |
39
- */
40
- export type AgentMode = 'plan' | 'build' | 'deploy';
41
-
42
- /**
43
- * Ordered list of all agent modes from least permissive to most permissive.
44
- * Useful for comparison and escalation logic.
45
- */
46
- export const AGENT_MODES: readonly AgentMode[] = ['plan', 'build', 'deploy'] as const;
47
-
48
- // ---------------------------------------------------------------------------
49
- // System Prompt Options
50
- // ---------------------------------------------------------------------------
51
-
52
- /**
53
- * Options for building the system prompt via {@link buildSystemPrompt}.
54
- */
55
- export interface SystemPromptOptions {
56
- /** Current agent mode -- controls which actions are permitted. */
57
- readonly mode: AgentMode;
58
-
59
- /** Available tools (already filtered by mode before being passed in). */
60
- readonly tools: ToolDefinition[];
61
-
62
- /**
63
- * Custom instructions loaded from a `NIMBUS.md` file. When provided this
64
- * value is used directly; when omitted the builder will attempt to
65
- * discover and load the file automatically via {@link loadNimbusMd}.
66
- */
67
- readonly nimbusInstructions?: string;
68
-
69
- /** Current working directory. Defaults to `process.cwd()`. */
70
- readonly cwd?: string;
71
-
72
- /**
73
- * Active subagent name. When set, the prompt includes additional
74
- * constraints that prevent recursive subagent spawning and encourage
75
- * focused, scoped execution.
76
- */
77
- readonly activeSubagent?: string;
78
-
79
- /**
80
- * Live infrastructure context discovered at startup or session resume (Gaps 7 & 10).
81
- * When provided, a "Current Infrastructure Context" section is appended to the prompt.
82
- */
83
- readonly infraContext?: {
84
- terraformWorkspace?: string;
85
- kubectlContext?: string;
86
- helmReleases?: string[];
87
- awsAccount?: string;
88
- awsRegion?: string;
89
- gcpProject?: string;
90
- };
91
-
92
- /**
93
- * M1: Dry-run mode flag. When true, appends a hard constraint at the end
94
- * of the system prompt instructing the agent not to execute any mutating
95
- * operations and to only list what it would do.
96
- */
97
- readonly dryRun?: boolean;
98
- }
99
-
100
- // ---------------------------------------------------------------------------
101
- // Public API
102
- // ---------------------------------------------------------------------------
103
-
104
- /**
105
- * Build the complete system prompt for the agentic loop.
106
- *
107
- * The returned string is intended to be used as the `system` message (or
108
- * first `user`/`system` message, depending on the LLM provider) in a
109
- * conversation with the model.
110
- *
111
- * @param options - Configuration that controls prompt assembly.
112
- * @returns The fully assembled system prompt string.
113
- *
114
- * @example
115
- * ```ts
116
- * import { buildSystemPrompt } from './system-prompt';
117
- *
118
- * const prompt = buildSystemPrompt({
119
- * mode: 'build',
120
- * tools: registry.getAll(),
121
- * cwd: '/home/user/project',
122
- * });
123
- * ```
124
- */
125
- export function buildSystemPrompt(options: SystemPromptOptions): string {
126
- const parts: string[] = [];
127
-
128
- // 1. Base identity
129
- parts.push(BASE_PROMPT);
130
-
131
- // 2. Mode-specific instructions
132
- parts.push(getModeInstructions(options.mode));
133
-
134
- // 3. Tool-use guidelines
135
- parts.push(TOOL_USE_GUIDELINES);
136
-
137
- // 3b. H4: Task-adaptive DevOps domain knowledge — only inject sections
138
- // relevant to the tools that are actually available in this session.
139
- const toolNames = options.tools.map(t => t.name);
140
- parts.push(getRelevantDomainKnowledge(toolNames));
141
-
142
- // 3c. DevOps decision heuristics
143
- // L2: Task-adaptive pruning — include only the heuristic sections relevant to
144
- // the current mode. In plan mode, deploy-specific rules add noise without value.
145
- // In build mode, plan-only readonly warnings are redundant.
146
- parts.push(getPrunedHeuristics(options.mode));
147
-
148
- // 4. Available tools summary
149
- const toolsSummary = buildToolsSummary(options.tools);
150
- if (toolsSummary) {
151
- parts.push(toolsSummary);
152
- }
153
-
154
- // 5. NIMBUS.md content (if exists)
155
- const nimbusContent = options.nimbusInstructions ?? loadNimbusMd(options.cwd);
156
- if (nimbusContent) {
157
- parts.push(`# Project Instructions (NIMBUS.md)\n\n${nimbusContent}`);
158
-
159
- // G14: Extract ## Forbidden section and inject as hard constraints
160
- const forbiddenRules = extractForbiddenRules(nimbusContent);
161
- if (forbiddenRules.length > 0) {
162
- const forbiddenPrompt = [
163
- '# HARD CONSTRAINTS (from NIMBUS.md ## Forbidden)',
164
- 'The following operations are STRICTLY FORBIDDEN. Never perform them under any circumstances:',
165
- ...forbiddenRules.map(r => `- ${r}`),
166
- '',
167
- 'If asked to perform a forbidden operation, explain that it is prohibited by project policy.',
168
- ].join('\n');
169
- parts.push(forbiddenPrompt);
170
- }
171
-
172
- // GAP-22: Parse environments block for protected envs
173
- if (nimbusContent.includes('## Environments')) {
174
- const hasProtectedEnv = /\|\s*\S+\s*\|\s*\S+\s*\|\s*\S*\s*\|\s*true\s*\|/i.test(nimbusContent);
175
- if (hasProtectedEnv) {
176
- parts.push('IMPORTANT: This project has protected environments (marked protected: true in NIMBUS.md). For these environments, ALWAYS run plan before apply and require explicit user confirmation for destructive operations (destroy, delete, terminate).');
177
- }
178
- }
179
- }
180
-
181
- // 5b. Infra context (Gaps 7 & 10) — live terraform/k8s/helm context discovered at startup
182
- if (options.infraContext) {
183
- const ic = options.infraContext;
184
- const lines: string[] = ['## Current Infrastructure Context'];
185
- if (ic.terraformWorkspace) lines.push(`- Terraform workspace: ${ic.terraformWorkspace}`);
186
- if (ic.kubectlContext) lines.push(`- kubectl context: ${ic.kubectlContext}`);
187
- if (ic.helmReleases && ic.helmReleases.length > 0) {
188
- lines.push(`- Active Helm releases: ${ic.helmReleases.slice(0, 5).join(', ')}`);
189
- }
190
- if (ic.awsAccount) lines.push(`- AWS account: ${ic.awsAccount}`);
191
- if (ic.awsRegion) lines.push(`- AWS region: ${ic.awsRegion}`);
192
- if (ic.gcpProject) lines.push(`- GCP project: ${ic.gcpProject}`);
193
- parts.push(lines.join('\n'));
194
-
195
- // H3: Inject known resource inventory for better tool call accuracy.
196
- // Lists exact names for contexts, releases, workspaces, and cloud accounts
197
- // so the agent uses them verbatim instead of guessing.
198
- const resourceInventory: string[] = [];
199
- if (ic.kubectlContext) {
200
- resourceInventory.push(`kubectl context: ${ic.kubectlContext}`);
201
- }
202
- if (ic.helmReleases && ic.helmReleases.length > 0) {
203
- resourceInventory.push(`Helm releases: ${ic.helmReleases.join(', ')}`);
204
- }
205
- if (ic.terraformWorkspace) {
206
- resourceInventory.push(`Terraform workspace: ${ic.terraformWorkspace}`);
207
- }
208
- if (ic.awsAccount) {
209
- resourceInventory.push(`AWS account: ${ic.awsAccount} (${ic.awsRegion ?? 'unknown region'})`);
210
- }
211
- // C6: Inject awsRegion standalone so LLM passes correct region to tool calls
212
- if (ic.awsRegion) {
213
- resourceInventory.push(`AWS default region: ${ic.awsRegion} (pass region param to target others)`);
214
- }
215
- if (ic.gcpProject) {
216
- resourceInventory.push(`GCP project: ${ic.gcpProject}`);
217
- }
218
-
219
- if (resourceInventory.length > 0) {
220
- parts.push(
221
- `## Known Infrastructure Resources\nUse these exact names when calling tools:\n${resourceInventory.map(r => `- ${r}`).join('\n')}`
222
- );
223
- }
224
- }
225
-
226
- // 6. Subagent instructions (if applicable)
227
- if (options.activeSubagent) {
228
- parts.push(getSubagentInstructions(options.activeSubagent));
229
- }
230
-
231
- // 7. Environment context
232
- parts.push(buildEnvironmentContext(options.cwd));
233
-
234
- // C5: Primary cloud providers section (from ~/.nimbus/config.json)
235
- const primaryCloudsSection = buildPrimaryCloudSection();
236
- if (primaryCloudsSection) {
237
- parts.push(primaryCloudsSection);
238
- }
239
-
240
- // M1: Dry-run mode — append hard constraint at the end so it takes priority
241
- if (options.dryRun) {
242
- parts.push(
243
- '# DRY-RUN MODE — ACTIVE\n\n' +
244
- 'DRY-RUN MODE: Do not execute any mutating operations. ' +
245
- 'List exactly what you would do step by step.\n\n' +
246
- 'You MUST NOT:\n' +
247
- '- Apply, create, update, or delete any infrastructure\n' +
248
- '- Run terraform apply, kubectl apply, helm install/upgrade/uninstall\n' +
249
- '- Write or modify files\n' +
250
- '- Execute any destructive bash commands\n\n' +
251
- 'Instead, describe precisely what each step would do and why.'
252
- );
253
- }
254
-
255
- return parts.join('\n\n---\n\n');
256
- }
257
-
258
- // ---------------------------------------------------------------------------
259
- // Prompt Fragments
260
- // ---------------------------------------------------------------------------
261
-
262
- /**
263
- * Core identity and behavioral rules that apply regardless of mode.
264
- * @internal
265
- */
266
- const BASE_PROMPT = `You are Nimbus, an autonomous DevOps operator. Your job is to keep
267
- infrastructure healthy, deployments flowing, and production stable — through direct action.
268
-
269
- Your PRIMARY instinct is to RUN commands and query live state first:
270
- - When something is broken: run \`kubectl describe\`, \`terraform plan\`, \`aws logs\` BEFORE reading files
271
- - When asked about infrastructure state: query it (\`kubectl get pods -A\`, \`terraform state list\`)
272
- - When asked to deploy: validate → plan → show plan → confirm → apply
273
- - Edit IaC files only as a follow-up once diagnostics reveal what must change
274
-
275
- Your domain is DevOps: Terraform, Kubernetes, Helm, AWS, GCP, Azure, CI/CD, Docker, secrets management.
276
-
277
- Key operational rules:
278
- - Run diagnostics and infrastructure commands FIRST — do not start by reading files
279
- - Always show a plan/preview and get confirmation before destructive operations
280
- - Always run validation (terraform validate, kubectl --dry-run) before apply
281
- - Be namespace-aware for Kubernetes; always pass \`-n <namespace>\` explicitly
282
- - Explain what you are doing and why at each step
283
- - If a tool call fails, classify the error and try a corrective approach before giving up
284
- - Make precise, targeted edits to IaC files — never rewrite entire configurations
285
-
286
- You are specialized exclusively for DevOps, infrastructure, and cloud operations. If asked to help with tasks unrelated to DevOps (e.g., building a UI, writing business logic, general algorithms unrelated to infrastructure), respond: "I'm specialized for DevOps and infrastructure. For general software development, try a general-purpose coding agent. Is there an infrastructure or deployment aspect I can help with?"`;
287
-
288
- /**
289
- * General best-practice guidelines for tool invocation that are included in
290
- * every prompt regardless of mode.
291
- * @internal
292
- */
293
- const TOOL_USE_GUIDELINES = `# Tool-Use Guidelines
294
-
295
- - Use the most specific tool available. Prefer \`read_file\` over \`bash cat\`, \`glob\` over \`bash find\`, \`grep\` over \`bash grep\`.
296
- - For file edits, use \`edit_file\` for single replacements and \`multi_edit\` for multiple replacements in the same file.
297
- - Use \`write_file\` only for creating new files or complete rewrites.
298
- - When running bash commands, prefer specific commands over broad ones. Avoid \`rm -rf\` or other destructive patterns.
299
- - For infrastructure operations, always run validation (terraform validate, kubectl --dry-run) before apply.
300
- - Use \`deploy_preview\` before any destructive infrastructure change.
301
- - Use the \`task\` tool to spawn subagents for parallel or specialized work.
302
- - When using \`terraform\`, always run \`terraform init\` before \`plan\` or \`apply\` if not already initialized.
303
- - For Kubernetes operations, be namespace-aware. Default to the current namespace context.
304
- - Never read or search inside generated/dependency directories: \`node_modules/\`, \`dist/\`, \`build/\`, \`__pycache__/\`, \`.terraform/\`, \`.git/\`, \`coverage/\`, \`.next/\`, \`vendor/\`. These are never relevant to editing source code and will waste context window.
305
- - Respect \`.gitignore\` patterns — do not read files that would be gitignored unless the user explicitly asks for them.`;
306
-
307
- // ---------------------------------------------------------------------------
308
- // H4: Task-Adaptive DevOps Domain Knowledge
309
- //
310
- // The domain knowledge is split into named sections. buildSystemPrompt uses
311
- // getRelevantDomainKnowledge() to include only the sections that are relevant
312
- // to the tools available in the current session, keeping the prompt concise.
313
- // ---------------------------------------------------------------------------
314
-
315
- /**
316
- * Per-domain knowledge sections keyed by domain name.
317
- * @internal
318
- */
319
- const DOMAIN_SECTIONS: Record<string, string> = {
320
- general: `## General DevOps Principles
321
- - Infrastructure drift: plan outputs starting with \`~\` = modify, \`-\` = destroy, \`+\` = create
322
- - Zero-downtime deploys: rolling updates, blue/green, canary with traffic splitting
323
- - Secret management: never hardcode secrets; use SSM Parameter Store, Secrets Manager, Vault, or sealed-secrets
324
- - Observability: logs → \`kubectl logs\`, metrics → \`kubectl top\`, traces → service mesh
325
- - Cost optimization: right-size instances, use spot/preemptible for stateless workloads
326
-
327
- ## Docker Best Practices
328
- - Always use multi-stage builds to minimize image size; pin base image tags (avoid \`latest\`)
329
- - Build: \`docker build -t myapp:v1.0 -f Dockerfile .\`
330
- - Compose: \`docker compose up -d\` starts detached; \`docker compose down\` removes containers
331
- - Check daemon: \`docker info\`; if not running → \`colima start\` (macOS) or \`sudo systemctl start docker\`
332
- - Common errors:
333
- - \`cannot connect to the Docker daemon\` → start Docker Desktop or run \`colima start\`
334
- - \`manifest not found\` → verify image name/tag; check registry login (\`docker login\`)
335
- - \`no space left on device\` → run \`docker system prune -f\` to reclaim space
336
- - \`permission denied\` on socket → add user to docker group or use \`sudo\`
337
-
338
- ## Incident Management (PagerDuty & Opsgenie)
339
- - PagerDuty: requires \`PD_API_KEY\` env var; list incidents with action=incidents, acknowledge with action=ack, resolve with action=resolve
340
- - Opsgenie: requires \`OPSGENIE_API_KEY\` env var; list alerts with action=alerts, acknowledge with action=ack, close with action=resolve
341
- - On-call schedule: use action=on-call with provider=pagerduty or provider=opsgenie to see who is currently on call
342
- - Incident response workflow: acknowledge first (stops escalation) → investigate → resolve
343
- - Common errors:
344
- - \`401 Unauthorized\` → verify API key is correct and not expired
345
- - \`403 Forbidden\` → check API key permissions (needs read+write for ack/resolve)
346
- - \`404 Not Found\` → verify incident/alert ID is correct (use list first)
347
-
348
- ## Web Search for DevOps
349
- - Use \`web_search\` to look up error codes, provider limits, API endpoints, pricing
350
- - Set \`BRAVE_API_KEY\` env var for higher-quality search results via Brave Search API`,
351
-
352
- terraform: `## Terraform Best Practices
353
- - Always run \`terraform validate\` → \`terraform plan\` → \`terraform apply\` in sequence
354
- - Use \`terraform plan -out=tfplan\` to save plan files; apply with \`terraform apply tfplan\`
355
- - For state inspection: \`terraform state list\`, \`terraform state show <resource>\`
356
- - Remote state: prefer S3+DynamoDB (AWS), GCS (GCP), Azure Blob. Never commit \`.tfstate\` files
357
- - Workspaces: \`terraform workspace new <env>\`, \`terraform workspace select <env>\`
358
- - Module structure: \`main.tf\`, \`variables.tf\`, \`outputs.tf\`, \`versions.tf\`
359
- - Lock files (\`.terraform.lock.hcl\`) MUST be committed to version control
360
- - Use \`count\` or \`for_each\` for resource iteration; avoid \`count\` for ordered resources
361
- - \`depends_on\` is a last resort — prefer implicit dependencies via references
362
-
363
- ## Error Diagnosis — Terraform
364
- - \`Error: The provider "hashicorp/aws" requires Terraform >= X\` → run \`terraform init -upgrade\`
365
- - \`Error: configuring Terraform AWS Provider: no valid credentials\` → check AWS credentials, run \`aws configure\`
366
- - \`Error: creating EC2 Instance: VcpuLimitExceeded\` → request quota increase in AWS Console`,
367
-
368
- kubernetes: `## Kubernetes Operations
369
- - Check cluster health first: \`kubectl get nodes\`, \`kubectl get pods -A\`
370
- - Namespace-aware commands: always pass \`-n <namespace>\` or use \`--all-namespaces\`
371
- - Deployment rollouts: \`kubectl rollout status deploy/<name>\`, \`kubectl rollout history deploy/<name>\`
372
- - Rollback: \`kubectl rollout undo deploy/<name>\`, or \`kubectl rollout undo deploy/<name> --to-revision=N\`
373
- - Resource sizing: check \`kubectl top pods\`, \`kubectl top nodes\` before scaling
374
- - Debug pods: \`kubectl exec -it <pod> -- /bin/sh\`, \`kubectl logs <pod> --previous\` for crashloops
375
- - Dry-run before apply: \`kubectl apply --dry-run=client -f manifest.yaml\`
376
- - Labels and selectors: always verify selectors match pod templates in Deployments
377
-
378
- ## Error Diagnosis — Kubernetes
379
- - \`OOMKilled\` → increase memory limit in pod spec; check \`kubectl describe pod\`
380
- - \`CrashLoopBackOff\` → \`kubectl logs <pod> --previous\`; check readiness/liveness probes
381
- - \`ImagePullBackOff\` → verify image name/tag, check registry credentials (imagePullSecret)
382
- - \`Pending\` pods → \`kubectl describe pod\` for events; common: insufficient resources, no matching node`,
383
-
384
- helm: `## Helm Operations
385
- - Repo management: \`helm repo add <name> <url>\`, \`helm repo update\` before install/upgrade
386
- - Template debugging: \`helm template <release> <chart> -f values.yaml\` before install
387
- - Diff before upgrade: \`helm diff upgrade <release> <chart>\` (requires helm-diff plugin)
388
- - Override values: \`-f values.yaml\` for files, \`--set key=value\` for single values
389
- - Release history: \`helm history <release> -n <namespace>\`
390
- - Rollback: \`helm rollback <release> <revision> -n <namespace>\`
391
-
392
- ## Helm Secrets (SOPS) Best Practices
393
- - Install: \`helm plugin install https://github.com/jkroepke/helm-secrets\`
394
- - Encrypt: \`helm secrets enc values.yaml\` (requires SOPS config \`.sops.yaml\`)
395
- - Decrypt: \`helm secrets dec values.yaml.enc\`
396
- - View without decrypt: \`helm secrets view values.yaml.enc\`
397
- - Install with secrets: \`helm secrets install release chart -f values.yaml.enc\`
398
- - Common errors:
399
- - \`plugin not found\` → run \`helm plugin list | grep secrets\` to verify install
400
- - \`sops: not found\` → install sops: \`brew install sops\``,
401
-
402
- aws: `## AWS Patterns
403
- - IAM: prefer roles over long-lived credentials; use instance profiles, IRSA, workload identity
404
- - Networking: VPC → subnets → security groups → route tables; know public vs private subnets
405
- - EKS: use IRSA for pod-level AWS API access; node groups vs Fargate tradeoffs
406
- - S3 versioning + lifecycle policies for state files; enable MFA delete for sensitive buckets
407
- - Common debug: \`aws sts get-caller-identity\`, \`aws configure list\`, \`aws --debug <cmd>\``,
408
-
409
- secrets: `## Secrets Management Best Practices
410
- - Never log or display raw secret values — always redact in output
411
- - Rotation patterns: automate rotation with Lambda (AWS) or Cloud Functions (GCP)
412
- - Kubernetes secrets: prefer external-secrets-operator or Vault Agent Injector over native k8s secrets
413
- - SOPS (Secrets OPerationS): encrypt secrets files committed to Git using \`sops --encrypt file.yaml\`
414
- - External Secrets Operator: syncs secrets from Vault/AWS/GCP into k8s Secrets automatically
415
- - Vault: use \`vault kv get -format=json <path>\` and never expose SecretString in logs
416
- - Common errors:
417
- - \`permission denied\` on Vault → check policy: \`vault policy read <policy-name>\`
418
- - \`secret not found\` → verify path and namespace: \`vault kv list <mount>\``,
419
-
420
- cicd: `## CI/CD Pipeline Best Practices
421
- - GitHub Actions: workflow files live in \`.github/workflows/\`; use \`gh workflow run\` to trigger
422
- - GitLab CI: \`.gitlab-ci.yml\` at repo root; \`glab ci run\` triggers pipelines
423
- - CircleCI: \`.circleci/config.yml\`; use project slugs (gh/org/repo)
424
- - Always check branch protection rules before triggering on main/production
425
- - Common errors:
426
- - \`workflow not found\` → check filename in \`.github/workflows/\` and branch name
427
- - \`rate limited\` → wait 60s and retry; check API rate limit headers
428
- - \`token expired\` → refresh token or check service account permissions`,
429
-
430
- monitoring: `## Monitoring & Observability Best Practices
431
- - Prometheus: use \`rate()\` for counters, \`histogram_quantile()\` for latencies; query via HTTP API
432
- - CloudWatch: structured queries with CloudWatch Insights for efficient log searching
433
- - Grafana: use \`$GRAFANA_URL\` env var + Bearer token for API access
434
- - Datadog: requires both \`DD_API_KEY\` and \`DD_APP_KEY\` for query API
435
- - Alert on: error rate, latency p99, saturation (CPU/memory), traffic (requests/sec)
436
- - SLO pattern: \`1 - (error_rate / total_rate)\` over 30-day rolling window`,
437
-
438
- gitops: `## GitOps Best Practices (ArgoCD & Flux)
439
- - ArgoCD: \`argocd app sync\` triggers reconciliation; \`argocd app diff\` shows pending changes
440
- - Flux: \`flux reconcile kustomization flux-system\` forces immediate reconciliation
441
- - Always check health before sync: \`argocd app get <app>\` shows health.status
442
- - Rollback strategy: ArgoCD → \`argocd app rollback <app> <revision>\`; Flux → revert Git commit
443
- - Common errors:
444
- - \`app not found\` → check \`ARGOCD_SERVER\` env var and login token
445
- - \`ComparisonError\` → validate manifests with \`kubectl apply --dry-run=client\``,
446
- };
447
-
448
- /**
449
- * Return the DevOps domain knowledge sections that are relevant to the given
450
- * set of tool names.
451
- *
452
- * The general section is always included. Domain-specific sections (terraform,
453
- * kubernetes, helm, aws, secrets, cicd, monitoring, gitops) are only added when
454
- * at least one tool in `toolNames` maps to that domain.
455
- *
456
- * This keeps the system prompt lean for sessions that only use a small subset
457
- * of the DevOps toolchain.
458
- *
459
- * @param toolNames - The names of the tools available in the current session.
460
- * @returns A markdown string containing only the relevant knowledge sections.
461
- */
462
- export function getRelevantDomainKnowledge(toolNames: string[]): string {
463
- const sections: string[] = [`# DevOps Domain Knowledge\n\n${DOMAIN_SECTIONS.general}`];
464
-
465
- if (toolNames.some(t => t.includes('terraform') || t === 'drift_detect')) {
466
- sections.push(DOMAIN_SECTIONS.terraform);
467
- }
468
- if (toolNames.some(t => t.includes('kubectl') || t === 'k8s_rbac' || t === 'k8s')) {
469
- sections.push(DOMAIN_SECTIONS.kubernetes);
470
- }
471
- if (toolNames.some(t => t.includes('helm'))) {
472
- sections.push(DOMAIN_SECTIONS.helm);
473
- }
474
- if (toolNames.some(t => t.includes('aws') || t.includes('cloud'))) {
475
- sections.push(DOMAIN_SECTIONS.aws);
476
- }
477
- if (toolNames.some(t => t.includes('secret') || t.includes('vault'))) {
478
- sections.push(DOMAIN_SECTIONS.secrets);
479
- }
480
- if (toolNames.some(t => t.includes('cicd') || t.includes('pipeline') || t.includes('github'))) {
481
- sections.push(DOMAIN_SECTIONS.cicd);
482
- }
483
- if (toolNames.some(t => t.includes('monitor') || t.includes('logs') || t.includes('metric'))) {
484
- sections.push(DOMAIN_SECTIONS.monitoring);
485
- }
486
- if (toolNames.some(t => t.includes('gitops') || t.includes('argocd') || t.includes('flux'))) {
487
- sections.push(DOMAIN_SECTIONS.gitops);
488
- }
489
-
490
- return sections.join('\n\n');
491
- }
492
-
493
- /**
494
- * The full concatenated DevOps domain knowledge (all sections).
495
- *
496
- * Kept for backward-compatibility. New call sites should prefer
497
- * {@link getRelevantDomainKnowledge} with a tool list so only the relevant
498
- * sections are included in the prompt.
499
- *
500
- * @deprecated Use {@link getRelevantDomainKnowledge} instead.
501
- * @internal
502
- */
503
- export const DEVOPS_DOMAIN_KNOWLEDGE = [
504
- `# DevOps Domain Knowledge\n\n${DOMAIN_SECTIONS.general}`,
505
- DOMAIN_SECTIONS.terraform,
506
- DOMAIN_SECTIONS.kubernetes,
507
- DOMAIN_SECTIONS.helm,
508
- DOMAIN_SECTIONS.aws,
509
- DOMAIN_SECTIONS.secrets,
510
- DOMAIN_SECTIONS.cicd,
511
- DOMAIN_SECTIONS.monitoring,
512
- DOMAIN_SECTIONS.gitops,
513
- ].join('\n\n');
514
-
515
- // ---------------------------------------------------------------------------
516
- // DevOps Decision Heuristics
517
- // ---------------------------------------------------------------------------
518
-
519
- /**
520
- * Explicit decision rules injected into every prompt to prevent common mistakes.
521
- * @internal
522
- */
523
- const DEVOPS_HEURISTICS = `# DevOps Decision Heuristics
524
-
525
- ## Terraform Workflow Rules
526
- - ALWAYS follow: init → validate → plan → review → apply. NEVER apply without a prior plan.
527
- - NEVER use terraform apply if you haven't seen the plan output in this session.
528
- - state-rm and force-unlock require EXPLICIT user confirmation — always ask before running.
529
- - For multi-environment: check active workspace (\`terraform workspace show\`) before any operation.
530
- - Tag every resource you create with \`managed_by = "nimbus"\` in Terraform resources.
531
- - Prefer \`terraform output -json\` over parsing state files directly.
532
-
533
- ## Kubernetes Rules
534
- - ALWAYS include \`-n <namespace>\` or \`--all-namespaces\`. Never assume default namespace.
535
- - When debugging: check LOGS first, then events (\`kubectl describe\`), then resource state.
536
- - NEVER delete a pod directly unless debugging — prefer \`kubectl rollout restart deploy/<name>\`.
537
- - Cordon/drain before node maintenance: \`kubectl cordon\` then \`kubectl drain --ignore-daemonsets\`.
538
- - Add label \`app.kubernetes.io/managed-by: nimbus\` to K8s resources you create.
539
-
540
- ## Helm Rules
541
- - ALWAYS run \`helm lint\` before install or upgrade.
542
- - ALWAYS get current values before upgrading: \`helm get values <release> -n <ns>\`.
543
- - Use \`--atomic\` on upgrades to auto-rollback on failure.
544
- - Check \`helm history\` before rollback to pick the correct revision.
545
-
546
- ## General DevOps Rules
547
- - Prefer read/inspect operations before any write/mutate operations.
548
- - In PLAN mode: NEVER apply, apply, delete, or mutate any resource.
549
- - In DEPLOY mode: ALWAYS show deploy_preview before destructive operations (destroy/delete/state-rm).
550
- - Use \`env\` field on terraform/kubectl/helm tools to pass \`AWS_PROFILE\`, \`KUBECONFIG\`, \`TF_WORKSPACE\`.
551
- - Prefer dedicated cloud tools (\`aws\`, \`gcloud\`, \`az\`) over \`bash\` for cloud operations.
552
-
553
- ## Tool Selection Priority
554
- 1. Use terraform/kubectl/helm tools for IaC operations (not bash).
555
- 2. Use cloud_discover to find resources before operating on them.
556
- 3. Use drift_detect to check actual vs desired state.
557
- 4. Use cost_estimate to understand financial impact before applying.
558
- 5. Fall back to bash only when no dedicated tool covers the operation.`;
559
-
560
- // ---------------------------------------------------------------------------
561
- // L2: Mode-Pruned Heuristics
562
- // ---------------------------------------------------------------------------
563
-
564
- /**
565
- * Return the DevOps decision heuristics pruned to only include sections
566
- * relevant to the current mode. This prevents prompt bloat in restricted
567
- * modes where deploy-specific or plan-specific rules are irrelevant.
568
- *
569
- * - plan mode: omit deploy-related execution rules (they cannot be triggered)
570
- * - build mode: omit plan-only readonly reminders (build mode can write files)
571
- * - deploy mode: include everything
572
- *
573
- * @param mode - The current agent mode.
574
- * @returns A pruned markdown heuristics string.
575
- */
576
- export function getPrunedHeuristics(mode: AgentMode): string {
577
- if (mode === 'deploy') {
578
- // Deploy mode: include the complete heuristics — no pruning needed.
579
- return DEVOPS_HEURISTICS;
580
- }
581
-
582
- // Split into lines and filter based on mode.
583
- const lines = DEVOPS_HEURISTICS.split('\n');
584
-
585
- if (mode === 'plan') {
586
- // Plan mode: skip lines that reference apply/deploy operations that are
587
- // blocked anyway. This saves ~10-15 tokens without losing useful context.
588
- return lines
589
- .filter(line => {
590
- const l = line.toLowerCase();
591
- // Remove deploy-specific execution requirements (plan mode cannot apply)
592
- if (l.includes('in deploy mode:') || l.includes('deploy_preview before')) return false;
593
- // Remove tool selection items for deploy-only tools
594
- if (l.includes('use drift_detect') || l.includes('use cost_estimate')) return false;
595
- return true;
596
- })
597
- .join('\n');
598
- }
599
-
600
- if (mode === 'build') {
601
- // Build mode: skip plan-only readonly reminders that contradict build mode.
602
- return lines
603
- .filter(line => {
604
- const l = line.toLowerCase();
605
- // Remove plan-mode-only readonly enforcement lines
606
- if (l.includes('in plan mode:') || l.includes('never apply, apply')) return false;
607
- return true;
608
- })
609
- .join('\n');
610
- }
611
-
612
- return DEVOPS_HEURISTICS;
613
- }
614
-
615
- // ---------------------------------------------------------------------------
616
- // Mode Instructions
617
- // ---------------------------------------------------------------------------
618
-
619
- /**
620
- * Return the mode-specific instruction block for the given {@link AgentMode}.
621
- *
622
- * Each mode defines an explicit allow-list and deny-list so the model
623
- * understands the boundaries of what it can do.
624
- *
625
- * @param mode - The active agent mode.
626
- * @returns A markdown section describing the mode's rules.
627
- * @internal
628
- */
629
- function getModeInstructions(mode: AgentMode): string {
630
- switch (mode) {
631
- case 'plan':
632
- return `# Mode: PLAN
633
-
634
- You are in Plan mode. Your role is to analyze, explore, and propose — NOT to modify.
635
-
636
- Allowed actions:
637
- - Read files, search configurations, list directories
638
- - Analyze infrastructure configurations (Terraform, Kubernetes, Helm, CI/CD)
639
- - Estimate costs and detect drift
640
- - Use terraform_plan_analyze to inspect plan files
641
- - Use kubectl_context to list cluster contexts (read-only)
642
- - Propose changes and create task lists
643
- - Fetch web content for research
644
-
645
- NOT allowed:
646
- - Editing or creating files
647
- - Running bash commands that modify state
648
- - Executing terraform apply, kubectl apply, helm install
649
- - Making any state-changing operations
650
-
651
- WORKSPACE AWARENESS: Start by checking the active Terraform workspace and kubectl context. Report the current workspace/context before making any proposals so the user knows what environment you're analyzing.
652
-
653
- Focus on understanding the infrastructure and environment, then propose a clear, specific action plan.`;
654
-
655
- case 'build':
656
- return `# Mode: BUILD
657
-
658
- You are in Build mode. You can read, edit, create files, and run non-destructive commands.
659
-
660
- Allowed actions:
661
- - All Plan mode actions
662
- - Edit infrastructure configurations, generate IaC, fix scripts and automation code
663
- - Edit and create files (Terraform, Kubernetes manifests, Helm charts, CI/CD configs)
664
- - Run terraform validate, terraform fmt, terraform plan
665
- - Run kubectl get, kubectl describe, kubectl diff
666
- - Run linters, formatters, and validation commands
667
-
668
- NOT allowed:
669
- - terraform apply, terraform destroy
670
- - kubectl apply, kubectl delete
671
- - helm install, helm upgrade, helm uninstall
672
- - Any infrastructure-mutating operations
673
-
674
- Focus on generating, editing, and validating infrastructure configurations before deploying.`;
675
-
676
- case 'deploy':
677
- return `# Mode: DEPLOY
678
-
679
- You are in Deploy mode. You have full access to all tools including infrastructure mutations.
680
-
681
- Allowed actions:
682
- - All Build mode actions
683
- - terraform apply, terraform destroy
684
- - kubectl apply, kubectl delete
685
- - helm install, helm upgrade, helm uninstall
686
- - Cloud resource mutations
687
-
688
- REQUIRED:
689
- - Always run deploy_preview before any destructive operation
690
- - Show the user what will change before executing
691
- - Wait for explicit approval on destructive changes
692
- - Be WORKSPACE-AWARE: before applying, confirm the active Terraform workspace and kubectl context match the intended environment. State this explicitly: "Applying to workspace: X in cluster: Y"
693
- - For multi-environment setups, use terraform_plan_analyze to confirm the scope before terraform apply
694
-
695
- Focus on safe, verified deployments with minimal blast radius.`;
696
- }
697
- }
698
-
699
- // ---------------------------------------------------------------------------
700
- // Tools Summary
701
- // ---------------------------------------------------------------------------
702
-
703
- /**
704
- * Build a markdown summary of the available tools from their definitions.
705
- *
706
- * Returns an empty string when the tool list is empty so callers can
707
- * conditionally include the section.
708
- *
709
- * @param tools - The tool definitions to summarize.
710
- * @returns A markdown section listing each tool, or `''` if none.
711
- * @internal
712
- */
713
- function buildToolsSummary(tools: ToolDefinition[]): string {
714
- if (tools.length === 0) {
715
- return '';
716
- }
717
-
718
- const lines = tools.map(t => `- **${t.name}**: ${t.description}`);
719
- return `# Available Tools (${tools.length})\n\n${lines.join('\n')}`;
720
- }
721
-
722
- // ---------------------------------------------------------------------------
723
- // NIMBUS.md Loader
724
- // ---------------------------------------------------------------------------
725
-
726
- /**
727
- * Search paths for `NIMBUS.md` files, in priority order.
728
- * @internal
729
- */
730
- function getNimbusMdSearchPaths(cwd?: string): string[] {
731
- return [
732
- cwd ? path.join(cwd, 'NIMBUS.md') : null,
733
- cwd ? path.join(cwd, '.nimbus', 'NIMBUS.md') : null,
734
- path.join(homedir(), '.nimbus', 'NIMBUS.md'),
735
- ].filter(Boolean) as string[];
736
- }
737
-
738
- /**
739
- * Load `NIMBUS.md` from the project directory or the user's home directory.
740
- *
741
- * The search order is:
742
- * 1. `<cwd>/NIMBUS.md`
743
- * 2. `<cwd>/.nimbus/NIMBUS.md`
744
- * 3. `~/.nimbus/NIMBUS.md`
745
- *
746
- * Returns `null` if no file is found or if all candidates are inaccessible.
747
- *
748
- * @param cwd - The working directory to search from. Defaults to `undefined`
749
- * (skips cwd-relative paths).
750
- * @returns The file contents as a string, or `null`.
751
- */
752
- export function loadNimbusMd(cwd?: string): string | null {
753
- const searchPaths = getNimbusMdSearchPaths(cwd);
754
-
755
- for (const p of searchPaths) {
756
- try {
757
- if (fs.existsSync(p)) {
758
- return fs.readFileSync(p, 'utf-8');
759
- }
760
- } catch {
761
- // Skip inaccessible files silently
762
- }
763
- }
764
-
765
- return null;
766
- }
767
-
768
- // ---------------------------------------------------------------------------
769
- // G14: Forbidden rules extraction
770
- // ---------------------------------------------------------------------------
771
-
772
- /**
773
- * Extract bullet items from the `## Forbidden` section of a NIMBUS.md string.
774
- * Returns an array of rule strings (without the leading `-` or `*`).
775
- *
776
- * @param nimbusContent - The full content of a NIMBUS.md file.
777
- * @returns Array of forbidden rule strings, empty if section not found or empty.
778
- */
779
- export function extractForbiddenRules(nimbusContent: string): string[] {
780
- // Find the ## Forbidden section and extract lines until the next ## heading or end of string
781
- const lines = nimbusContent.split('\n');
782
- let inForbidden = false;
783
- const rules: string[] = [];
784
-
785
- for (const line of lines) {
786
- const trimmed = line.trim();
787
- if (/^##\s+Forbidden\s*$/.test(trimmed)) {
788
- inForbidden = true;
789
- continue;
790
- }
791
- if (inForbidden) {
792
- // Stop at any new ## section
793
- if (/^##\s/.test(trimmed)) break;
794
- // Skip blank lines and HTML comments
795
- if (!trimmed || trimmed.startsWith('<!--')) continue;
796
- // Collect bullet items
797
- if (trimmed.startsWith('-') || trimmed.startsWith('*')) {
798
- const rule = trimmed.replace(/^[-*]\s*/, '').trim();
799
- if (rule && !rule.startsWith('<!--')) {
800
- rules.push(rule);
801
- }
802
- }
803
- }
804
- }
805
-
806
- return rules;
807
- }
808
-
809
- // ---------------------------------------------------------------------------
810
- // Subagent Instructions
811
- // ---------------------------------------------------------------------------
812
-
813
- /**
814
- * Return the instruction block appended when the agent is running as a
815
- * spawned subagent.
816
- *
817
- * Subagents are constrained to prevent recursive spawning and to keep
818
- * execution focused on a single task.
819
- *
820
- * @param agentName - The name of the active subagent.
821
- * @returns A markdown section with subagent-specific rules.
822
- * @internal
823
- */
824
- function getSubagentInstructions(agentName: string): string {
825
- return `# Subagent Mode: ${agentName}
826
-
827
- You are running as a subagent spawned by the primary Nimbus agent. Your task is specific and focused.
828
- - Complete the requested task and return a clear, concise result
829
- - Do NOT spawn further subagents (no nesting)
830
- - Stay focused on the assigned task — do not explore tangentially
831
- - Return your findings as structured, actionable information`;
832
- }
833
-
834
- // ---------------------------------------------------------------------------
835
- // Environment Context
836
- // ---------------------------------------------------------------------------
837
-
838
- /**
839
- * Build a short environment-context block that gives the model awareness of
840
- * the runtime environment (working directory, platform, date, git status).
841
- *
842
- * @param cwd - The working directory. Defaults to `process.cwd()`.
843
- * @returns A markdown section with environment metadata.
844
- * @internal
845
- */
846
- function buildEnvironmentContext(cwd?: string): string {
847
- const effectiveCwd = cwd ?? process.cwd();
848
-
849
- const parts = [
850
- '# Environment',
851
- `- Working directory: ${effectiveCwd}`,
852
- `- Platform: ${process.platform}`,
853
- `- Date: ${new Date().toISOString().split('T')[0]}`,
854
- ];
855
-
856
- // Check for git repo and gather context
857
- const gitDir = path.join(effectiveCwd, '.git');
858
- if (fs.existsSync(gitDir)) {
859
- parts.push('- Git repository: yes');
860
-
861
- const execOpts = {
862
- cwd: effectiveCwd,
863
- timeout: 1000,
864
- encoding: 'utf-8' as const,
865
- stdio: ['pipe', 'pipe', 'pipe'] as ['pipe', 'pipe', 'pipe'],
866
- };
867
-
868
- try {
869
- const branch = execSync('git rev-parse --abbrev-ref HEAD', execOpts).trim();
870
- parts.push(`- Git branch: ${branch}`);
871
- } catch {
872
- /* ignore */
873
- }
874
-
875
- try {
876
- const log = execSync('git log --oneline -5 2>/dev/null', execOpts).trim();
877
- if (log) {
878
- parts.push(
879
- `- Recent commits:\n${log
880
- .split('\n')
881
- .map((l: string) => ` ${l}`)
882
- .join('\n')}`
883
- );
884
- }
885
- } catch {
886
- /* ignore */
887
- }
888
-
889
- try {
890
- const staged = execSync('git diff --cached --stat 2>/dev/null', execOpts).trim();
891
- if (staged) {
892
- parts.push(
893
- `- Staged changes:\n${staged
894
- .split('\n')
895
- .map((l: string) => ` ${l}`)
896
- .join('\n')}`
897
- );
898
- }
899
- } catch {
900
- /* ignore */
901
- }
902
-
903
- try {
904
- const unstaged = execSync('git diff --stat 2>/dev/null', execOpts).trim();
905
- if (unstaged) {
906
- parts.push(
907
- `- Unstaged changes:\n${unstaged
908
- .split('\n')
909
- .map((l: string) => ` ${l}`)
910
- .join('\n')}`
911
- );
912
- }
913
- } catch {
914
- /* ignore */
915
- }
916
- }
917
-
918
- // Kubernetes context
919
- try {
920
- const ctx = execSync('kubectl config current-context', { timeout: 2000, encoding: 'utf-8' }).trim();
921
- if (ctx) parts.push(`- Kubernetes context: ${ctx}`);
922
- } catch { /* ignore */ }
923
-
924
- // Terraform workspace (only if .terraform dir exists)
925
- if (fs.existsSync(path.join(effectiveCwd, '.terraform'))) {
926
- try {
927
- const ws = execSync('terraform workspace show', {
928
- cwd: effectiveCwd, timeout: 5000, encoding: 'utf-8',
929
- }).trim();
930
- if (ws) parts.push(`- Terraform workspace: ${ws}`);
931
- } catch { /* ignore */ }
932
- }
933
-
934
- // AWS identity (only if credentials are configured)
935
- if (process.env.AWS_ACCESS_KEY_ID || process.env.AWS_PROFILE || fs.existsSync(path.join(homedir(), '.aws', 'credentials'))) {
936
- try {
937
- const identity = execSync('aws sts get-caller-identity --output json', {
938
- timeout: 5000, encoding: 'utf-8',
939
- }).trim();
940
- const parsed = JSON.parse(identity);
941
- parts.push(`- AWS account: ${parsed.Account}`);
942
- } catch { /* ignore */ }
943
- try {
944
- const region = execSync('aws configure get region', { timeout: 2000, encoding: 'utf-8' }).trim();
945
- if (region) parts.push(`- AWS region: ${region}`);
946
- } catch {
947
- if (process.env.AWS_DEFAULT_REGION) parts.push(`- AWS region: ${process.env.AWS_DEFAULT_REGION}`);
948
- }
949
- }
950
-
951
- // GCP project (only if gcloud available)
952
- try {
953
- const proj = execSync('gcloud config get-value project 2>/dev/null', {
954
- timeout: 3000, encoding: 'utf-8',
955
- }).trim();
956
- if (proj && proj !== '(unset)') parts.push(`- GCP project: ${proj}`);
957
- } catch { /* ignore */ }
958
-
959
- return parts.join('\n');
960
- }
961
-
962
- // ---------------------------------------------------------------------------
963
- // C5: Primary Cloud Section
964
- // ---------------------------------------------------------------------------
965
-
966
- /**
967
- * Read the primaryClouds field from ~/.nimbus/config.json and build a section
968
- * that focuses the agent on those cloud providers.
969
- *
970
- * @returns A markdown section string, or `null` if not configured.
971
- * @internal
972
- */
973
- function buildPrimaryCloudSection(): string | null {
974
- try {
975
- const configPath = path.join(homedir(), '.nimbus', 'config.json');
976
- if (!fs.existsSync(configPath)) return null;
977
- const raw = fs.readFileSync(configPath, 'utf-8');
978
- const config = JSON.parse(raw) as Record<string, unknown>;
979
- const clouds = config.primaryClouds;
980
- if (!Array.isArray(clouds) || clouds.length === 0) return null;
981
- const cloudNames = (clouds as string[]).map(c => c.toUpperCase()).join(', ');
982
- return [
983
- '# Primary Cloud Providers',
984
- `Primary cloud providers: ${cloudNames}`,
985
- `Focus on ${cloudNames} patterns and best practices in your responses.`,
986
- ].join('\n');
987
- } catch {
988
- return null;
989
- }
990
- }