feat: TUI rule builder with CRUD and config persistence#2
Open
Fraser-Isbester wants to merge 5 commits into
Open
feat: TUI rule builder with CRUD and config persistence#2Fraser-Isbester wants to merge 5 commits into
Fraser-Isbester wants to merge 5 commits into
Conversation
- TUI form (n/e/d keys on rules view) for creating, editing, deleting rules - Live CEL expression validation as you type - Persists rules to ~/.config/tusk/config.yaml atomically - Hot-swaps engine at runtime via UpdateRules() - Handles nil engine → first rule creates engine and wires all views - Status bar and help panel updated with rule builder hints
- Name and When fields expand to fill available width (no more truncation) - When field offers autocomplete for resource variables and CEL builtins - Suggestions filter by prefix of the current token being typed - Accepting a suggestion re-validates the expression immediately
…ions - Fix struct field alignment in NewApp (gofmt) - Separate stdlib/third-party/internal import groups in rule_form.go (goimports) - Tighten config dir to 0750, config file to 0600 (gosec G301/G306) - Add CI-before-push requirement to AGENTS.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
n(new),e(edit),d(delete) key bindings~/.config/tusk/config.yamland survive restartsUpdateRules(), no restart needed. First rule bootstraps the engine if none existsChanged files
internal/tui/views/rule_form.gointernal/tui/app.gointernal/config/config.goSave()for atomic YAML persistenceinternal/tui/views/rules.goSetEngine()for nil→initialized transitioninternal/tui/views/violations.goSetEngine()for nil→initialized transitioncmd/tusk/main.go*config.ConfigtoNewAppTest plan
n— form appears~/.config/tusk/config.yamle— form pre-populated, modify, saved— confirmation, delete, verify removed from config