andy-stack_vaultkeeper-ai/Enums/InputMode.ts
Andrew Beal fa92e15b8c feat: add plan approval UI with user review workflow
Add PlanApprovalService and PlanApprovalView to enable user review
and approval of AI-generated execution plans before execution begins.
Users can approve, reject, or suggest changes to plans through a new
input mode and dedicated view.
2026-07-06 16:11:30 +01:00

6 lines
129 B
TypeScript

export enum InputMode {
Normal = "normal",
Diff = "diff",
Question = "question",
PlanApproval = "planApproval"
}