I'm not sure what you think you need here. As you probably know Roo already deletes files that are not needed. If you delete the java source file for instance Roo deletes the corresponding itd-files automatically, likewise if you push in all the methods from these.
The write once files, that I assume is what you want to get rid of, how is Roo supposed to know which ones you don't want to keep around? And why is write-once files the responsibility of Roo, even when it doesn't govern them?
An automatic remove of, unused or unreferenced files for instance, is better suited for an IDE IMHO.
If you want to remove files from the command line, also many files at once in a controlled semiautomatic way, on unix systems you only need to utilize grep and rm in another terminal window opened to your your source folders.
So say you need to get rid of all jspx-files you'd use something like:
Code:
find * -regex '.*\.jspx' -exec rm {} ;