From 35c1c4bfa4b42bced72ba48dafdb7d84f3671f6e Mon Sep 17 00:00:00 2001 From: yumosx Date: Thu, 26 Feb 2026 09:02:49 +0800 Subject: [PATCH] refactor: remove unused BuiltinSkill struct The struct was not being used anywhere in the codebase, so it's safe to remove it to reduce clutter and improve maintainability. --- pkg/skills/installer.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/skills/installer.go b/pkg/skills/installer.go index 556b8a4cf..2650e55d6 100644 --- a/pkg/skills/installer.go +++ b/pkg/skills/installer.go @@ -23,12 +23,6 @@ type AvailableSkill struct { Tags []string `json:"tags"` } -type BuiltinSkill struct { - Name string `json:"name"` - Path string `json:"path"` - Enabled bool `json:"enabled"` -} - const maxRetries = 3 func shouldRetry(statusCode int) bool {