IsHiddenDirConvention returns true if the skill was discovered in a hidden (dot-prefixed) directory such as .claude/skills/ or .agents/skills/.
()
| 88 | // IsHiddenDirConvention returns true if the skill was discovered in a hidden |
| 89 | // (dot-prefixed) directory such as .claude/skills/ or .agents/skills/. |
| 90 | func (s Skill) IsHiddenDirConvention() bool { |
| 91 | return s.Convention == "hidden-dir" || s.Convention == "hidden-dir-namespaced" |
| 92 | } |
| 93 | |
| 94 | // HasHiddenDirSkills returns true if any of the given skills were discovered |
| 95 | // in hidden directories. |
no outgoing calls
no test coverage detected