>>17
Unless I misunderstood your question, and you just want to learn CLOS in CL, then there's a few good books/tutorials:
Practical Common Lisp has some good chapters on general-purpose CLOS usage, and practical examples.
Keene 's Object-Oriented Programming in Common Lisp is another book which is mostly composed of practical examples of CLOS usage.
The Hyperspec talks about the more advanced features such custom method combinations which I haven't found discussed, however here's a simple tutorial:
http://www.cawtech.demon.co.uk/clos/define-method-combination.html
As for the MOP and actually understanding CLOS inside out, there is no other book than the AMOP. I've found reading AMOP to be quite a nice read, the author shows implementing CLOS within CLOS and then he shows how to bootstrap the system. It also shows how the meta-object protocol is derived naturally while implementing it. The sample code is quite easy to read and understand if you follow the book.