darwincode 1.9.99

The open source terminal AI coding agent
#![allow(unused_imports)]
pub mod agent_picker;
pub mod chat;
pub mod command_handler;
pub mod commands;
pub mod core;
pub mod custom;
pub mod file_ops;
pub mod model;
pub mod permission;
pub mod session;
pub mod setup;
pub mod state;
pub mod theme_picker;

pub use agent_picker::AgentPickerState;
pub use chat::{ChatCommand, ChatState, CommandSuggestion, MessageLine};
pub use custom::{load_custom_agents, load_custom_commands, load_custom_commands_all};
pub use model::ModelPickerState;
pub use permission::PermissionPickerState;
pub use session::SessionPickerState;
pub use setup::{SetupField, SetupState};
pub use theme_picker::ThemePickerState;

pub use core::{
    App, AppCore, AppProcessManager, AppUiState, AskUserState, DevelopMode, FileBackup,
    FunctionAction, GenerationRequest, PendingTask, Screen, SubmitAction,
};