aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-ai/src/fsm (unfollow)
Commit message (Collapse)Author
2026-06-10chore: Remove some unused rust codeBenedikt Peetz
2026-04-23feat: Add skill discovery, loading, and invocation (#3444)Michelle Tilley
Adds a skills system that lets users define reusable LLM instructions as `SKILL.md` files with YAML frontmatter.
2026-04-21feat: shell tool execution timeouts (#3437)Michelle Tilley
2026-04-21fix: shell tool preview stuck as Running after completion (#3436)Michelle Tilley
2026-04-21refactor: Replace ad-hoc dispatch with FSM + driver architecture (#3434)Michelle Tilley
Replaces the tangled dispatch handler system (`tui/dispatch.rs`, `tui/state.rs`) with a pure finite state machine + driver architecture. The FSM handles all state transitions as explicit `(State, Event) → (NewState, Effects)` mappings. The driver executes IO effects and bridges the TUI to the FSM.