diff --git a/drubuntu.drush.inc b/drubuntu.drush.inc
index af1308e..ce5168e 100644
--- a/drubuntu.drush.inc
+++ b/drubuntu.drush.inc
@@ -288,6 +288,11 @@ function drush_drubuntu_get_platform($name, $create) {
     if (!drush_valid_drupal_root($platform)) {
       return drush_set_error('DRUBUNTU_CORE_DOWNLOAD_FAILED', dt('Drupal core could not be downloaded successfully.'));
     }
+    // Symlink development modules into the platform.
+    // TODO: Determine Drupal version and target directory accordingly.
+    drush_mkdir($platform . '/sites/all/modules');
+    $development_modules = $_SERVER['HOME'] . '/' . $workspace . '/development-modules';
+    drush_op('symlink', $development_modules, $platform . '/sites/all/modules/development-modules');
   }
 
   $uri = $site_name . '.' . basename($platform) . '.' . drush_get_option('hostname', 'localhost');
