gitextract_f4rxdrb9/ ├── .claude/ │ ├── bin/ │ │ └── clj-paren-repair-claude-hook │ ├── hooks/ │ │ └── session-start.sh │ └── settings.json ├── .clj-kondo/ │ └── config.edn ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.clj ├── deps.edn ├── docs/ │ └── shootout.md ├── resources/ │ └── clj-kondo.exports/ │ └── net.clojars.john/ │ └── injest/ │ ├── config.edn │ └── injest/ │ └── path.clj ├── scripts/ │ └── ccweb-setup.sh ├── src/ │ └── injest/ │ ├── classical.cljc │ ├── data.cljc │ ├── impl.cljc │ ├── path.cljc │ ├── report/ │ │ └── path.cljc │ ├── report.cljc │ ├── state.cljc │ ├── test.clj │ ├── test.cljs │ └── util.cljc └── test/ └── injest/ ├── classical_test.cljc ├── clj_kondo_test.sh ├── edge_cases_test.cljc ├── equivalence_test.cljc ├── macro_expansion_test.clj ├── parallelism_test.cljc ├── path_test.cljc ├── path_unit_test.cljc └── transducer_detection_test.cljc