diff --git skinr.api.php skinr.api.php
index 4372c9a..43ffbcb 100644
--- skinr.api.php
+++ skinr.api.php
@@ -93,16 +93,22 @@ function hook_skinr_config() {
 }
 
 /**
- * Register Skinr API information. This is required for your module to have
- * its include files loaded.
+ * Register a directory containing skinr plugins.
  *
- * The full documentation for this hook is in the advanced help.
+ * @param $type
+ *   The type of a plugin being collected; can be 'skins' or 'modules'.
+ *
+ * @return
+ *   The path where skinr should search for plugin files, relative to your
+ *   module's root. Omit leading and trailing slashes.
  */
-function hook_skinr_api() {
-  return array(
-    'api' => 1,
-    'path' => drupal_get_path('module', 'modulename'),
-  );
+function hook_skinr_api_2($type) {
+  switch ($type) {
+    case 'skins':
+      // You can just return $type, if you place your skin plugins into a
+      // sub-directory named 'skins'.
+      return $type;
+  }
 }
 
 /**
diff --git skinr.handlers.inc skinr.handlers.inc
index d78d468..df7b6b4 100644
--- skinr.handlers.inc
+++ skinr.handlers.inc
@@ -150,7 +150,6 @@ function skinr_submit_handler(&$form, $form_state, $module, $form_settings) {
 function skinr_skinr_api() {
   return array(
     'api' => 1,
-    'path' => drupal_get_path('module', 'skinr') . '/modules',
   );
 }
 
diff --git skinr.module skinr.module
index 1fe0538..8346a55 100644
--- skinr.module
+++ skinr.module
@@ -39,7 +39,8 @@ function skinr_module_implements_alter(&$implementations, $hook) {
  */
 function skinr_init() {
   module_load_include('inc', 'skinr', 'skinr.handlers');
-  skinr_module_load_all_includes();
+  // Load module plugins, but make sure we only load *.skinr.inc files.
+  skinr_load_includes('modules', '.skinr');
 }
 
 /**
@@ -421,38 +422,105 @@ function skinr_rule_visible($rid) {
 // Include file helpers.
 
 /**
- * Includes $module.skinr.inc files.
+ * Load include files for skinr implemented by all modules.
+ *
+ * @param $type
+ *   The type of a plugin; can be 'skins' or 'modules'.
+ * @param $filter
+ *   An optional include file name without .inc extension to limit the search to.
+ *
+ * @return
+ *   An array of hook details keyed by hook name. The hook details contain the
+ *   following keys:
+ *   - 'type': Available options are 'module' or 'theme'.
+ *   - 'name': The name of the owner module or theme of this plugin.
+ *   - 'plugin': The name of the skins plugin.
+ *   - 'path': This plugin's path.
+ *
+ * @see skinr_get_directories()
  */
-function skinr_module_load_all_includes() {
-  foreach (skinr_get_module_apis() as $module => $info) {
-    $file = DRUPAL_ROOT . "/$info[path]/$module.skinr.inc";
-    if (is_file($file)) {
-      require_once $file;
+function skinr_load_includes($type = 'skins', $filter = NULL) {
+  // Store hooks statically because the files can't be reincluded, so there's
+  // no use in being able to clear it.
+  static $hooks = array();
+
+  if (!isset($hooks[$type])) {
+    $hooks[$type] = array();
+
+    // Get a list of plugins.
+    $directories = skinr_get_directories($type);
+    foreach ($directories as $source_type => $type_directories) {
+      $file_list = array();
+      foreach ($type_directories as $source => $path) {
+        $file_list[$source] = drupal_system_listing("/{$filter}.inc\$/", $path, 'name', 0);
+      }
+
+      // Load plugins.
+      foreach (array_filter($file_list) as $source => $files) {
+        foreach ($files as $file) {
+          // If $filter was provided, strip that part from $file->name.
+          if (!empty($filter)) {
+            list($file->name) = explode($filter, $file->name, 2);
+          }
+
+          include_once './' . $file->uri;
+          $hooks[$type][$source . '_' . $file->name] = array(
+            'type' => $source_type,
+            'name' => $source,
+            'plugin' => $file->name,
+            'path' => dirname($file->uri),
+          );
+        }
+      }
     }
   }
+
+  return $hooks[$type];
 }
 
 /**
- * Get a list of modules that support skinr.
+ * Return a list of directories by modules implementing hook_skinr_include_directory().
+ *
+ * @param $plugintype
+ *   The type of a plugin; can be 'skins' or 'modules'.
+ *
+ * @return
+ *   An array containing module names suffixed with '_' and their defined
+ *   directory.
+ *
+ * @see skinr_load_includes()
  */
-function skinr_get_module_apis() {
-  $cache = &drupal_static(__FUNCTION__);
-
-  if (!isset($cache)) {
-    $cache = array();
-    foreach (module_implements('skinr_api') as $module) {
-      $function = $module . '_skinr_api';
-      $info = $function();
-      if (isset($info['api']) && $info['api'] == 1.000) {
-        if (!isset($info['path'])) {
-          $info['path'] = drupal_get_path('module', $module);
-        }
-        $cache[$module] = $info;
+function skinr_get_directories($plugintype) {
+  $directories = array();
+
+  // Load directories for modules.
+  foreach (module_implements('skinr_api_2') as $module) {
+    // Load the path where these plugins can be found.
+    $result = module_invoke($module, 'skinr_api_2', $plugintype);
+    if (isset($result) && is_string($result)) {
+      $directories['module'][$module] = drupal_get_path('module', $module) . '/' . $result;
+    }
+  }
+
+  // Load directories for themes.
+  foreach (list_themes() as $theme) {
+    if (!empty($theme->status) && !empty($theme->info['skinr'][$plugintype])) {
+      // Load the path where these plugins can be found.
+      $result = $theme->info['skinr'][$plugintype];
+      if (isset($result) && is_string($result)) {
+        $directories['theme'][$theme->name] = drupal_get_path('theme', $theme->name) . '/' . $result;
       }
     }
   }
 
-  return $cache;
+  return $directories;
+}
+
+/**
+ * Implements hook_skinr_api_VERSION().
+ */
+function skinr_skinr_api_2($type) {
+  return $type;
 }
 
 // -----------------------------------------------------------------------
@@ -758,24 +826,6 @@ function skinr_skin_info_status_default($default_status = 0) {
 }
 
 /**
- * Get a list of plugin hooks.
- *
- * @return
- *   An array of hook details keyed by hook name. The hook details contain the
- *   following keys:
- *   - 'type': Available options are 'module' or 'theme'.
- *   - 'name': The name of the owner module or theme of this plugin.
- *   - 'plugin': The name of the skins plugin.
- *   - 'path': This plugin's path.
- */
-function skinr_plugin_hooks() {
-  // @todo Load the include files and get an array of hooks; we need to
-  //   know which module and which plugin comprises the hook.
-  $hooks = array();
-  return $hooks;
-}
-
-/**
  * Helper function to prepend a path to an array of stylesheet or script filenames.
  *
  * If the url is absolute (e.g. the url start with 'http://' or 'https://')
@@ -881,19 +931,21 @@ function skinr_get_skin_info() {
     $skin_infos = array();
 
     // Load skins from hook_skinr_skins().
-    $hooks = skinr_plugin_hooks();
+    $hooks = skinr_load_includes('skins');
     foreach ($hooks as $hook => $source) {
       $function = $hook . '_skinr_skin_info';
-      $result = $function();
-      if (isset($result)) {
-        if (!is_array($result)) {
-          $result = array($result);
-        }
+      if (function_exists($function)) {
+        $result = $function();
+        if (isset($result)) {
+          if (!is_array($result)) {
+            $result = array($result);
+          }
 
-        // Make any programatic changes.
-        skinr_skin_info_process($result, $source);
+          // Make any programatic changes.
+          skinr_skin_info_process($result, $source);
 
-        $skin_infos = array_merge_recursive($skin_infos, $result);
+          $skin_infos = array_merge_recursive($skin_infos, $result);
+        }
       }
     }
 
@@ -919,22 +971,24 @@ function skinr_get_group_info() {
     $group_infos = array();
 
     // Load skins from hook_skinr_groups().
-    $hooks = skinr_plugin_hooks();
+    $hooks = skinr_load_includes('skins');
     foreach ($hooks as $hook => $source) {
       $function = $hook . '_skinr_group_info';
-      $result = $function();
-      if (isset($result)) {
-        if (!is_array($result)) {
-          $result = array($result);
-        }
+      if (function_exists($function)) {
+        $result = $function();
+        if (isset($result)) {
+          if (!is_array($result)) {
+            $result = array($result);
+          }
 
-        // Make any programatic changes.
-        // Merge in defaults.
-        foreach ($result as $group_name => $group_info) {
-          $result[$group_name] = array_merge(skinr_group_info_default(), $group_info);
-        }
+          // Make any programatic changes.
+          // Merge in defaults.
+          foreach ($result as $group_name => $group_info) {
+            $result[$group_name] = array_merge(skinr_group_info_default(), $group_info);
+          }
 
-        $group_infos = array_merge_recursive($group_infos, $result);
+          $group_infos = array_merge_recursive($group_infos, $result);
+        }
       }
     }
