(e repoEntry, kind string)
| 637 | } |
| 638 | |
| 639 | func entryPath(e repoEntry, kind string) string { |
| 640 | switch kind { |
| 641 | case "skill": |
| 642 | return e.SkillsPath |
| 643 | case "agent": |
| 644 | return e.AgentsPath |
| 645 | case "instruction": |
| 646 | return e.AgentsPath |
| 647 | case "plugin": |
| 648 | return e.PluginPath |
| 649 | } |
| 650 | return "" |
| 651 | } |
| 652 | |
| 653 | func defaultTargetApps(kind string) []string { |
| 654 | switch kind { |