One more question regarding this. After adding the hook as mentioned above, in the run() method of the main file of the extension, I've used within the callback function a method from a model as follows:
Yii::app()->hooks->addAction('console_command_hourly_after_process', function(){
Model::staticMethodName();
});
But it seems not to be triggered or working. Do you have any further hint on this, or how to test the cronjob if it takes this into account ? the extension is installed and enabled properly.