squeez 1.10.0

Hook-based token compressor for 5 AI CLI hosts (Claude Code, Copilot CLI, OpenCode, Gemini CLI, Codex CLI). Up to 95% bash compression, signature-mode for code reads, cross-call dedup, MCP server, self-teaching protocol. Zero runtime deps.
Documentation
use crate::commands::compress_md::locales;

#[derive(Copy, Clone, Debug)]
pub struct Locale {
    #[allow(dead_code)]
    pub code:         &'static str,
    pub fillers:      &'static [&'static str],
    pub articles:     &'static [&'static str],
    pub phrases:      &'static [&'static str],
    pub hedges:       &'static [&'static str],
    pub conjunctions: &'static [&'static str],
    pub ultra_subs:   &'static [(&'static str, &'static str)],
}

impl Locale {
    pub fn from_code(code: &str) -> &'static Locale {
        match code {
            "pt" | "pt-BR" | "pt_BR" | "pt-br" => &locales::PT_BR,
            _ => &locales::EN,
        }
    }
}