aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-ai/src/context.rs (unfollow)
Commit message (Collapse)Author
10 dayschore: Remove some unused rust codeBenedikt Peetz
12 daysfeat: Capture command output + expose to new `atuin_output` tool (#3510)Michelle Tilley
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-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.
2026-04-10feat: Client-tool execution + permission system (#3370)Michelle Tilley
Adds client-side tool execution to Atuin AI, starting with `atuin_history`. The server can request tool calls, which are executed locally with a permission system, and results are sent back to continue the conversation.