xtrm-cli 2.1.28 → 2.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -41069,7 +41069,7 @@ async function getAvailableProjectSkills() {
41069
41069
  for (const entry of entries) {
41070
41070
  const entryPath = import_path11.default.join(PROJECT_SKILLS_DIR, entry);
41071
41071
  const stat = await import_fs_extra11.default.stat(entryPath);
41072
- if (stat.isDirectory()) {
41072
+ if (stat.isDirectory() && await import_fs_extra11.default.pathExists(import_path11.default.join(entryPath, ".claude"))) {
41073
41073
  skills.push(entry);
41074
41074
  }
41075
41075
  }