I'd agree 500 lines is a good point to think about refactoring once a class gets that large - it's more of a guidance thing, as others have said the main thing is the Single Responsibility Principle - if you have a class of over 500 lines it's highly likely that too many responsibilities are being shoehorned into that class. Wasn't it the Australian military that insisted on no more than 20 lines per method, and no more than 20 methods per class (roughly corresponding to 400-500 lines)? It seems like a very good standard to insist on to me - I can feel the quality and reliability of my code improving as I turn a 200 line method into a collection of simple easily testable 20 line methods - often this leads to code reuse too as those simple methods are more likely to be useful for other purposes than one complex giant single purpose method. The same goes for large classes - one huge god class just isn't likely to be readable, maintainable, testable or reusable to the same degree a nicely refactored source tree containing a larger number of small classes and short methods will be.
Just to let you know where I'm coming from - I work with a developer who always puts the main functionality of whatever he's working on in ONE God class - currently creeping towards 7000 lines long (Java). He claims that he's 'setting a higher standard' by keeping everything in one convenient place. I think hanging's too good for him, but unfortunately we're the only two Java developers in the office and he's better at b*llsh*t than me. What can you do? (Apart from grumble on stackoverflow and check the job sites).
Seriously I don't think non-programmers have explained to them enough that software can 'rust' just like real physical machines through neglect, poor care or mistreatment - I think gardening's a good analogy if you want the lawn to look nice you need to mow, weed and prune frequently! In fact software is frequently the most complex 'machinery' in use in the world, but often put together to a far shoddier standard than simpler machines such as cars - I think it's partly because code is more intangible to the end-user/customer - all they see is behaviour of the software, occasionally they see bugs or slow roll out of new features but don't make the connection between these bugs, slow release cycles or reduced functionality and the underlying code quality. Maybe one day everyone will be a coder to some degree or other and these cultural gaps won't happen anymore ;-). I suspect It's often not the case that cowboy coders don't know better, it's that the customer who pays the bill doesn't know better, and cowboy coders get to look better in the short term by cutting corners.
To my mind the Agile mindset is in no way in conflict with maintaining a high standard of code - refactoring, reviewing and tidying code should be a daily part of our lives.
Unfortunately the stakeholders and customers never heard that side of the 'agile' sales pitch - YAGNI doesn't mean turning your software into an old Trabant car in a shed covered in pidgeon p*o- it's up to us to emphasise the other side of the coin, and wipe some of the mess off the bonnet occasionally.