skiagram-core 0.1.0

Domain model, agent adapters, and token-accounting analysis for skiagram (no UI, no network).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! skiagram-core — agent-agnostic domain model, adapters, and token accounting.
//!
//! This crate is pure: no terminal I/O, no global state, no network. All file
//! access is read-only. The binary crate (`skiagram`) owns rendering and the TUI.
//!
//! Critical correctness rules live in CLAUDE.md §8; the load-bearing one is
//! request-level deduplication in [`analysis::dedup`].

pub mod adapters;
pub mod analysis;
pub mod error;
pub mod model;
pub mod pricing;