mindfork 0.11.0

A terminal AI chat written in Rust: local models via llama.cpp or OpenAI, Anthropic, Gemini and Grok in the cloud, with persistent memory, notes, RAG and tools.
1
2
3
4
5
6
7
8
9
10
11
//! The `app` layer (FSD): application composition — the TUI loop, orchestration, events.
//! See spec §4.2, §4.4.

#[cfg(test)]
mod demo_shots;
pub mod events;
pub mod gen_state;
pub mod orchestrator;
pub mod runtime;
pub mod supervisor;
pub mod verify;