sephera 0.5.0

Local-first Rust CLI for repository metrics and deterministic LLM context packs with AST compression and MCP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(clippy::pedantic, clippy::all, clippy::nursery, clippy::perf)]

mod args;
mod budget;
pub(crate) mod context_config;
mod output;
mod progress;
mod run;

#[doc(hidden)]
pub use output::{
    render_context_json, render_context_markdown, render_report_table,
};
pub use run::{main_exit_code, run};