Skip to main content

lean_ctx/core/patterns/
mod.rs

1/// Pattern engine version. Bump when output format changes to maintain
2/// shell-output determinism guarantees. Consumers (proofs, benchmarks)
3/// can embed this version to detect pattern-breaking updates.
4///
5/// v2 (#936): `json_schema::compress` now prefers the lossless `json_crush`
6/// form over the schema outline for redundant array-of-object payloads.
7pub const PATTERN_ENGINE_VERSION: u32 = 2;
8
9pub mod alembic;
10pub mod ansible;
11pub mod argocd;
12pub mod artisan;
13pub mod aws;
14pub mod bazel;
15pub mod buf;
16pub mod bun;
17pub mod cargo;
18pub mod clang;
19pub mod cmake;
20pub mod composer;
21pub mod cosign;
22pub mod curl;
23pub mod dbt;
24pub mod deno;
25pub mod deploy;
26pub mod deps_cmd;
27pub mod docker;
28pub mod dotnet;
29pub mod env_filter;
30pub mod eslint;
31pub mod fd;
32pub mod find;
33pub mod flutter;
34pub mod flyway;
35pub mod gem;
36pub mod gh;
37pub mod git;
38pub mod glab;
39pub mod golang;
40pub mod grep;
41pub mod grype;
42pub mod helm;
43pub mod jj;
44pub mod json_schema;
45pub mod just;
46pub mod kubectl;
47pub mod linkerd;
48pub mod log_dedup;
49pub mod ls;
50pub mod make;
51pub mod maven;
52pub mod mise;
53pub mod mix;
54pub mod mlflow;
55pub mod mypy;
56pub mod mysql;
57pub mod next_build;
58pub mod ninja;
59pub mod npm;
60pub mod ollama;
61pub mod php;
62pub mod pip;
63pub mod playwright;
64pub mod pnpm;
65pub mod poetry;
66pub mod prettier;
67pub mod prisma;
68pub mod psql;
69pub mod pulumi;
70pub mod pytest;
71pub mod ruby;
72pub mod ruff;
73pub mod semgrep;
74pub mod spark;
75pub mod swift;
76pub mod swiftlint;
77pub mod syft;
78pub mod sysinfo;
79pub mod systemd;
80pub mod terraform;
81pub mod test;
82pub mod trivy;
83pub mod typescript;
84pub mod wget;
85pub mod zig;
86
87use crate::core::tokens::count_tokens;
88
89pub fn compress_output(command: &str, output: &str) -> Option<String> {
90    // Policy gate: protected commands (Passthrough + Verbatim) must
91    // never be pattern-compressed. The caller (compress_if_beneficial
92    // or ctx_shell::handle) should have already checked, but we
93    // defend in depth here.
94    let policy = crate::shell::output_policy::classify(command, &[]);
95    if policy.is_protected() {
96        return None;
97    }
98
99    let stripped;
100    let clean_output = {
101        let s = crate::core::compressor::strip_ansi(output);
102        if s.len() < output.len() {
103            stripped = s;
104            &stripped
105        } else {
106            output
107        }
108    };
109
110    if let Some(engine) = crate::core::filters::FilterEngine::load()
111        && let Some(filtered) = engine.apply(command, clean_output)
112    {
113        return shorter_only(filtered, output);
114    }
115
116    // VCS history (git/jj/gh/glab/hg) is owned by its dedicated compressor. Its
117    // lines look log-ish (one per commit) but are NOT application logs, so the
118    // generic json/log/test fallbacks would mis-summarize them — e.g. truncating
119    // an explicit `git log --oneline -40` to "last 15" or reading a commit
120    // subject like "fix: pending_errors" as an error line. Return the dedicated
121    // compressor's result directly — even when it is not shorter, so an already
122    // compact oneline log is preserved verbatim (full history intact) instead of
123    // being reshaped by a generic heuristic.
124    if has_vcs_owner(command) {
125        // The VCS compressor is authoritative and is kept even when it is not
126        // strictly *shorter*, so a compact `git log --oneline` is preserved
127        // verbatim (full history intact). It must still never return *more*
128        // tokens than its input, though — a tiny adversarial `git status` body
129        // could otherwise reshape into a one-token-larger summary and break the
130        // never-inflate invariant. Allow equal (verbatim), reject only growth.
131        return try_specific_pattern(command, clean_output)
132            .filter(|c| !c.trim().is_empty())
133            .filter(|c| !inflates_tokens(c, output));
134    }
135
136    if let Some(compressed) = try_specific_pattern(command, clean_output)
137        && let Some(r) = shorter_only(compressed, output)
138    {
139        return Some(r);
140    }
141
142    if let Some(r) = json_schema::compress(clean_output)
143        && let Some(r) = shorter_only(r, output)
144    {
145        return Some(r);
146    }
147
148    if let Some(r) = log_dedup::compress(clean_output)
149        && let Some(r) = shorter_only(r, output)
150    {
151        return Some(r);
152    }
153
154    if let Some(r) = test::compress(clean_output)
155        && let Some(r) = shorter_only(r, output)
156    {
157        return Some(r);
158    }
159
160    None
161}
162
163/// True for version-control commands whose output is authoritative under their
164/// own compressor and must not be reinterpreted by the generic log/test
165/// fallbacks (commit history is not application log output).
166pub(crate) fn has_vcs_owner(command: &str) -> bool {
167    let c = command.trim_start().to_ascii_lowercase();
168    c.starts_with("git ")
169        || c.starts_with("jj ")
170        || c.starts_with("gh ")
171        || c.starts_with("glab ")
172        || c.starts_with("hg ")
173}
174
175/// Collapse whitespace into single spaces so comparisons align with logical word tokens.
176fn normalize_shell_tokens(text: &str) -> String {
177    text.split_whitespace().collect::<Vec<_>>().join(" ")
178}
179
180/// True when `compressed` carries *more* tokens than the raw `original` — i.e.
181/// the transform inflated rather than compressed. Compared against the raw
182/// (pre-ANSI-strip) output so the guard matches the public `compress_output`
183/// invariant exactly: the returned text never tokenizes larger than its input.
184fn inflates_tokens(compressed: &str, original: &str) -> bool {
185    count_tokens(compressed) > count_tokens(original)
186}
187
188fn shorter_only(compressed: String, original: &str) -> Option<String> {
189    let orig_n = normalize_shell_tokens(original);
190    let comp_n = normalize_shell_tokens(&compressed);
191    let ct_c = count_tokens(&comp_n);
192    let ct_o = count_tokens(&orig_n);
193    if ct_c < ct_o || (ct_c == ct_o && comp_n.len() < orig_n.len()) {
194        Some(compressed)
195    } else {
196        None
197    }
198}
199
200type PatternMatcher = fn(&str) -> bool;
201type PatternHandler = fn(&str, &str) -> Option<String>;
202
203/// Ordered prefix → compressor dispatch table (#660 CC reduction): first
204/// matching entry wins, mirroring the previous `if c.starts_with(..) { return
205/// ...; }` cascade exactly — including that a matched entry's `None` is
206/// final, never falls through to a later entry. Registering a new CLI tool
207/// is now a one-line addition here instead of a new branch in
208/// `try_specific_pattern`.
209const PATTERNS: &[(PatternMatcher, PatternHandler)] = &[
210    (
211        |c| c.starts_with("git "),
212        |c, output| git::compress(c, output),
213    ),
214    (
215        |c| c.starts_with("gh "),
216        |c, output| gh::compress(c, output),
217    ),
218    (
219        |c| c.starts_with("glab "),
220        |c, output| glab::try_glab_pattern(c, output),
221    ),
222    (
223        |c| c == "terraform" || c.starts_with("terraform "),
224        |c, output| terraform::compress(c, output),
225    ),
226    (
227        |c| c == "make" || c.starts_with("make "),
228        |c, output| make::compress(c, output),
229    ),
230    (
231        |c| c == "just" || c.starts_with("just "),
232        |c, output| just::compress(c, output),
233    ),
234    (
235        |c| {
236            c.starts_with("mvn ")
237                || c.starts_with("./mvnw ")
238                || c.starts_with("mvnw ")
239                || c.starts_with("gradle ")
240                || c.starts_with("./gradlew ")
241                || c.starts_with("gradlew ")
242        },
243        |c, output| maven::compress(c, output),
244    ),
245    (
246        |c| c.starts_with("kubectl ") || c.starts_with("k "),
247        |c, output| kubectl::compress(c, output),
248    ),
249    (
250        |c| c.starts_with("helm "),
251        |c, output| helm::compress(c, output),
252    ),
253    (
254        |c| c.starts_with("pnpm "),
255        |c, output| pnpm::compress(c, output),
256    ),
257    (
258        |c| c.starts_with("bun ") || c.starts_with("bunx "),
259        |c, output| bun::compress(c, output),
260    ),
261    (
262        |c| c.starts_with("deno "),
263        |c, output| deno::compress(c, output),
264    ),
265    (
266        |c| c.starts_with("npm ") || c.starts_with("yarn "),
267        |c, output| npm::compress(c, output),
268    ),
269    (
270        |c| c.starts_with("cargo "),
271        |c, output| cargo::compress(c, output),
272    ),
273    (
274        |c| c.starts_with("docker ") || c.starts_with("docker-compose "),
275        |c, output| docker::compress(c, output),
276    ),
277    (
278        |c| c.starts_with("pip ") || c.starts_with("pip3 ") || c.starts_with("python -m pip"),
279        |c, output| pip::compress(c, output),
280    ),
281    (
282        |c| c.starts_with("mypy") || c.starts_with("python -m mypy") || c.starts_with("dmypy "),
283        |c, output| mypy::compress(c, output),
284    ),
285    (
286        |c| c.starts_with("pytest") || c.starts_with("python -m pytest"),
287        |c, output| pytest::compress(c, output).or_else(|| test::compress(output)),
288    ),
289    (
290        |c| c.starts_with("ruff "),
291        |c, output| ruff::compress(c, output),
292    ),
293    (
294        |c| {
295            c.starts_with("eslint")
296                || c.starts_with("npx eslint")
297                || c.starts_with("biome ")
298                || c.starts_with("stylelint")
299        },
300        |c, output| eslint::compress(c, output),
301    ),
302    (
303        |c| c.starts_with("prettier") || c.starts_with("npx prettier"),
304        |_c, output| prettier::compress(output),
305    ),
306    (
307        |c| c.starts_with("go ") || c.starts_with("golangci-lint") || c.starts_with("golint"),
308        |c, output| golang::compress(c, output),
309    ),
310    (
311        |c| {
312            c.starts_with("playwright")
313                || c.starts_with("npx playwright")
314                || c.starts_with("cypress")
315                || c.starts_with("npx cypress")
316        },
317        |c, output| playwright::compress(c, output),
318    ),
319    (
320        |c| c.starts_with("vitest") || c.starts_with("npx vitest") || c.starts_with("pnpm vitest"),
321        |_c, output| test::compress(output),
322    ),
323    (
324        |c| {
325            c.starts_with("next ")
326                || c.starts_with("npx next")
327                || c.starts_with("vite ")
328                || c.starts_with("npx vite")
329                || c.starts_with("vp ")
330                || c.starts_with("vite-plus ")
331        },
332        |c, output| next_build::compress(c, output),
333    ),
334    (
335        |c| c.starts_with("tsc") || c.contains("typescript"),
336        |_c, output| typescript::compress(output),
337    ),
338    (
339        |c| {
340            c.starts_with("rubocop")
341                || c.starts_with("bundle ")
342                || c.starts_with("rake ")
343                || c.starts_with("rails test")
344                || c.starts_with("rspec")
345        },
346        |c, output| ruby::compress(c, output),
347    ),
348    (|c| is_grep_family(c), |_c, output| grep::compress(output)),
349    (
350        |c| c.starts_with("find "),
351        |_c, output| find::compress(output),
352    ),
353    (
354        |c| c.starts_with("fd ") || c.starts_with("fdfind "),
355        |_c, output| fd::compress(output),
356    ),
357    (
358        |c| c.starts_with("ls ") || c == "ls",
359        |_c, output| ls::compress(output),
360    ),
361    (
362        |c| c.starts_with("curl "),
363        |c, output| curl::compress_with_cmd(c, output),
364    ),
365    (
366        |c| c.starts_with("wget "),
367        |_c, output| wget::compress(output),
368    ),
369    (
370        |c| c == "env" || c.starts_with("env ") || c.starts_with("printenv"),
371        |_c, output| env_filter::compress(output),
372    ),
373    (
374        |c| c.starts_with("dotnet "),
375        |c, output| dotnet::compress(c, output),
376    ),
377    (
378        |c| {
379            c.starts_with("flutter ")
380                || (c.starts_with("dart ") && (c.contains(" analyze") || c.ends_with(" analyze")))
381        },
382        |c, output| flutter::compress(c, output),
383    ),
384    (
385        |c| {
386            c.starts_with("poetry ")
387                || c.starts_with("uv ")
388                || c.starts_with("conda ")
389                || c.starts_with("mamba ")
390                || c.starts_with("pipx ")
391        },
392        |c, output| poetry::compress(c, output),
393    ),
394    (
395        |c| c.starts_with("aws "),
396        |c, output| aws::compress(c, output),
397    ),
398    (
399        |c| c.starts_with("psql ") || c.starts_with("pg_"),
400        |c, output| psql::compress(c, output),
401    ),
402    (
403        |c| c.starts_with("mysql ") || c.starts_with("mariadb "),
404        |c, output| mysql::compress(c, output),
405    ),
406    (
407        |c| c.starts_with("prisma ") || c.starts_with("npx prisma"),
408        |c, output| prisma::compress(c, output),
409    ),
410    (
411        |c| c.starts_with("swift "),
412        |c, output| swift::compress(c, output),
413    ),
414    (
415        |c| c.starts_with("zig "),
416        |c, output| zig::compress(c, output),
417    ),
418    (
419        |c| c.starts_with("cmake ") || c.starts_with("ctest"),
420        |c, output| cmake::compress(c, output),
421    ),
422    (
423        |c| c.starts_with("ninja"),
424        |c, output| ninja::compress(c, output),
425    ),
426    (
427        |c| c.starts_with("ansible") || c.starts_with("ansible-playbook"),
428        |c, output| ansible::compress(c, output),
429    ),
430    (
431        |c| c.starts_with("composer "),
432        |c, output| composer::compress(c, output),
433    ),
434    (
435        |c| c.starts_with("php artisan") || c.starts_with("artisan "),
436        |c, output| artisan::compress(c, output),
437    ),
438    (
439        |c| c.starts_with("./vendor/bin/pest") || c.starts_with("pest "),
440        |_c, output| artisan::compress("php artisan test", output),
441    ),
442    (
443        |c| c.starts_with("mix ") || c.starts_with("iex "),
444        |c, output| mix::compress(c, output),
445    ),
446    (
447        |c| c.starts_with("bazel ") || c.starts_with("blaze "),
448        |c, output| bazel::compress(c, output),
449    ),
450    (
451        |c| c.starts_with("systemctl ") || c.starts_with("journalctl"),
452        |c, output| systemd::compress(c, output),
453    ),
454    (
455        |c| c.starts_with("jest") || c.starts_with("npx jest") || c.starts_with("pnpm jest"),
456        |_c, output| test::compress(output),
457    ),
458    (
459        |c| c.starts_with("mocha") || c.starts_with("npx mocha"),
460        |_c, output| test::compress(output),
461    ),
462    (
463        |c| c.starts_with("tofu "),
464        |c, output| terraform::compress(c, output),
465    ),
466    (
467        |c| c.starts_with("ps ") || c == "ps",
468        |_c, output| sysinfo::compress_ps(output),
469    ),
470    (
471        |c| c.starts_with("df ") || c == "df",
472        |_c, output| sysinfo::compress_df(output),
473    ),
474    (
475        |c| c.starts_with("du ") || c == "du",
476        |_c, output| sysinfo::compress_du(output),
477    ),
478    (
479        |c| c.starts_with("ping "),
480        |_c, output| sysinfo::compress_ping(output),
481    ),
482    (
483        |c| c.starts_with("jq ") || c == "jq",
484        |_c, output| json_schema::compress(output),
485    ),
486    (
487        |c| c.starts_with("hadolint"),
488        |c, output| eslint::compress(c, output),
489    ),
490    (
491        |c| c.starts_with("yamllint") || c.starts_with("npx yamllint"),
492        |c, output| eslint::compress(c, output),
493    ),
494    (
495        |c| c.starts_with("markdownlint") || c.starts_with("npx markdownlint"),
496        |c, output| eslint::compress(c, output),
497    ),
498    (
499        |c| c.starts_with("oxlint") || c.starts_with("npx oxlint"),
500        |c, output| eslint::compress(c, output),
501    ),
502    (
503        |c| c.starts_with("pyright") || c.starts_with("basedpyright"),
504        |c, output| mypy::compress(c, output),
505    ),
506    (
507        |c| c.starts_with("turbo ") || c.starts_with("npx turbo"),
508        |c, output| npm::compress(c, output),
509    ),
510    (
511        |c| c.starts_with("nx ") || c.starts_with("npx nx"),
512        |c, output| npm::compress(c, output),
513    ),
514    (
515        |c| c.starts_with("clang++ ") || c.starts_with("clang "),
516        |c, output| clang::compress(c, output),
517    ),
518    (
519        |c| {
520            c.starts_with("gcc ")
521                || c.starts_with("g++ ")
522                || c.starts_with("cc ")
523                || c.starts_with("c++ ")
524        },
525        |c, output| cmake::compress(c, output),
526    ),
527    // --- data domain (#657) ---
528    (
529        |c| c == "dbt" || c.starts_with("dbt "),
530        |c, output| dbt::compress(c, output),
531    ),
532    (
533        |c| c == "alembic" || c.starts_with("alembic "),
534        |c, output| alembic::compress(c, output),
535    ),
536    (
537        |c| c == "flyway" || c.starts_with("flyway "),
538        |c, output| flyway::compress(c, output),
539    ),
540    (
541        |c| c.starts_with("spark-submit") || c.starts_with("spark-sql") || c.starts_with("pyspark"),
542        |c, output| spark::compress(c, output),
543    ),
544    // --- ai domain (#658) ---
545    (
546        |c| c == "ollama" || c.starts_with("ollama "),
547        |c, output| ollama::compress(c, output),
548    ),
549    (
550        |c| c.starts_with("mlflow "),
551        |c, output| mlflow::compress(c, output),
552    ),
553    // --- security / supply-chain (#659) ---
554    (
555        |c| c.starts_with("semgrep "),
556        |c, output| semgrep::compress(c, output),
557    ),
558    (
559        |c| c.starts_with("trivy "),
560        |c, output| trivy::compress(c, output),
561    ),
562    (
563        |c| c.starts_with("grype "),
564        |c, output| grype::compress(c, output),
565    ),
566    (
567        |c| c.starts_with("syft "),
568        |c, output| syft::compress(c, output),
569    ),
570    (
571        |c| c.starts_with("cosign "),
572        |c, output| cosign::compress(c, output),
573    ),
574    (
575        |c| c.starts_with("swiftlint"),
576        |c, output| swiftlint::compress(c, output),
577    ),
578    // --- vcs / toolchain (#660) ---
579    (
580        |c| c == "jj" || c.starts_with("jj "),
581        |c, output| jj::compress(c, output),
582    ),
583    (
584        |c| c == "mise" || c.starts_with("mise "),
585        |c, output| mise::compress(c, output),
586    ),
587    (
588        |c| c == "buf" || c.starts_with("buf "),
589        |c, output| buf::compress(c, output),
590    ),
591    (
592        |c| c.starts_with("gem "),
593        |c, output| gem::compress(c, output),
594    ),
595    // --- edge / infra (#661) ---
596    (
597        |c| c == "pulumi" || c.starts_with("pulumi "),
598        |c, output| pulumi::compress(c, output),
599    ),
600    (
601        |c| c.starts_with("linkerd "),
602        |c, output| linkerd::compress(c, output),
603    ),
604    (
605        |c| c.starts_with("argocd "),
606        |c, output| argocd::compress(c, output),
607    ),
608    (
609        |c| {
610            c == "vercel"
611                || c.starts_with("vercel ")
612                || c == "fly"
613                || c.starts_with("fly ")
614                || c.starts_with("flyctl ")
615                || c.starts_with("wrangler ")
616                || c.starts_with("skaffold ")
617                || c.starts_with("supabase ")
618        },
619        |c, output| deploy::compress(c, output),
620    ),
621];
622
623/// A grep-family search command, bare or with arguments (#980, #985).
624///
625/// The bare form matters: `proxy::compress::infer_command` synthesises `grep`
626/// (no arguments) from tool names like `search_files`. The old `starts_with("grep ")`
627/// required a trailing space and never matched, so those results fell through to the
628/// terse pipeline which corrupted source identifiers.
629fn is_grep_family(cmd: &str) -> bool {
630    let first = cmd.split_whitespace().next().unwrap_or("");
631    let base = first.rsplit('/').next().unwrap_or(first);
632    matches!(
633        base,
634        "grep" | "egrep" | "fgrep" | "rg" | "ag" | "ack" | "ugrep" | "sift"
635    )
636}
637
638pub fn try_specific_pattern(cmd: &str, output: &str) -> Option<String> {
639    let cl = cmd.to_ascii_lowercase();
640    let c = cl.as_str();
641
642    PATTERNS
643        .iter()
644        .find(|(matches, _)| matches(c))
645        .and_then(|(_, handle)| handle(c, output))
646}
647
648#[cfg(test)]
649mod tests {
650    use super::*;
651
652    #[test]
653    fn routes_git_commands() {
654        let output = "On branch main\nnothing to commit";
655        assert!(compress_output("git status", output).is_some());
656    }
657
658    #[test]
659    fn vcs_path_never_inflates_tokens() {
660        // Regression for the `compress_output_never_inflates_tokens` property
661        // (Windows CI): the VCS branch returned the git compressor's reshaped
662        // output without the `shorter_only` guard the other paths use, so this
663        // tiny adversarial `git status` body grew 10 -> 11 tokens. The result
664        // must now never tokenize larger than its input (None == use original).
665        let output = " Abu a\nAa aa_A00A\n\n-";
666        if let Some(compressed) = compress_output("git status", output) {
667            assert!(
668                count_tokens(&compressed) <= count_tokens(output),
669                "VCS compress inflated: {} > {}",
670                count_tokens(&compressed),
671                count_tokens(output),
672            );
673        }
674    }
675
676    #[test]
677    fn routes_cargo_commands() {
678        let output = "   Compiling lean-ctx v2.1.1\n    Finished `release` profile [optimized] target(s) in 30.5s";
679        assert!(compress_output("cargo build --release", output).is_some());
680    }
681
682    #[test]
683    fn routes_npm_commands() {
684        let output = "added 150 packages, and audited 151 packages in 5s\n\n25 packages are looking for funding\n  run `npm fund` for details\n\nfound 0 vulnerabilities";
685        assert!(compress_output("npm install", output).is_some());
686    }
687
688    #[test]
689    fn routes_docker_commands() {
690        let output = "CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES";
691        // docker ps is Verbatim (via is_container_listing), so compress_output
692        // correctly returns None (policy gate). docker build should still compress.
693        assert!(compress_output("docker ps", output).is_none());
694        let build_output =
695            "Step 1/5 : FROM node:18\n ---> abc123\nStep 2/5 : COPY . .\nSuccessfully built def456";
696        assert!(compress_output("docker build .", build_output).is_some());
697    }
698
699    #[test]
700    fn routes_mypy_commands() {
701        let output = "src/main.py:10: error: Missing return  [return]\nFound 1 error in 1 file (checked 3 source files)";
702        assert!(compress_output("mypy .", output).is_some());
703        assert!(compress_output("python -m mypy src/", output).is_some());
704    }
705
706    #[test]
707    fn routes_pytest_commands() {
708        let output = "===== test session starts =====\ncollected 5 items\ntest_main.py ..... [100%]\n===== 5 passed in 0.5s =====";
709        assert!(compress_output("pytest", output).is_some());
710        assert!(compress_output("python -m pytest tests/", output).is_some());
711    }
712
713    #[test]
714    fn routes_data_domain() {
715        let dbt =
716            "20:14:02  Found 12 models\n20:14:20  Done. PASS=11 WARN=0 ERROR=1 SKIP=0 TOTAL=12";
717        assert!(
718            compress_output("dbt run", dbt).is_some(),
719            "dbt routed+compressible"
720        );
721        let alembic = "INFO  [alembic.runtime.migration] Context impl PostgresqlImpl.\nINFO  [alembic.runtime.migration] Running upgrade  -> a1b2c3, create users table\nINFO  [alembic.runtime.migration] Running upgrade a1b2c3 -> d4e5f6, add email index";
722        assert!(compress_output("alembic upgrade head", alembic).is_some());
723        let flyway = "Flyway Community Edition 9.22.0 by Redgate\nDatabase: jdbc:postgresql://localhost/db\nMigrating schema \"public\" to version \"5 - add orders\"\nSuccessfully applied 1 migration to schema \"public\", now at version v5";
724        assert!(compress_output("flyway migrate", flyway).is_some());
725        let spark = "23/01/01 12:00:00 INFO SparkContext: Running Spark version 3.4.0\n23/01/01 12:00:01 INFO ResourceUtils: none configured\n23/01/01 12:00:10 INFO DAGScheduler: Job 0 finished: collect, took 5.1 s\n23/01/01 12:00:15 ERROR Executor: Exception in task 0.0";
726        assert!(compress_output("spark-submit app.py", spark).is_some());
727    }
728
729    #[test]
730    fn routes_ai_domain() {
731        let ollama = "NAME              ID              SIZE      MODIFIED\nllama3.2:latest   a80c4f17acd5    2.0 GB    3 days ago\nqwen2.5-coder:7b  2b0496514337    4.7 GB    2 weeks ago";
732        assert!(compress_output("ollama list", ollama).is_some());
733        let mlflow = "2024/01/01 12:00:01 INFO mlflow.projects.backend.local: === Running command 'python train.py' ===\nCollecting numpy==1.26.0\nDownloading numpy-1.26.0.whl (18.2 MB)\n2024/01/01 12:00:30 INFO mlflow.projects: === Run (ID 'abc123def456') succeeded ===";
734        assert!(compress_output("mlflow run .", mlflow).is_some());
735    }
736
737    #[test]
738    fn routes_security_domain() {
739        let trivy = "2024-01-01T12:00:00.000Z\tINFO\tscanning\nnginx:latest (debian 12.1)\n=====\nTotal: 45 (LOW: 20, HIGH: 8, CRITICAL: 2)";
740        assert!(compress_output("trivy image nginx", trivy).is_some());
741        let grype = "NAME       INSTALLED  FIXED-IN  TYPE  VULNERABILITY   SEVERITY\nlibssl1.1  1.1.1n     1.1.1w    deb   CVE-2023-1234   Critical\nzlib1g     1.2.11     1.2.13    deb   CVE-2022-5678   High";
742        assert!(compress_output("grype nginx", grype).is_some());
743        let syft = "NAME       VERSION    TYPE\nadduser    3.118      deb\napt        2.6.1      deb\nlodash     4.17.21    npm";
744        assert!(compress_output("syft nginx", syft).is_some());
745        let semgrep = "Scanning 120 files.\n  src/app.py\n     python.security.dangerous-subprocess-use\n        Detected subprocess.\n         42┆ subprocess.call(x)\nRan 450 rules on 120 files: 1 findings.";
746        assert!(compress_output("semgrep scan", semgrep).is_some());
747        let swiftlint = "Linting Swift files in current working directory\nLinting 'A.swift' (1/3)\nLinting 'B.swift' (2/3)\nLinting 'C.swift' (3/3)\n/path/A.swift:10:5: warning: Line Length Violation: Line should be 120 chars or less (line_length)\n/path/A.swift:22:1: warning: Trailing Whitespace Violation: no trailing whitespace (trailing_whitespace)\n/path/B.swift:5:1: error: Force Cast Violation: avoid force casts (force_cast)\n/path/C.swift:8:3: warning: Todo Violation: resolve TODOs (todo)\nDone linting! Found 4 violations, 1 serious in 3 files.";
748        assert!(compress_output("swiftlint", swiftlint).is_some());
749    }
750
751    #[test]
752    fn routes_vcs_toolchain_domain() {
753        let jj = "@  qpvuntsm user@host.com 2024-01-01 12:00:00 1234abcd\n│  add feature x\n○  zzzzmmmm user@host.com 2024-01-01 11:00:00 main 5678efab\n│  initial commit\n~";
754        assert!(compress_output("jj log", jj).is_some());
755        let mise = "node    20.10.0  ~/.config/mise/config.toml\npython  3.12.0   ~/.tool-versions\nrust    1.75.0   ~/.config/mise/config.toml";
756        assert!(compress_output("mise ls", mise).is_some());
757        let buf_lines: Vec<String> = (0..30)
758            .map(|i| format!("proto/f{i}.proto:{i}:1:Field name should be lower_snake_case here."))
759            .collect();
760        let buf = buf_lines.join("\n");
761        assert!(compress_output("buf lint", &buf).is_some());
762        let gem = "Fetching rails-7.1.0.gem\nSuccessfully installed activesupport-7.1.0\nSuccessfully installed rails-7.1.0\nParsing documentation for rails-7.1.0\nInstalling ri documentation for rails-7.1.0\nDone installing documentation for rails after 3 seconds\n2 gems installed";
763        assert!(compress_output("gem install rails", gem).is_some());
764        let uv = "Resolved 42 packages in 120ms\nDownloading numpy (18.2MiB)\n 100%|████████| 18.2M/18.2M [00:01<00:00, 15.3MiB/s]\nDownloading pandas (12.1MiB)\n 100%|████████| 12.1M/12.1M [00:00<00:00, 14.1MiB/s]\nPrepared 5 packages in 1.2s\nInstalled 5 packages in 30ms\n + numpy==1.26.0\n + pandas==2.1.0";
765        assert!(compress_output("uv add pandas", uv).is_some());
766    }
767
768    #[test]
769    fn routes_edge_infra_domain() {
770        let pulumi = "Updating (dev):\n     Type   Name   Status\n +   pulumi:pulumi:Stack proj created\n +   aws:s3:Bucket b1 created\n +   aws:s3:Bucket b2 created\n +   aws:s3:Bucket b3 created\n +   aws:lambda:Function fn created\n\nOutputs:\n    url: \"https://x.example.com\"\n\nResources:\n    + 5 created\n    10 unchanged\n\nDuration: 35s";
771        assert!(compress_output("pulumi up", pulumi).is_some());
772        let linkerd = "kubernetes-api\n--------------\n√ can initialize the client\n√ can query the Kubernetes API\n√ is running the minimum kubectl version\n\nlinkerd-existence\n-----------------\n√ 'linkerd-config' config map exists\n× control plane pods are ready\n    some pods are not ready\n\nStatus check results are ×";
773        assert!(compress_output("linkerd check", linkerd).is_some());
774        let argocd = "Name:               argocd/myapp\nProject:            default\nSync Status:        Synced\nHealth Status:      Healthy\n\nGROUP  KIND  NAMESPACE  NAME  STATUS  HEALTH  HOOK  MESSAGE\n  Service ns s1 Synced Healthy\n  Service ns s2 Synced Healthy\n  Service ns s3 Synced Healthy\napps Deployment ns d1 OutOfSync Progressing";
775        assert!(compress_output("argocd app get myapp", argocd).is_some());
776        let vercel = "Vercel CLI 33.0.0\nInstalling dependencies...\nadded 420 packages in 12s\nBuilding...\nCompiling pages\nCollecting page data\nGenerating static pages\nProduction: https://my-app.vercel.app [45s]";
777        assert!(compress_output("vercel deploy --prod", vercel).is_some());
778        let wrangler = "wrangler 3.0.0\n-------------------\nyour worker has access to the following bindings:\n- KV Namespaces:\n  - CACHE: abc123\nTotal Upload: 1.2 MiB / gzip: 0.4 MiB\nUploaded my-worker (3.5 sec)\nPublished my-worker (1.2 sec)\n  https://my-worker.example.workers.dev";
779        assert!(compress_output("wrangler deploy", wrangler).is_some());
780    }
781
782    #[test]
783    fn unknown_command_returns_none() {
784        assert!(compress_output("some-unknown-tool --version", "v1.0").is_none());
785    }
786
787    #[test]
788    fn case_insensitive_routing() {
789        let output = "On branch main\nnothing to commit";
790        assert!(compress_output("Git Status", output).is_some());
791        assert!(compress_output("GIT STATUS", output).is_some());
792    }
793
794    #[test]
795    fn routes_vp_and_vite_plus() {
796        let output = "  VITE v5.0.0  ready in 200 ms\n\n  -> Local:   http://localhost:5173/\n  -> Network: http://192.168.1.2:5173/";
797        assert!(compress_output("vp build", output).is_some());
798        assert!(compress_output("vite-plus build", output).is_some());
799    }
800
801    #[test]
802    fn routes_bunx_commands() {
803        let output = "1 pass tests\n0 fail tests\n3 skip tests\nDone 12ms\nsome extra line\nmore output here";
804        let result = compress_output("bunx test", output);
805        assert!(
806            result.is_some(),
807            "bunx should compress when output is large enough"
808        );
809        assert!(result.unwrap().contains("bun test: 1 passed"));
810    }
811
812    #[test]
813    fn routes_deno_task() {
814        let output = "Task dev deno run --allow-net server.ts\nListening on http://localhost:8000";
815        assert!(try_specific_pattern("deno task dev", output).is_some());
816    }
817
818    #[test]
819    fn routes_jest_commands() {
820        let output = "PASS  tests/main.test.js\nTest Suites: 1 passed, 1 total\nTests:       5 passed, 5 total\nTime:        2.5 s";
821        assert!(try_specific_pattern("jest", output).is_some());
822        assert!(try_specific_pattern("npx jest --coverage", output).is_some());
823    }
824
825    #[test]
826    fn routes_mocha_commands() {
827        let output = "  3 passing (50ms)\n  1 failing\n\n  1) Array #indexOf():\n     Error: expected -1 to equal 0";
828        assert!(try_specific_pattern("mocha", output).is_some());
829        assert!(try_specific_pattern("npx mocha tests/", output).is_some());
830    }
831
832    #[test]
833    fn routes_tofu_commands() {
834        let output = "Initializing the backend...\nInitializing provider plugins...\nTerraform has been successfully initialized!";
835        assert!(try_specific_pattern("tofu init", output).is_some());
836    }
837
838    #[test]
839    fn routes_ps_commands() {
840        let mut lines = vec!["USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND".to_string()];
841        for i in 0..20 {
842            lines.push(format!("user {i} 0.0 0.1 1234 123 ? S 10:00 0:00 proc_{i}"));
843        }
844        let output = lines.join("\n");
845        assert!(try_specific_pattern("ps aux", &output).is_some());
846    }
847
848    #[test]
849    fn routes_ping_commands() {
850        let output = "PING google.com (1.2.3.4): 56 data bytes\n64 bytes from 1.2.3.4: icmp_seq=0 ttl=116 time=12ms\n3 packets transmitted, 3 packets received, 0.0% packet loss\nrtt min/avg/max/stddev = 11/12/13/1 ms";
851        assert!(try_specific_pattern("ping -c 3 google.com", output).is_some());
852    }
853
854    #[test]
855    fn routes_jq_to_json_schema() {
856        let output = "{\"name\": \"test\", \"version\": \"1.0\", \"items\": [{\"id\": 1}, {\"id\": 2}, {\"id\": 3}, {\"id\": 4}, {\"id\": 5}, {\"id\": 6}, {\"id\": 7}, {\"id\": 8}, {\"id\": 9}, {\"id\": 10}]}";
857        assert!(try_specific_pattern("jq '.items' data.json", output).is_some());
858    }
859
860    #[test]
861    fn routes_linting_tools() {
862        let lint_output = "src/main.py:10: error: Missing return\nsrc/main.py:20: error: Unused var\nFound 2 errors";
863        assert!(try_specific_pattern("hadolint Dockerfile", lint_output).is_some());
864        assert!(try_specific_pattern("oxlint src/", lint_output).is_some());
865        assert!(try_specific_pattern("pyright src/", lint_output).is_some());
866        assert!(try_specific_pattern("basedpyright src/", lint_output).is_some());
867    }
868
869    #[test]
870    fn routes_fd_commands() {
871        let output = "src/main.rs\nsrc/lib.rs\nsrc/util/helpers.rs\nsrc/util/math.rs\ntests/integration.rs\n";
872        assert!(try_specific_pattern("fd --extension rs", output).is_some());
873        assert!(try_specific_pattern("fdfind .rs", output).is_some());
874    }
875
876    #[test]
877    fn routes_just_commands() {
878        let output = "Available recipes:\n    build\n    test\n    lint\n";
879        assert!(try_specific_pattern("just --list", output).is_some());
880        assert!(try_specific_pattern("just build", output).is_some());
881    }
882
883    #[test]
884    fn routes_ninja_commands() {
885        let output = "[1/10] Compiling foo.c\n[10/10] Linking app\n";
886        assert!(try_specific_pattern("ninja", output).is_some());
887        assert!(try_specific_pattern("ninja -j4", output).is_some());
888    }
889
890    #[test]
891    fn routes_clang_commands() {
892        let output =
893            "src/main.c:10:5: error: use of undeclared identifier 'foo'\n1 error generated.\n";
894        assert!(try_specific_pattern("clang src/main.c", output).is_some());
895        assert!(try_specific_pattern("clang++ -std=c++17 main.cpp", output).is_some());
896    }
897
898    #[test]
899    fn routes_cargo_run() {
900        let output = "   Compiling foo v0.1.0\n    Finished `dev` profile\nHello, world!";
901        assert!(try_specific_pattern("cargo run", output).is_some());
902    }
903
904    #[test]
905    fn routes_cargo_bench() {
906        let output = "   Compiling foo v0.1.0\ntest bench_parse ... bench: 1234 ns/iter";
907        assert!(try_specific_pattern("cargo bench", output).is_some());
908    }
909
910    #[test]
911    fn routes_build_tools() {
912        let build_output = "   Compiling foo v0.1.0\n    Finished release [optimized]";
913        assert!(try_specific_pattern("gcc -o main main.c", build_output).is_some());
914        assert!(try_specific_pattern("g++ -o main main.cpp", build_output).is_some());
915    }
916
917    #[test]
918    fn routes_monorepo_tools() {
919        let output = "npm warn deprecated inflight@1.0.6\nnpm warn deprecated rimraf@3.0.2\nadded 150 packages, and audited 151 packages in 5s\n\n25 packages are looking for funding\n  run `npm fund` for details\n\nfound 0 vulnerabilities";
920        assert!(try_specific_pattern("turbo install", output).is_some());
921        assert!(try_specific_pattern("nx install", output).is_some());
922    }
923
924    #[test]
925    fn gh_api_passthrough_never_compresses() {
926        let huge = "line\n".repeat(5000);
927        assert!(
928            compress_output("gh api repos/owner/repo/actions/jobs/123/logs", &huge).is_none(),
929            "gh api must never be compressed, even for large output"
930        );
931        assert!(compress_output("gh api repos/owner/repo/actions/runs/123/logs", &huge).is_none());
932    }
933
934    #[test]
935    fn gh_log_flags_passthrough() {
936        let huge = "line\n".repeat(5000);
937        assert!(compress_output("gh run view 123 --log-failed", &huge).is_none());
938        assert!(compress_output("gh run view 123 --log", &huge).is_none());
939    }
940
941    #[test]
942    fn gh_structured_commands_still_compress() {
943        let output = "On branch main\nnothing to commit";
944        assert!(try_specific_pattern("gh pr list", output).is_some());
945        assert!(try_specific_pattern("gh run list", output).is_some());
946    }
947}