diff --git a/fserver.drush.inc b/fserver.drush.inc
index 4326eb7..bb96440 100644
--- a/fserver.drush.inc
+++ b/fserver.drush.inc
@@ -22,13 +22,34 @@
 function fserver_drush_command() {
   $items = array();
   $items['fserver-status'] = array(
-    'description' => 'Determine the packaging status of a project.',
+   'description' => 'Determine the packaging status of a project.',
+   'arguments' => array(
+      'project'  => 'Machine name of project to display packaging status for, optional, default all projects.',
+    ),    
+    'examples' => array(
+      'drush fserver-status' => 'Display packaging status for all projects.',
+      'drush fserver-status fserver' => 'Display packaging status for project fserver.',
+    ),
   );
   $items['fserver-package'] = array(
     'description' => 'Update packaging for a project.',
+    'arguments' => array(
+      'project'  => 'Machine name of project to create a release for, optional, default all projects.',
+    ),    
+    'examples' => array(
+      'drush fserver-package fserver' => 'Create release node for project fserver.',
+      'drush fserver-package --user=bot.marvin' => 'Create release node for all projects and use uid of supplied option as uid for release nodes.',
+    ),
   );
   $items['fserver-distro'] = array(
     'description' => 'Update packaging for a distribution.',
+    'arguments' => array(
+      'distro'  => 'Machine name of distro to create a release for.',
+    ),    
+    'examples' => array(
+      'drush fserver-distro --version=6.x-1.0 fserver6_profile' => 'Create release node for distro fserver6_profile with version 6.x-1.0.',
+    ),
+
   );
   return $items;
 }

