sephera_core 0.4.0

Shared analysis engine behind the Sephera CLI for LOC metrics, context building, and Tree-sitter AST compression.
Documentation
//! Core analysis modules for Sephera.

/// Line-of-code metrics and codebase structure analysis.
pub mod code_loc;

/// Tree-sitter AST based codebase compression.
pub mod compression;

/// Configuration models for Sephera logic.
pub mod config;

/// Deterministic context extraction and bundling tools.
pub mod context;

mod ignore;

/// Language definitions and metadata.
pub mod language_data;

mod line_slices;
mod project_files;