codewhale-tui 0.9.8

Terminal UI for open-source and open-weight coding models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Federated plugin marketplace catalog parsing (#5311).
//!
//! Parses real published catalog schemas — Kimi, Claude, Codex, and the
//! native Codewhale format — into one normalized candidate model with
//! per-entry fault isolation, provenance that never grants trust, and
//! install plans that say honestly whether Codewhale can fetch a source.
//!
//! This layer is parser-only: no network, no filesystem reads, no process
//! execution. Every fetch happens through the existing reviewed installer
//! when an operator explicitly installs a candidate.

pub mod parsers;
pub mod store;
#[cfg(test)]
mod tests;
pub mod types;