And yet, because many of the users of the library are just using Either, both will still probably have to exist anyways unless Gabriel also wants to raise a similar hue and cry.
My experience from talking to folks is that they start using errors with Either and then upgrade to EitherT since they already know how to use the basic combinators. The loss of that pedagogical vector to adoption would be a rather big blow to the adoption of the package.
The nature of those combinators is that people use them to reduce the noise in their code. EitherT e Identity is noisier than Either to pattern match on and work with when you're done tossing code through errors combinators.
-Edward