parecode 0.1.1

A terminal coding agent built for token efficiency and local model reliability
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// UI helpers shared between the TUI and plain-stdout modes.

// ── Tool glyphs ───────────────────────────────────────────────────────────────

pub fn tool_glyph(tool_name: &str) -> &'static str {
    match tool_name {
        "read_file"  => "",
        "write_file" => "",
        "edit_file"  => "",
        "bash"       => "",
        "search"     => "",
        "list_files" => "",
        _            => "",
    }
}