@build-astron-co/nimbus 0.2.0 → 0.4.0
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.
- package/bin/nimbus +26 -10
- package/bin/nimbus.cmd +41 -0
- package/bin/nimbus.mjs +70 -0
- package/completions/nimbus.bash +38 -0
- package/completions/nimbus.fish +48 -0
- package/completions/nimbus.zsh +81 -0
- package/dist/src/agent/compaction-agent.js +215 -0
- package/dist/src/agent/context-manager.js +385 -0
- package/dist/src/agent/context.js +322 -0
- package/dist/src/agent/deploy-preview.js +395 -0
- package/dist/src/agent/expand-files.js +95 -0
- package/dist/src/agent/index.js +18 -0
- package/dist/src/agent/loop.js +1535 -0
- package/dist/src/agent/modes.js +347 -0
- package/dist/src/agent/permissions.js +396 -0
- package/dist/src/agent/subagents/base.js +67 -0
- package/dist/src/agent/subagents/cost.js +45 -0
- package/dist/src/agent/subagents/explore.js +36 -0
- package/dist/src/agent/subagents/general.js +41 -0
- package/dist/src/agent/subagents/index.js +88 -0
- package/dist/src/agent/subagents/infra.js +52 -0
- package/dist/src/agent/subagents/security.js +60 -0
- package/dist/src/agent/system-prompt.js +860 -0
- package/dist/src/app.js +152 -0
- package/dist/src/audit/activity-log.js +209 -0
- package/dist/src/audit/compliance-checker.js +419 -0
- package/dist/src/audit/cost-tracker.js +231 -0
- package/dist/src/audit/index.js +10 -0
- package/dist/src/audit/security-scanner.js +490 -0
- package/dist/src/auth/guard.js +64 -0
- package/dist/src/auth/index.js +19 -0
- package/dist/src/auth/keychain.js +79 -0
- package/dist/src/auth/oauth.js +389 -0
- package/dist/src/auth/providers.js +415 -0
- package/dist/src/auth/sso.js +87 -0
- package/dist/src/auth/store.js +424 -0
- package/dist/src/auth/types.js +5 -0
- package/dist/src/cli/index.js +8 -0
- package/dist/src/cli/init.js +1048 -0
- package/dist/src/cli/openapi-spec.js +346 -0
- package/dist/src/cli/run.js +505 -0
- package/dist/src/cli/serve-auth.js +56 -0
- package/dist/src/cli/serve.js +432 -0
- package/dist/src/cli/web.js +50 -0
- package/dist/src/cli.js +1574 -0
- package/dist/src/clients/core-engine-client.js +156 -0
- package/dist/src/clients/enterprise-client.js +246 -0
- package/dist/src/clients/generator-client.js +219 -0
- package/dist/src/clients/git-client.js +367 -0
- package/dist/src/clients/github-client.js +229 -0
- package/dist/src/clients/helm-client.js +299 -0
- package/dist/src/clients/index.js +18 -0
- package/dist/src/clients/k8s-client.js +270 -0
- package/dist/src/clients/llm-client.js +119 -0
- package/dist/src/clients/rest-client.js +104 -0
- package/dist/src/clients/service-discovery.js +35 -0
- package/dist/src/clients/terraform-client.js +302 -0
- package/dist/src/clients/tools-client.js +1227 -0
- package/dist/src/clients/ws-client.js +93 -0
- package/dist/src/commands/alias.js +91 -0
- package/dist/src/commands/analyze/index.js +313 -0
- package/dist/src/commands/apply/helm.js +375 -0
- package/dist/src/commands/apply/index.js +176 -0
- package/dist/src/commands/apply/k8s.js +350 -0
- package/dist/src/commands/apply/terraform.js +465 -0
- package/dist/src/commands/ask.js +137 -0
- package/dist/src/commands/audit/index.js +322 -0
- package/dist/src/commands/auth-cloud.js +345 -0
- package/dist/src/commands/auth-list.js +112 -0
- package/dist/src/commands/auth-profile.js +104 -0
- package/dist/src/commands/auth-refresh.js +161 -0
- package/dist/src/commands/auth-status.js +122 -0
- package/dist/src/commands/aws/ec2.js +402 -0
- package/dist/src/commands/aws/iam.js +304 -0
- package/dist/src/commands/aws/index.js +108 -0
- package/dist/src/commands/aws/lambda.js +317 -0
- package/dist/src/commands/aws/rds.js +345 -0
- package/dist/src/commands/aws/s3.js +346 -0
- package/dist/src/commands/aws/vpc.js +302 -0
- package/dist/src/commands/aws-discover.js +413 -0
- package/dist/src/commands/aws-terraform.js +618 -0
- package/dist/src/commands/azure/aks.js +305 -0
- package/dist/src/commands/azure/functions.js +200 -0
- package/dist/src/commands/azure/index.js +93 -0
- package/dist/src/commands/azure/storage.js +378 -0
- package/dist/src/commands/azure/vm.js +291 -0
- package/dist/src/commands/billing/index.js +224 -0
- package/dist/src/commands/chat.js +259 -0
- package/dist/src/commands/completions.js +255 -0
- package/dist/src/commands/config.js +291 -0
- package/dist/src/commands/cost/cloud-cost-estimator.js +211 -0
- package/dist/src/commands/cost/estimator.js +73 -0
- package/dist/src/commands/cost/index.js +625 -0
- package/dist/src/commands/cost/parsers/terraform.js +234 -0
- package/dist/src/commands/cost/parsers/types.js +4 -0
- package/dist/src/commands/cost/pricing/aws.js +501 -0
- package/dist/src/commands/cost/pricing/azure.js +462 -0
- package/dist/src/commands/cost/pricing/gcp.js +359 -0
- package/dist/src/commands/cost/pricing/index.js +24 -0
- package/dist/src/commands/demo.js +196 -0
- package/dist/src/commands/deploy.js +215 -0
- package/dist/src/commands/doctor.js +1291 -0
- package/dist/src/commands/drift/index.js +674 -0
- package/dist/src/commands/explain.js +235 -0
- package/dist/src/commands/export.js +120 -0
- package/dist/src/commands/feedback.js +319 -0
- package/dist/src/commands/fix.js +263 -0
- package/dist/src/commands/fs/index.js +338 -0
- package/dist/src/commands/gcp/compute.js +266 -0
- package/dist/src/commands/gcp/functions.js +221 -0
- package/dist/src/commands/gcp/gke.js +357 -0
- package/dist/src/commands/gcp/iam.js +295 -0
- package/dist/src/commands/gcp/index.js +105 -0
- package/dist/src/commands/gcp/storage.js +232 -0
- package/dist/src/commands/generate-helm.js +1026 -0
- package/dist/src/commands/generate-k8s.js +1263 -0
- package/dist/src/commands/generate-terraform.js +1058 -0
- package/dist/src/commands/gh/index.js +663 -0
- package/dist/src/commands/git/index.js +1208 -0
- package/dist/src/commands/helm/index.js +985 -0
- package/dist/src/commands/help.js +639 -0
- package/dist/src/commands/history.js +120 -0
- package/dist/src/commands/import.js +782 -0
- package/dist/src/commands/incident.js +144 -0
- package/dist/src/commands/index.js +109 -0
- package/dist/src/commands/init.js +955 -0
- package/dist/src/commands/k8s/index.js +979 -0
- package/dist/src/commands/login.js +588 -0
- package/dist/src/commands/logout.js +61 -0
- package/dist/src/commands/logs.js +160 -0
- package/dist/src/commands/onboarding.js +382 -0
- package/dist/src/commands/pipeline.js +153 -0
- package/dist/src/commands/plan/display.js +216 -0
- package/dist/src/commands/plan/index.js +525 -0
- package/dist/src/commands/plugin.js +325 -0
- package/dist/src/commands/preview.js +356 -0
- package/dist/src/commands/profile.js +297 -0
- package/dist/src/commands/questionnaire.js +1021 -0
- package/dist/src/commands/resume.js +35 -0
- package/dist/src/commands/rollback.js +259 -0
- package/dist/src/commands/rollout.js +74 -0
- package/dist/src/commands/runbook.js +307 -0
- package/dist/src/commands/schedule.js +202 -0
- package/dist/src/commands/status.js +213 -0
- package/dist/src/commands/team/index.js +309 -0
- package/dist/src/commands/team-context.js +200 -0
- package/dist/src/commands/template.js +204 -0
- package/dist/src/commands/tf/index.js +989 -0
- package/dist/src/commands/upgrade.js +515 -0
- package/dist/src/commands/usage/index.js +118 -0
- package/dist/src/commands/version.js +145 -0
- package/dist/src/commands/watch.js +127 -0
- package/dist/src/compat/index.js +2 -0
- package/dist/src/compat/runtime.js +10 -0
- package/dist/src/compat/sqlite.js +144 -0
- package/dist/src/config/index.js +6 -0
- package/dist/src/config/manager.js +469 -0
- package/dist/src/config/mode-store.js +57 -0
- package/dist/src/config/profiles.js +66 -0
- package/dist/src/config/safety-policy.js +251 -0
- package/dist/src/config/schema.js +107 -0
- package/dist/src/config/types.js +311 -0
- package/dist/src/config/workspace-state.js +38 -0
- package/dist/src/context/context-db.js +138 -0
- package/dist/src/demo/index.js +295 -0
- package/dist/src/demo/scenarios/full-journey.js +226 -0
- package/dist/src/demo/scenarios/getting-started.js +124 -0
- package/dist/src/demo/scenarios/helm-release.js +334 -0
- package/dist/src/demo/scenarios/k8s-deployment.js +190 -0
- package/dist/src/demo/scenarios/terraform-vpc.js +167 -0
- package/dist/src/demo/types.js +6 -0
- package/dist/src/engine/cost-estimator.js +334 -0
- package/dist/src/engine/diagram-generator.js +192 -0
- package/dist/src/engine/drift-detector.js +688 -0
- package/dist/src/engine/executor.js +832 -0
- package/dist/src/engine/index.js +39 -0
- package/dist/src/engine/orchestrator.js +436 -0
- package/dist/src/engine/planner.js +616 -0
- package/dist/src/engine/safety.js +609 -0
- package/dist/src/engine/verifier.js +664 -0
- package/dist/src/enterprise/audit.js +241 -0
- package/dist/src/enterprise/auth.js +189 -0
- package/dist/src/enterprise/billing.js +512 -0
- package/dist/src/enterprise/index.js +16 -0
- package/dist/src/enterprise/teams.js +315 -0
- package/dist/src/generator/best-practices.js +1375 -0
- package/dist/src/generator/helm.js +495 -0
- package/dist/src/generator/index.js +11 -0
- package/dist/src/generator/intent-parser.js +420 -0
- package/dist/src/generator/kubernetes.js +773 -0
- package/dist/src/generator/terraform.js +1472 -0
- package/dist/src/history/index.js +6 -0
- package/dist/src/history/manager.js +199 -0
- package/dist/src/history/types.js +6 -0
- package/dist/src/hooks/config.js +318 -0
- package/dist/src/hooks/engine.js +317 -0
- package/dist/src/hooks/index.js +2 -0
- package/dist/src/llm/auth-bridge.js +157 -0
- package/dist/src/llm/circuit-breaker.js +116 -0
- package/dist/src/llm/config-loader.js +172 -0
- package/dist/src/llm/cost-calculator.js +137 -0
- package/dist/src/llm/index.js +7 -0
- package/dist/src/llm/model-aliases.js +99 -0
- package/dist/src/llm/provider-registry.js +57 -0
- package/dist/src/llm/providers/anthropic.js +430 -0
- package/dist/src/llm/providers/bedrock.js +409 -0
- package/dist/src/llm/providers/google.js +344 -0
- package/dist/src/llm/providers/ollama.js +661 -0
- package/dist/src/llm/providers/openai-compatible.js +289 -0
- package/dist/src/llm/providers/openai.js +284 -0
- package/dist/src/llm/providers/openrouter.js +293 -0
- package/dist/src/llm/router.js +844 -0
- package/dist/src/llm/types.js +69 -0
- package/dist/src/lsp/client.js +239 -0
- package/dist/src/lsp/languages.js +95 -0
- package/dist/src/lsp/manager.js +243 -0
- package/dist/src/mcp/client.js +289 -0
- package/dist/src/mcp/index.js +5 -0
- package/dist/src/mcp/manager.js +113 -0
- package/dist/src/nimbus.js +212 -0
- package/dist/src/plugins/index.js +13 -0
- package/dist/src/plugins/loader.js +280 -0
- package/dist/src/plugins/manager.js +282 -0
- package/dist/src/plugins/types.js +23 -0
- package/dist/src/scanners/cicd-scanner.js +230 -0
- package/dist/src/scanners/cloud-scanner.js +415 -0
- package/dist/src/scanners/framework-scanner.js +430 -0
- package/dist/src/scanners/iac-scanner.js +350 -0
- package/dist/src/scanners/index.js +454 -0
- package/dist/src/scanners/language-scanner.js +258 -0
- package/dist/src/scanners/package-manager-scanner.js +252 -0
- package/dist/src/scanners/types.js +6 -0
- package/dist/src/sessions/manager.js +395 -0
- package/dist/src/sessions/types.js +4 -0
- package/dist/src/sharing/sync.js +238 -0
- package/dist/src/sharing/viewer.js +131 -0
- package/dist/src/snapshots/index.js +1 -0
- package/dist/src/snapshots/manager.js +432 -0
- package/dist/src/state/artifacts.js +94 -0
- package/dist/src/state/audit.js +73 -0
- package/dist/src/state/billing.js +126 -0
- package/dist/src/state/checkpoints.js +81 -0
- package/dist/src/state/config.js +58 -0
- package/dist/src/state/conversations.js +7 -0
- package/dist/src/state/credentials.js +96 -0
- package/dist/src/state/db.js +53 -0
- package/dist/src/state/index.js +23 -0
- package/dist/src/state/messages.js +76 -0
- package/dist/src/state/projects.js +92 -0
- package/dist/src/state/schema.js +233 -0
- package/dist/src/state/sessions.js +79 -0
- package/dist/src/state/teams.js +131 -0
- package/dist/src/telemetry.js +91 -0
- package/dist/src/tools/aws-ops.js +747 -0
- package/dist/src/tools/azure-ops.js +491 -0
- package/dist/src/tools/file-ops.js +451 -0
- package/dist/src/tools/gcp-ops.js +559 -0
- package/dist/src/tools/git-ops.js +557 -0
- package/dist/src/tools/github-ops.js +460 -0
- package/dist/src/tools/helm-ops.js +634 -0
- package/dist/src/tools/index.js +16 -0
- package/dist/src/tools/k8s-ops.js +579 -0
- package/dist/src/tools/schemas/converter.js +129 -0
- package/dist/src/tools/schemas/devops.js +3319 -0
- package/dist/src/tools/schemas/index.js +19 -0
- package/dist/src/tools/schemas/standard.js +966 -0
- package/dist/src/tools/schemas/types.js +409 -0
- package/dist/src/tools/spawn-exec.js +109 -0
- package/dist/src/tools/terraform-ops.js +627 -0
- package/dist/src/types/config.js +1 -0
- package/dist/src/types/drift.js +4 -0
- package/dist/src/types/enterprise.js +5 -0
- package/dist/src/types/index.js +14 -0
- package/dist/src/types/plan.js +1 -0
- package/dist/src/types/request.js +1 -0
- package/dist/src/types/response.js +1 -0
- package/dist/src/types/service.js +1 -0
- package/dist/src/ui/App.js +1672 -0
- package/dist/src/ui/DeployPreview.js +60 -0
- package/dist/src/ui/FileDiffModal.js +108 -0
- package/dist/src/ui/Header.js +46 -0
- package/dist/src/ui/HelpModal.js +9 -0
- package/dist/src/ui/InputBox.js +408 -0
- package/dist/src/ui/MessageList.js +795 -0
- package/dist/src/ui/PermissionPrompt.js +72 -0
- package/dist/src/ui/StatusBar.js +109 -0
- package/dist/src/ui/TerminalPane.js +31 -0
- package/dist/src/ui/ToolCallDisplay.js +303 -0
- package/dist/src/ui/TreePane.js +83 -0
- package/dist/src/ui/chat-ui.js +721 -0
- package/dist/src/ui/index.js +11 -0
- package/dist/src/ui/ink/index.js +1325 -0
- package/dist/src/ui/streaming.js +137 -0
- package/dist/src/ui/theme.js +78 -0
- package/dist/src/ui/types.js +7 -0
- package/dist/src/utils/analytics.js +61 -0
- package/dist/src/utils/cost-warning.js +25 -0
- package/dist/src/utils/env.js +42 -0
- package/dist/src/utils/errors.js +54 -0
- package/dist/src/utils/event-bus.js +22 -0
- package/dist/src/utils/index.js +16 -0
- package/dist/src/utils/logger.js +150 -0
- package/dist/src/utils/rate-limiter.js +90 -0
- package/dist/src/utils/service-auth.js +36 -0
- package/dist/src/utils/validation.js +39 -0
- package/dist/src/version.js +3 -0
- package/dist/src/watcher/index.js +192 -0
- package/dist/src/wizard/approval.js +275 -0
- package/dist/src/wizard/index.js +13 -0
- package/dist/src/wizard/prompts.js +273 -0
- package/dist/src/wizard/types.js +4 -0
- package/dist/src/wizard/ui.js +453 -0
- package/dist/src/wizard/wizard.js +227 -0
- package/package.json +31 -23
- package/src/__tests__/alias.test.ts +133 -0
- package/src/__tests__/app.test.ts +1 -1
- package/src/__tests__/audit.test.ts +1 -1
- package/src/__tests__/circuit-breaker.test.ts +1 -1
- package/src/__tests__/cli-run.test.ts +237 -1
- package/src/__tests__/compat-sqlite.test.ts +68 -0
- package/src/__tests__/context-manager.test.ts +131 -1
- package/src/__tests__/context.test.ts +1 -1
- package/src/__tests__/devops-terminal-gaps.test.ts +718 -0
- package/src/__tests__/doctor.test.ts +48 -0
- package/src/__tests__/enterprise.test.ts +1 -1
- package/src/__tests__/export.test.ts +236 -0
- package/src/__tests__/gap-11-18-20.test.ts +958 -0
- package/src/__tests__/generator.test.ts +1 -1
- package/src/__tests__/helm-streaming.test.ts +127 -0
- package/src/__tests__/hooks.test.ts +1 -1
- package/src/__tests__/incident.test.ts +179 -0
- package/src/__tests__/init.test.ts +55 -4
- package/src/__tests__/intent-parser.test.ts +1 -1
- package/src/__tests__/llm-router.test.ts +1 -1
- package/src/__tests__/logs.test.ts +107 -0
- package/src/__tests__/loop-errors.test.ts +244 -0
- package/src/__tests__/lsp.test.ts +1 -1
- package/src/__tests__/modes.test.ts +1 -1
- package/src/__tests__/perf-optimizations.test.ts +847 -0
- package/src/__tests__/permissions.test.ts +1 -1
- package/src/__tests__/pipeline.test.ts +50 -0
- package/src/__tests__/polish-phase3.test.ts +340 -0
- package/src/__tests__/profile.test.ts +237 -0
- package/src/__tests__/rollback.test.ts +83 -0
- package/src/__tests__/runbook.test.ts +219 -0
- package/src/__tests__/schedule.test.ts +206 -0
- package/src/__tests__/serve.test.ts +1 -1
- package/src/__tests__/sessions.test.ts +96 -1
- package/src/__tests__/sharing.test.ts +53 -1
- package/src/__tests__/snapshots.test.ts +1 -1
- package/src/__tests__/standalone-migration.test.ts +199 -0
- package/src/__tests__/state-db.test.ts +1 -1
- package/src/__tests__/status.test.ts +158 -0
- package/src/__tests__/stream-with-tools.test.ts +71 -25
- package/src/__tests__/subagents.test.ts +1 -1
- package/src/__tests__/system-prompt.test.ts +82 -3
- package/src/__tests__/terminal-gap-v2.test.ts +395 -0
- package/src/__tests__/terminal-parity.test.ts +393 -0
- package/src/__tests__/tf-apply.test.ts +187 -0
- package/src/__tests__/tool-converter.test.ts +1 -1
- package/src/__tests__/tool-schemas.test.ts +209 -4
- package/src/__tests__/tools.test.ts +4 -3
- package/src/__tests__/version-json.test.ts +184 -0
- package/src/__tests__/version.test.ts +1 -1
- package/src/__tests__/watch.test.ts +129 -0
- package/src/agent/compaction-agent.ts +40 -1
- package/src/agent/context-manager.ts +67 -3
- package/src/agent/deploy-preview.ts +62 -1
- package/src/agent/expand-files.ts +108 -0
- package/src/agent/loop.ts +1312 -31
- package/src/agent/permissions.ts +51 -4
- package/src/agent/system-prompt.ts +573 -19
- package/src/app.ts +58 -0
- package/src/audit/security-scanner.ts +45 -0
- package/src/auth/keychain.ts +82 -0
- package/src/auth/oauth.ts +15 -5
- package/src/cli/init.ts +378 -5
- package/src/cli/run.ts +407 -16
- package/src/cli/serve.ts +78 -1
- package/src/cli/web.ts +10 -6
- package/src/cli.ts +312 -1
- package/src/clients/service-discovery.ts +30 -25
- package/src/commands/alias.ts +100 -0
- package/src/commands/audit/index.ts +121 -2
- package/src/commands/auth-cloud.ts +113 -0
- package/src/commands/auth-refresh.ts +187 -0
- package/src/commands/aws-discover.ts +144 -251
- package/src/commands/aws-terraform.ts +68 -118
- package/src/commands/chat.ts +9 -3
- package/src/commands/completions.ts +268 -0
- package/src/commands/config.ts +26 -0
- package/src/commands/cost/index.ts +218 -2
- package/src/commands/deploy.ts +260 -0
- package/src/commands/doctor.ts +744 -152
- package/src/commands/drift/index.ts +371 -23
- package/src/commands/export.ts +146 -0
- package/src/commands/generate-k8s.ts +9 -61
- package/src/commands/generate-terraform.ts +191 -449
- package/src/commands/help.ts +212 -36
- package/src/commands/history.ts +8 -1
- package/src/commands/incident.ts +166 -0
- package/src/commands/init.ts +5 -0
- package/src/commands/login.ts +86 -1
- package/src/commands/logs.ts +167 -0
- package/src/commands/onboarding.ts +211 -34
- package/src/commands/pipeline.ts +186 -0
- package/src/commands/plugin.ts +398 -0
- package/src/commands/profile.ts +342 -0
- package/src/commands/questionnaire.ts +0 -98
- package/src/commands/resume.ts +26 -34
- package/src/commands/rollback.ts +315 -0
- package/src/commands/rollout.ts +88 -0
- package/src/commands/runbook.ts +346 -0
- package/src/commands/schedule.ts +236 -0
- package/src/commands/status.ts +252 -0
- package/src/commands/team-context.ts +220 -0
- package/src/commands/template.ts +58 -57
- package/src/commands/tf/index.ts +70 -11
- package/src/commands/upgrade.ts +57 -0
- package/src/commands/version.ts +54 -50
- package/src/commands/watch.ts +153 -0
- package/src/compat/runtime.ts +1 -1
- package/src/compat/sqlite.ts +75 -5
- package/src/config/mode-store.ts +62 -0
- package/src/config/profiles.ts +84 -0
- package/src/config/types.ts +83 -1
- package/src/config/workspace-state.ts +53 -0
- package/src/engine/cost-estimator.ts +52 -10
- package/src/engine/executor.ts +33 -2
- package/src/engine/planner.ts +68 -1
- package/src/generator/terraform.ts +8 -0
- package/src/history/manager.ts +2 -74
- package/src/hooks/engine.ts +5 -4
- package/src/llm/cost-calculator.ts +2 -2
- package/src/llm/providers/anthropic.ts +50 -21
- package/src/llm/router.ts +76 -7
- package/src/lsp/languages.ts +3 -0
- package/src/lsp/manager.ts +21 -5
- package/src/nimbus.ts +37 -18
- package/src/sessions/manager.ts +108 -1
- package/src/sharing/sync.ts +4 -0
- package/src/sharing/viewer.ts +66 -0
- package/src/tools/file-ops.ts +22 -0
- package/src/tools/schemas/devops.ts +3007 -117
- package/src/tools/schemas/standard.ts +5 -1
- package/src/tools/schemas/types.ts +31 -1
- package/src/tools/spawn-exec.ts +148 -0
- package/src/ui/App.tsx +1183 -66
- package/src/ui/DeployPreview.tsx +62 -57
- package/src/ui/FileDiffModal.tsx +162 -0
- package/src/ui/Header.tsx +87 -24
- package/src/ui/HelpModal.tsx +57 -0
- package/src/ui/InputBox.tsx +163 -10
- package/src/ui/MessageList.tsx +487 -40
- package/src/ui/PermissionPrompt.tsx +17 -5
- package/src/ui/StatusBar.tsx +122 -3
- package/src/ui/TerminalPane.tsx +84 -0
- package/src/ui/ToolCallDisplay.tsx +252 -18
- package/src/ui/TreePane.tsx +132 -0
- package/src/ui/chat-ui.ts +41 -44
- package/src/ui/ink/index.ts +771 -38
- package/src/ui/streaming.ts +1 -1
- package/src/ui/theme.ts +104 -0
- package/src/ui/types.ts +18 -0
- package/src/version.ts +1 -1
- package/src/watcher/index.ts +66 -15
- package/src/wizard/types.ts +1 -0
- package/src/wizard/ui.ts +1 -1
- package/tsconfig.json +2 -2
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Runbook Command (G15)
|
|
3
|
+
*
|
|
4
|
+
* Load and execute operational runbooks as agent prompts.
|
|
5
|
+
*
|
|
6
|
+
* Runbook YAML format:
|
|
7
|
+
* name: rotate-certs
|
|
8
|
+
* description: Rotate TLS certs in prod namespace
|
|
9
|
+
* context: prod # profile to activate
|
|
10
|
+
* steps:
|
|
11
|
+
* - Check for expiring certs in all namespaces
|
|
12
|
+
* - Rotate each cert using cert-manager annotate
|
|
13
|
+
* - Verify new certs are valid and pods restarted
|
|
14
|
+
*
|
|
15
|
+
* Usage:
|
|
16
|
+
* nimbus runbook list
|
|
17
|
+
* nimbus runbook run <name> [--auto]
|
|
18
|
+
* nimbus runbook create <name>
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
import { existsSync, readdirSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
22
|
+
import { join, basename } from 'node:path';
|
|
23
|
+
import { homedir } from 'node:os';
|
|
24
|
+
|
|
25
|
+
// ---------------------------------------------------------------------------
|
|
26
|
+
// Types
|
|
27
|
+
// ---------------------------------------------------------------------------
|
|
28
|
+
|
|
29
|
+
export interface RunbookStep {
|
|
30
|
+
/** Step text (the action to perform) */
|
|
31
|
+
text: string;
|
|
32
|
+
/** Condition that must be true for this step to proceed */
|
|
33
|
+
if?: string;
|
|
34
|
+
/** Whether user must explicitly approve before the step executes */
|
|
35
|
+
require_approval?: boolean;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface RunbookDef {
|
|
39
|
+
name: string;
|
|
40
|
+
description?: string;
|
|
41
|
+
context?: string;
|
|
42
|
+
steps: RunbookStep[];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface RunbookOptions {
|
|
46
|
+
auto?: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// ---------------------------------------------------------------------------
|
|
50
|
+
// Helpers
|
|
51
|
+
// ---------------------------------------------------------------------------
|
|
52
|
+
|
|
53
|
+
/** Directories to scan for runbooks. */
|
|
54
|
+
const RUNBOOK_DIRS = [
|
|
55
|
+
join(homedir(), '.nimbus', 'runbooks'),
|
|
56
|
+
join(process.cwd(), 'runbooks'),
|
|
57
|
+
join(process.cwd(), 'docs', 'runbooks'),
|
|
58
|
+
join(process.cwd(), '.github', 'runbooks'),
|
|
59
|
+
];
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Find all runbook YAML files in the standard directories.
|
|
63
|
+
*/
|
|
64
|
+
function findRunbooks(): Array<{ path: string; dir: string; file: string }> {
|
|
65
|
+
const results: Array<{ path: string; dir: string; file: string }> = [];
|
|
66
|
+
for (const dir of RUNBOOK_DIRS) {
|
|
67
|
+
if (!existsSync(dir)) continue;
|
|
68
|
+
try {
|
|
69
|
+
const files = readdirSync(dir).filter(f => /\.(yaml|yml)$/.test(f));
|
|
70
|
+
for (const file of files) {
|
|
71
|
+
results.push({ path: join(dir, file), dir, file });
|
|
72
|
+
}
|
|
73
|
+
} catch { /* non-critical */ }
|
|
74
|
+
}
|
|
75
|
+
return results;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Minimal YAML parser for simple runbook format (no external dep).
|
|
80
|
+
* Supports both plain string steps and structured steps with if:/require_approval: fields.
|
|
81
|
+
*
|
|
82
|
+
* Structured step example:
|
|
83
|
+
* steps:
|
|
84
|
+
* - name: Check certs
|
|
85
|
+
* run: Check for expiring certs
|
|
86
|
+
* if: cert_count > 0
|
|
87
|
+
* require_approval: true
|
|
88
|
+
*/
|
|
89
|
+
function parseRunbookYaml(content: string): RunbookDef {
|
|
90
|
+
const lines = content.split('\n');
|
|
91
|
+
const def: RunbookDef = { name: '', steps: [] };
|
|
92
|
+
let inSteps = false;
|
|
93
|
+
|
|
94
|
+
// We parse in two modes: simple (step is a plain `- text` line) and
|
|
95
|
+
// structured (step is a YAML mapping started by `- name:` or `- run:`).
|
|
96
|
+
let currentStep: RunbookStep | null = null;
|
|
97
|
+
|
|
98
|
+
const flushStep = () => {
|
|
99
|
+
if (currentStep) {
|
|
100
|
+
def.steps.push(currentStep);
|
|
101
|
+
currentStep = null;
|
|
102
|
+
}
|
|
103
|
+
};
|
|
104
|
+
|
|
105
|
+
for (const raw of lines) {
|
|
106
|
+
const line = raw.trimEnd();
|
|
107
|
+
if (line.startsWith('#') || !line.trim()) continue;
|
|
108
|
+
|
|
109
|
+
if (line.startsWith('name:') && !inSteps) {
|
|
110
|
+
def.name = line.slice(5).trim().replace(/^['"]|['"]$/g, '');
|
|
111
|
+
} else if (line.startsWith('description:') && !inSteps) {
|
|
112
|
+
def.description = line.slice(12).trim().replace(/^['"]|['"]$/g, '');
|
|
113
|
+
} else if (line.startsWith('context:') && !inSteps) {
|
|
114
|
+
def.context = line.slice(8).trim().replace(/^['"]|['"]$/g, '');
|
|
115
|
+
} else if (line.trim() === 'steps:') {
|
|
116
|
+
inSteps = true;
|
|
117
|
+
} else if (inSteps) {
|
|
118
|
+
// Top-level step item: starts with exactly two spaces + "- "
|
|
119
|
+
if (/^ {0,2}- /.test(line)) {
|
|
120
|
+
flushStep();
|
|
121
|
+
const stepText = line.replace(/^\s*-\s*/, '').trim();
|
|
122
|
+
// Detect structured step: starts with "name:", "run:", "action:"
|
|
123
|
+
if (/^(name|run|action):/.test(stepText)) {
|
|
124
|
+
const val = stepText.replace(/^(name|run|action):\s*/, '').replace(/^['"]|['"]$/g, '');
|
|
125
|
+
currentStep = { text: val };
|
|
126
|
+
} else if (stepText === '') {
|
|
127
|
+
// blank mapping start — next indented lines fill it in
|
|
128
|
+
currentStep = { text: '' };
|
|
129
|
+
} else {
|
|
130
|
+
// Plain string step
|
|
131
|
+
def.steps.push({ text: stepText.replace(/^['"]|['"]$/g, '') });
|
|
132
|
+
}
|
|
133
|
+
} else if (currentStep && /^\s+(name|run|action):/.test(line)) {
|
|
134
|
+
// Structured field continuation inside a step block
|
|
135
|
+
const val = line.replace(/^\s+(name|run|action):\s*/, '').replace(/^['"]|['"]$/g, '');
|
|
136
|
+
if (!currentStep.text) currentStep.text = val;
|
|
137
|
+
} else if (currentStep && /^\s+if:/.test(line)) {
|
|
138
|
+
const val = line.replace(/^\s+if:\s*/, '').replace(/^['"]|['"]$/g, '');
|
|
139
|
+
currentStep.if = val;
|
|
140
|
+
} else if (currentStep && /^\s+require_approval:/.test(line)) {
|
|
141
|
+
const val = line.replace(/^\s+require_approval:\s*/, '').trim();
|
|
142
|
+
currentStep.require_approval = val === 'true';
|
|
143
|
+
} else if (!/^\s/.test(line)) {
|
|
144
|
+
// Non-indented non-step line — exit step parsing
|
|
145
|
+
flushStep();
|
|
146
|
+
inSteps = false;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
flushStep();
|
|
152
|
+
|
|
153
|
+
return def;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Build a multi-step agent prompt from a runbook definition.
|
|
158
|
+
* Supports GAP-24 conditional steps (if:) and approval gates (require_approval:).
|
|
159
|
+
*/
|
|
160
|
+
function buildRunbookPrompt(def: RunbookDef): string {
|
|
161
|
+
const parts = [
|
|
162
|
+
`# Runbook: ${def.name}`,
|
|
163
|
+
];
|
|
164
|
+
if (def.description) parts.push(`\n${def.description}`);
|
|
165
|
+
if (def.context) parts.push(`\nContext/profile: ${def.context}`);
|
|
166
|
+
parts.push('\n## Steps to execute in order:');
|
|
167
|
+
|
|
168
|
+
def.steps.forEach((step, i) => {
|
|
169
|
+
// GAP-24: In step parsing loop
|
|
170
|
+
const ifCondition = step.if as string | undefined;
|
|
171
|
+
const requireApproval = step.require_approval as boolean | undefined;
|
|
172
|
+
|
|
173
|
+
let stepText = `Step ${i + 1}: ${step.text}`;
|
|
174
|
+
if (ifCondition) {
|
|
175
|
+
stepText += `\n [CONDITIONAL: Only proceed if: ${ifCondition}]`;
|
|
176
|
+
stepText += `\nAfter completing this step, check: ${ifCondition}. If the condition evaluates to false, stop and report the status without continuing to the next step.`;
|
|
177
|
+
}
|
|
178
|
+
if (requireApproval) {
|
|
179
|
+
stepText += `\n [REQUIRES APPROVAL: State this step's plan and wait for explicit user approval before executing]`;
|
|
180
|
+
stepText = `IMPORTANT: Before executing this step, explicitly state what you are about to do and wait for the user to say "approve" or "yes" before proceeding.\n` + stepText;
|
|
181
|
+
}
|
|
182
|
+
parts.push(stepText);
|
|
183
|
+
});
|
|
184
|
+
|
|
185
|
+
parts.push('\nExecute each step in sequence. Check for errors after each step before proceeding. Report progress clearly.');
|
|
186
|
+
return parts.join('\n');
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// ---------------------------------------------------------------------------
|
|
190
|
+
// Subcommands
|
|
191
|
+
// ---------------------------------------------------------------------------
|
|
192
|
+
|
|
193
|
+
async function runbookList(): Promise<void> {
|
|
194
|
+
const runbooks = findRunbooks();
|
|
195
|
+
if (runbooks.length === 0) {
|
|
196
|
+
console.log('No runbooks found.');
|
|
197
|
+
console.log('');
|
|
198
|
+
console.log('Create one at:');
|
|
199
|
+
for (const dir of RUNBOOK_DIRS.slice(0, 2)) {
|
|
200
|
+
console.log(` ${dir}/<name>.yaml`);
|
|
201
|
+
}
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
console.log('Available runbooks:\n');
|
|
206
|
+
for (const rb of runbooks) {
|
|
207
|
+
try {
|
|
208
|
+
const content = readFileSync(rb.path, 'utf-8');
|
|
209
|
+
const def = parseRunbookYaml(content);
|
|
210
|
+
console.log(` ${def.name.padEnd(24)} ${def.description ?? ''}`);
|
|
211
|
+
console.log(` ${''.padEnd(24)} (${rb.path})`);
|
|
212
|
+
} catch {
|
|
213
|
+
console.log(` ${basename(rb.path)} (parse error)`);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
async function runbookRun(name: string, options: RunbookOptions): Promise<void> {
|
|
219
|
+
const runbooks = findRunbooks();
|
|
220
|
+
const match = runbooks.find(rb => {
|
|
221
|
+
try {
|
|
222
|
+
const def = parseRunbookYaml(readFileSync(rb.path, 'utf-8'));
|
|
223
|
+
return def.name === name || basename(rb.file, '.yaml') === name || basename(rb.file, '.yml') === name;
|
|
224
|
+
} catch { return false; }
|
|
225
|
+
});
|
|
226
|
+
|
|
227
|
+
if (!match) {
|
|
228
|
+
console.error(`Runbook not found: ${name}`);
|
|
229
|
+
console.log('Run "nimbus runbook list" to see available runbooks.');
|
|
230
|
+
process.exit(1);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
const def = parseRunbookYaml(readFileSync(match.path, 'utf-8'));
|
|
234
|
+
const prompt = buildRunbookPrompt(def);
|
|
235
|
+
|
|
236
|
+
console.log(`Executing runbook: ${def.name}`);
|
|
237
|
+
if (def.description) console.log(`Description: ${def.description}`);
|
|
238
|
+
console.log(`Steps: ${def.steps.length}`);
|
|
239
|
+
console.log('');
|
|
240
|
+
|
|
241
|
+
if (!options.auto) {
|
|
242
|
+
// Prompt for confirmation in interactive mode
|
|
243
|
+
const readline = await import('node:readline');
|
|
244
|
+
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
245
|
+
const answer = await new Promise<string>(resolve => {
|
|
246
|
+
rl.question('Proceed with runbook execution? (y/N) ', resolve);
|
|
247
|
+
});
|
|
248
|
+
rl.close();
|
|
249
|
+
if (!answer.toLowerCase().startsWith('y')) {
|
|
250
|
+
console.log('Runbook execution cancelled.');
|
|
251
|
+
return;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
const { chatCommand } = await import('./chat');
|
|
256
|
+
await chatCommand({ initialPrompt: prompt, mode: 'deploy' });
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
async function runbookCreate(name: string): Promise<void> {
|
|
260
|
+
const targetDir = join(homedir(), '.nimbus', 'runbooks');
|
|
261
|
+
mkdirSync(targetDir, { recursive: true });
|
|
262
|
+
const targetPath = join(targetDir, `${name}.yaml`);
|
|
263
|
+
|
|
264
|
+
if (existsSync(targetPath)) {
|
|
265
|
+
console.error(`Runbook already exists: ${targetPath}`);
|
|
266
|
+
process.exit(1);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
const readline = await import('node:readline');
|
|
270
|
+
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });
|
|
271
|
+
const question = (q: string): Promise<string> => new Promise(resolve => rl.question(q, resolve));
|
|
272
|
+
|
|
273
|
+
console.log(`Creating runbook: ${name}`);
|
|
274
|
+
const description = await question('Description: ');
|
|
275
|
+
const context = await question('Context/profile (optional, e.g. "prod"): ');
|
|
276
|
+
console.log('Enter steps (empty line to finish):');
|
|
277
|
+
|
|
278
|
+
const steps: string[] = [];
|
|
279
|
+
let stepNum = 1;
|
|
280
|
+
while (true) {
|
|
281
|
+
const step = await question(`Step ${stepNum}: `);
|
|
282
|
+
if (!step.trim()) break;
|
|
283
|
+
steps.push(step.trim());
|
|
284
|
+
stepNum++;
|
|
285
|
+
}
|
|
286
|
+
rl.close();
|
|
287
|
+
|
|
288
|
+
if (steps.length === 0) {
|
|
289
|
+
console.error('Runbook must have at least one step.');
|
|
290
|
+
process.exit(1);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
const yaml = [
|
|
294
|
+
`name: ${name}`,
|
|
295
|
+
`description: ${description}`,
|
|
296
|
+
context ? `context: ${context}` : '# context: prod',
|
|
297
|
+
'steps:',
|
|
298
|
+
...steps.map(s => ` - ${s}`),
|
|
299
|
+
].join('\n') + '\n';
|
|
300
|
+
|
|
301
|
+
writeFileSync(targetPath, yaml, 'utf-8');
|
|
302
|
+
console.log(`\nRunbook saved to: ${targetPath}`);
|
|
303
|
+
console.log(`Run with: nimbus runbook run ${name}`);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
// ---------------------------------------------------------------------------
|
|
307
|
+
// Main export
|
|
308
|
+
// ---------------------------------------------------------------------------
|
|
309
|
+
|
|
310
|
+
export async function runbookCommand(subcommand: string, args: string[]): Promise<void> {
|
|
311
|
+
switch (subcommand) {
|
|
312
|
+
case 'list':
|
|
313
|
+
case 'ls':
|
|
314
|
+
await runbookList();
|
|
315
|
+
break;
|
|
316
|
+
|
|
317
|
+
case 'run': {
|
|
318
|
+
const name = args[0];
|
|
319
|
+
if (!name) {
|
|
320
|
+
console.error('Usage: nimbus runbook run <name> [--auto]');
|
|
321
|
+
process.exit(1);
|
|
322
|
+
}
|
|
323
|
+
await runbookRun(name, { auto: args.includes('--auto') });
|
|
324
|
+
break;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
case 'create':
|
|
328
|
+
case 'new': {
|
|
329
|
+
const name = args[0];
|
|
330
|
+
if (!name) {
|
|
331
|
+
console.error('Usage: nimbus runbook create <name>');
|
|
332
|
+
process.exit(1);
|
|
333
|
+
}
|
|
334
|
+
await runbookCreate(name);
|
|
335
|
+
break;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
default:
|
|
339
|
+
console.log('Usage: nimbus runbook <list|run|create>');
|
|
340
|
+
console.log('');
|
|
341
|
+
console.log(' list List available runbooks');
|
|
342
|
+
console.log(' run <name> Execute a runbook as an agent prompt');
|
|
343
|
+
console.log(' create <name> Create a new runbook interactively');
|
|
344
|
+
break;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Schedule Command (G13)
|
|
3
|
+
*
|
|
4
|
+
* Manage periodic DevOps automation tasks (drift checks, cert expiry,
|
|
5
|
+
* cost reports) via a local schedule file.
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* nimbus schedule list
|
|
9
|
+
* nimbus schedule add "0 8 * * *" "check for infra drift" [--name daily-drift]
|
|
10
|
+
* nimbus schedule remove <id-or-name>
|
|
11
|
+
* nimbus schedule run-now <id-or-name>
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
15
|
+
import { join } from 'node:path';
|
|
16
|
+
import { homedir } from 'node:os';
|
|
17
|
+
import { randomBytes } from 'node:crypto';
|
|
18
|
+
|
|
19
|
+
// ---------------------------------------------------------------------------
|
|
20
|
+
// Types
|
|
21
|
+
// ---------------------------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
export interface ScheduleEntry {
|
|
24
|
+
id: string;
|
|
25
|
+
name: string;
|
|
26
|
+
cron: string;
|
|
27
|
+
prompt: string;
|
|
28
|
+
createdAt: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// ---------------------------------------------------------------------------
|
|
32
|
+
// Storage
|
|
33
|
+
// ---------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
const SCHEDULE_FILE = join(homedir(), '.nimbus', 'schedules.json');
|
|
36
|
+
|
|
37
|
+
function loadSchedules(): ScheduleEntry[] {
|
|
38
|
+
if (!existsSync(SCHEDULE_FILE)) return [];
|
|
39
|
+
try {
|
|
40
|
+
return JSON.parse(readFileSync(SCHEDULE_FILE, 'utf-8')) as ScheduleEntry[];
|
|
41
|
+
} catch {
|
|
42
|
+
return [];
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function saveSchedules(schedules: ScheduleEntry[]): void {
|
|
47
|
+
mkdirSync(join(homedir(), '.nimbus'), { recursive: true });
|
|
48
|
+
writeFileSync(SCHEDULE_FILE, JSON.stringify(schedules, null, 2), 'utf-8');
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// ---------------------------------------------------------------------------
|
|
52
|
+
// Cron validation (5-field: min hour dom month dow)
|
|
53
|
+
// ---------------------------------------------------------------------------
|
|
54
|
+
|
|
55
|
+
function isValidCron(cron: string): boolean {
|
|
56
|
+
const parts = cron.trim().split(/\s+/);
|
|
57
|
+
if (parts.length !== 5) return false;
|
|
58
|
+
const validPart = /^(\*|\d+(-\d+)?(\/\d+)?)(,(\*|\d+(-\d+)?(\/\d+)?))*$/;
|
|
59
|
+
return parts.every(p => validPart.test(p));
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Estimate next run time in human-readable form (best-effort).
|
|
64
|
+
*/
|
|
65
|
+
function describeNextRun(cron: string): string {
|
|
66
|
+
const [min, hour, dom, month, dow] = cron.split(/\s+/);
|
|
67
|
+
if (hour === '*' && min === '0') return 'every hour at :00';
|
|
68
|
+
if (dom === '*' && month === '*' && dow === '*') {
|
|
69
|
+
if (hour !== '*' && min !== '*') return `daily at ${hour}:${min.padStart(2, '0')}`;
|
|
70
|
+
}
|
|
71
|
+
if (dow !== '*') {
|
|
72
|
+
const days = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
|
|
73
|
+
const dayName = days[parseInt(dow, 10)];
|
|
74
|
+
if (dayName && hour !== '*') return `weekly on ${dayName} at ${hour}:${(min ?? '0').padStart(2, '0')}`;
|
|
75
|
+
}
|
|
76
|
+
return `cron: ${cron}`;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// ---------------------------------------------------------------------------
|
|
80
|
+
// Subcommands
|
|
81
|
+
// ---------------------------------------------------------------------------
|
|
82
|
+
|
|
83
|
+
function scheduleList(): void {
|
|
84
|
+
const schedules = loadSchedules();
|
|
85
|
+
if (schedules.length === 0) {
|
|
86
|
+
console.log('No schedules configured.');
|
|
87
|
+
console.log('\nAdd one with:');
|
|
88
|
+
console.log(' nimbus schedule add "0 8 * * *" "check for infrastructure drift" --name daily-drift');
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
console.log('Configured schedules:\n');
|
|
93
|
+
for (const s of schedules) {
|
|
94
|
+
console.log(` ID: ${s.id}`);
|
|
95
|
+
console.log(` Name: ${s.name}`);
|
|
96
|
+
console.log(` Runs: ${describeNextRun(s.cron)} (${s.cron})`);
|
|
97
|
+
console.log(` Prompt: ${s.prompt.slice(0, 80)}${s.prompt.length > 80 ? '...' : ''}`);
|
|
98
|
+
console.log('');
|
|
99
|
+
}
|
|
100
|
+
console.log('To activate, add to crontab (crontab -e):');
|
|
101
|
+
for (const s of schedules) {
|
|
102
|
+
console.log(` ${s.cron} nimbus schedule run-now ${s.id}`);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
function scheduleAdd(cron: string, prompt: string, name?: string): void {
|
|
107
|
+
if (!cron || !prompt) {
|
|
108
|
+
console.error('Usage: nimbus schedule add "<cron>" "<prompt>" [--name <name>]');
|
|
109
|
+
process.exit(1);
|
|
110
|
+
}
|
|
111
|
+
if (!isValidCron(cron)) {
|
|
112
|
+
console.error(`Invalid cron expression: "${cron}"`);
|
|
113
|
+
console.error('Expected 5 fields: min hour day-of-month month day-of-week');
|
|
114
|
+
console.error('Example: "0 8 * * *" (daily at 8am)');
|
|
115
|
+
process.exit(1);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const schedules = loadSchedules();
|
|
119
|
+
const id = randomBytes(4).toString('hex');
|
|
120
|
+
const entryName = name ?? `schedule-${id}`;
|
|
121
|
+
|
|
122
|
+
const entry: ScheduleEntry = {
|
|
123
|
+
id,
|
|
124
|
+
name: entryName,
|
|
125
|
+
cron,
|
|
126
|
+
prompt,
|
|
127
|
+
createdAt: new Date().toISOString(),
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
schedules.push(entry);
|
|
131
|
+
saveSchedules(schedules);
|
|
132
|
+
|
|
133
|
+
console.log(`Schedule added: ${entryName} (ID: ${id})`);
|
|
134
|
+
console.log(`Runs: ${describeNextRun(cron)}`);
|
|
135
|
+
console.log('');
|
|
136
|
+
console.log('To activate, add to crontab (crontab -e):');
|
|
137
|
+
console.log(` ${cron} nimbus schedule run-now ${id}`);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function scheduleRemove(idOrName: string): void {
|
|
141
|
+
const schedules = loadSchedules();
|
|
142
|
+
const idx = schedules.findIndex(s => s.id === idOrName || s.name === idOrName);
|
|
143
|
+
if (idx === -1) {
|
|
144
|
+
console.error(`Schedule not found: ${idOrName}`);
|
|
145
|
+
process.exit(1);
|
|
146
|
+
}
|
|
147
|
+
const removed = schedules.splice(idx, 1)[0];
|
|
148
|
+
saveSchedules(schedules);
|
|
149
|
+
console.log(`Removed schedule: ${removed.name} (${removed.id})`);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
async function scheduleRunNow(idOrName: string): Promise<void> {
|
|
153
|
+
const schedules = loadSchedules();
|
|
154
|
+
const entry = schedules.find(s => s.id === idOrName || s.name === idOrName);
|
|
155
|
+
if (!entry) {
|
|
156
|
+
console.error(`Schedule not found: ${idOrName}`);
|
|
157
|
+
process.exit(1);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
console.log(`Running schedule: ${entry.name}`);
|
|
161
|
+
console.log(`Prompt: ${entry.prompt}`);
|
|
162
|
+
console.log('');
|
|
163
|
+
|
|
164
|
+
const { executeRun, parseRunArgs } = await import('../cli/run');
|
|
165
|
+
const { getAppContext } = await import('../app');
|
|
166
|
+
|
|
167
|
+
const ctx = getAppContext();
|
|
168
|
+
if (!ctx) {
|
|
169
|
+
console.error('Error: App not initialised. Make sure credentials are configured.');
|
|
170
|
+
process.exit(1);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
const runOptions = parseRunArgs(['--auto-approve', '--mode', 'build', entry.prompt]);
|
|
174
|
+
await executeRun(ctx.router, runOptions);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// ---------------------------------------------------------------------------
|
|
178
|
+
// Main export
|
|
179
|
+
// ---------------------------------------------------------------------------
|
|
180
|
+
|
|
181
|
+
export async function scheduleCommand(subcommand: string, args: string[]): Promise<void> {
|
|
182
|
+
switch (subcommand) {
|
|
183
|
+
case 'list':
|
|
184
|
+
case 'ls':
|
|
185
|
+
scheduleList();
|
|
186
|
+
break;
|
|
187
|
+
|
|
188
|
+
case 'add': {
|
|
189
|
+
// nimbus schedule add "<cron>" "<prompt>" [--name <name>]
|
|
190
|
+
const cron = args[0] ?? '';
|
|
191
|
+
const prompt = args[1] ?? '';
|
|
192
|
+
const nameIdx = args.indexOf('--name');
|
|
193
|
+
const name = nameIdx !== -1 ? args[nameIdx + 1] : undefined;
|
|
194
|
+
scheduleAdd(cron, prompt, name);
|
|
195
|
+
break;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
case 'remove':
|
|
199
|
+
case 'rm':
|
|
200
|
+
case 'delete': {
|
|
201
|
+
const idOrName = args[0];
|
|
202
|
+
if (!idOrName) {
|
|
203
|
+
console.error('Usage: nimbus schedule remove <id-or-name>');
|
|
204
|
+
process.exit(1);
|
|
205
|
+
}
|
|
206
|
+
scheduleRemove(idOrName);
|
|
207
|
+
break;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
case 'run-now':
|
|
211
|
+
case 'run': {
|
|
212
|
+
const idOrName = args[0];
|
|
213
|
+
if (!idOrName) {
|
|
214
|
+
console.error('Usage: nimbus schedule run-now <id-or-name>');
|
|
215
|
+
process.exit(1);
|
|
216
|
+
}
|
|
217
|
+
await scheduleRunNow(idOrName);
|
|
218
|
+
break;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
default:
|
|
222
|
+
console.log('Usage: nimbus schedule <list|add|remove|run-now>');
|
|
223
|
+
console.log('');
|
|
224
|
+
console.log(' list List configured schedules');
|
|
225
|
+
console.log(' add "<cron>" "<prompt>" Add a new schedule');
|
|
226
|
+
console.log(' remove <id-or-name> Remove a schedule');
|
|
227
|
+
console.log(' run-now <id-or-name> Execute a schedule immediately');
|
|
228
|
+
console.log('');
|
|
229
|
+
console.log('Examples:');
|
|
230
|
+
console.log(' nimbus schedule add "0 8 * * *" "check for infrastructure drift" --name daily-drift');
|
|
231
|
+
console.log(' nimbus schedule add "0 9 * * 1" "generate weekly cost report"');
|
|
232
|
+
console.log(' nimbus schedule list');
|
|
233
|
+
console.log(' nimbus schedule run-now daily-drift');
|
|
234
|
+
break;
|
|
235
|
+
}
|
|
236
|
+
}
|