feat: update chat, settings, prompts and system info modules

This commit is contained in:
2026-06-16 10:33:54 +08:00
parent b86c29c6a4
commit dd13d21c6a
18 changed files with 1362 additions and 43 deletions

View File

@@ -25,7 +25,7 @@ func scanSkillsDir(dir string, enabled bool) []models.SkillInfo {
}
var skills []models.SkillInfo
for _, e := range entries {
if !e.IsDir() {
if !e.IsDir() || strings.HasPrefix(e.Name(), ".") {
continue
}
skillPath := filepath.Join(dir, e.Name())