AI answers are easy to get but expensive to read — a CLI that filters them down A developer built concise-md, a zero-dependency Python 3.11+ CLI that post-processes long AI answers into three sections — conclusion, minimal code, and verification — by parsing Markdown with regexes rather than calling an LLM. The tool leaves code blocks byte-for-byte unchanged after the author found an LLM-based version silently broke generated code, and it passes short answers through untouched. On the author's sample set, an 88-line English answer was reduced to 46 lines and a 57-line Japanese answer to 26 lines, both in 0.02 seconds. You ask an AI assistant a question and an answer comes back. Reading it is the expensive part. I find the long round-trips tiring. Ask it how to remove duplicates from a CSV in Python and you get 800 characters covering BOMs, encodings, and pandas design philosophy. What you actually need is twelve lines of code and one way to check it works. Telling the assistant "be concise" ahead of time doesn't always help. Asking "tldr pls" costs another round-trip. So I built a CLI that filters the answer after it's produced. Feed it a Markdown answer and it emits three sections: conclusion, minimal code, and verification. It takes stdin, so you just pipe it. https://github.com/sunnydachs/concise-md https://github.com/sunnydachs/concise-md bash $ concise answer.md Conclusion - The standard approach is exponential backoff with jitter: Minimal code