tokmd 1.13.0

Tokei-backed repo inventory receipts (Markdown/TSV/JSONL/CSV) for PRs, CI, and LLM workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Context packing helpers for LLM context window optimization.

mod budget;
mod manifest;
mod output;
mod render;
mod select;

pub(crate) use budget::parse_budget;
pub(crate) use manifest::write_bundle_directory;
pub(crate) use output::{
    append_context_log_record, determine_output_destination, write_to_destination,
};
pub(crate) use render::{CountingWriter, format_list_output, write_bundle_output, write_head_tail};
pub(crate) use select::{SelectOptions, SelectResult, select_files_with_options};