I like the tool mytop. It's just like top in the *nix world, but for MySQL itself. And it basically does exactly what you are asking...
As far as other optimization techniques, I personally really like using Apache Bench for testing MySQL queries. Basically, I create a simple script that does nothing but execute the query I want to improve. Then, I run AB on it with different concurrency settings. The benefit is that you get an idea on how the query scales, not just how fast it runs. Who cares if a query is fast for a single run. What you really care about is how fast in runs with load. So:
<?php
$my = new MySQLi($host, $user, $pass);
$my->query('SELECT foo');
Then, using AB:
ab -c 10 -n 10000 http://localhost/path/to/my/test.php
Then, by adjusting the concurrency parameter (-c 10) you can test for different concurrent load. That way, you can really look at how your tweaks effect the exact query rather than guessing with other metrics.