@industry-theme/agent-panels 0.2.18 → 0.2.19

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.
@@ -2579,7 +2579,7 @@ const findSkillFiles = (fileTree, isBrowserMode = false) => {
2579
2579
  if (isBrowserMode) {
2580
2580
  return file.name === "SKILL.md" || file.name.toLowerCase() === "skill.md";
2581
2581
  }
2582
- const isInSkillDir = path2.includes(".agent/skills/") || path2.includes(".claude/skills/") || path2.includes("/skills/");
2582
+ const isInSkillDir = path2.includes(".agent/skills/") || path2.includes(".claude/skills/") || path2.includes("skills/");
2583
2583
  return isMarkdown && isInSkillDir;
2584
2584
  });
2585
2585
  return skillFiles.map((file) => file.relativePath);