/- Infoductor.Comonad — comonadic proof-pattern detection / extraction. Imports every Comonad sub-module. Downstream consumers can either `import Infoductor.Comonad` for the whole bundle, or pick individual modules. This sub-library uses Mathlib's `Tactic.Explode` to decompose proof terms into a step-by-step IR. Pulling Mathlib is the cost; the algorithms over the IR (FNV content hashing, shape detection, cluster extraction, convolution) are pure Lean and consumer-agnostic. Originally ported from `mm-link/mm-lean/src/{ComonadFinder, ComonadCommands, Convolution, ExtractConsts, ExtractDefn, GridView}.lean` (2026-05-01). Mathematica-specific output formatters were dropped from the GridView port; the plain-text table / tree / view_info formatters remain here. Mathematica consumers can re-add their formatters in `mm-lean` (or a downstream Mathematica-bridge project). -/ import Infoductor.Comonad.GridView import Infoductor.Comonad.ExtractConsts import Infoductor.Comonad.ComonadFinder import Infoductor.Comonad.ComonadCommands import Infoductor.Comonad.ExtractDefn import Infoductor.Comonad.Convolution