In the last post I did in this little series of tooling improvements, the main draw of Bat was its syntax highlighting. This post is kind of that on steroids.
I came across Difftastic very recently and am already wowed by it.
Difftastic is a command-line diff tool for showing the difference between two files. We already have diff
which shows you added, removed, or changed lines, but Difftastic operates on the structure of the parsed document, rather than just the raw lines.
A visual example is probably the best way to describe this. Here is what a traditional diff might look like:

And here is what it looks like in Difftastic:

It highlights not only the change in the line, but also the change in the JSON value.
I've seen stuff like this previously in graphical tools like Kaleidoscope (which I also adored until their recent change in pricing model):

However, having this in the Terminal is quite powerful, particularly for remote scenarios such as over SSH (or Mosh now, as per earlier in the series). Difftastic also goes one step further by underlining the segment of the value which changed (in the above screenshots, just the 8
to a 9
).
I've only been using this for a short period so far, but it seems quite nice and useful and will probably find a way into my default toolbox.
Difftastic is available for most (if not all) desktop platforms.