- Introduce `show_onboarding` UI setting (default true) and persist its state after first launch. - Show onboarding status line and system status on initial run; fallback to normal status thereafter. - Implement `show_tutorial` method displaying keybinding tips and system status. - Register `:tutorial` command in command palette. - Add migration documentation explaining `schema_version` update and deprecation of `agent.max_tool_calls`. - Update README with description of the new tutorial command.
Owlen Core
This crate provides the core abstractions and data structures for the Owlen ecosystem.
It defines the essential traits and types that enable communication with various LLM providers, manage sessions, and handle configuration.
Key Components
Providertrait: The fundamental abstraction for all LLM providers. Implement this trait to add support for a new provider.Session: Represents a single conversation, managing message history and context.Model: Defines the structure for LLM models, including their names and properties.- Configuration: Handles loading and parsing of the application's configuration.