cordy 0.1.1

A cross-platform TUI coding agent in Rust — hot-swap any model/provider mid-conversation, MCP, skills, sub-agents, background jobs, and an OpenCode-inspired interface.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core: the canonical model and the agent runtime that speaks only it.

pub mod agent;
pub mod auth;
pub mod autonomous;
pub mod capability;
pub mod checkpoint;
pub mod context;
pub mod models_dev;
pub mod permission;
pub mod prompt;
pub mod session_store;
pub mod types;
pub mod update;