uira-core 0.1.1

Shared types, events, protocol definitions, and configuration loading for Uira
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod loader;
pub mod schema;

pub use loader::{
    find_all_config_files, load_config, load_config_from_file, resolve_config, ConfigFormat,
    ResolvedConfig,
};
pub use schema::{
    AgentConfig, AgentSettings, AiHookCommand, AiHooksConfig, AnthropicProviderSettings,
    CommentsAiSettings, CommentsSettings, DiagnosticsAiSettings, DiagnosticsSettings, HookCommand,
    HookConfig, HooksConfig, KeybindsConfig, McpServerConfig, McpSettings, NamedMcpServerConfig,
    PayloadLogSettings, ProvidersSettings, SidebarConfig, ThemeColorOverrides, TyposAiSettings,
    TyposSettings, UiraConfig,
};