Check out http://www.ubercart.org/docs/api/hook_add_to_cart for attributes
here's another for stock check
<?php
$stock = uc_stock_level($node->model);
if ($stock > 0) {
print 'Status: In Stock';
}else{
print 'Status: Out Of Stock';
}
?>


Joined: 11/10/2007