--- a/replicate.module
+++ b/replicate.module
@@ -42,6 +42,9 @@ function replicate_entity($entity_type, $entity) {
       list($entity_id) = entity_extract_ids($entity_type, $clone);

     if (isset($entity_id)) {
+      // Let other modules do special actions on the created entity.
+      drupal_alter('replicate_entity_created', $clone, $entity_type, $entity, $entity_id);
+      
       return $entity_id;
     }
   }