It seems you've done a lot more with them than I have. I'm looking forward to crashing the compiler -- the true badge of honour amongst Scala developers ;-)
They still have uses for disambiguating implicits. There are at least four monoids for the Int: 0/+, 1/*, MinValue/Max, and MaxValue/Min. It is useful to tag them so one can specify which monoid one wants.
1st they don't propagate, call a function on the tagged type and it returns the underlying type.
2nd they aren't type safe against the tagged type, so you can pass tagged types into functions that take the underlying type by default.
3rd in practice my code with tagged types ends up having lots of boilerplate and/or magic code that is hard to understand.
4th there are some pretty heinous compiler bugs that you will encounter with tagged types.