(kind entities.Kind)
| 330 | } |
| 331 | |
| 332 | func repoConfigKey(kind entities.Kind) string { |
| 333 | if kind == entities.KindInstruction { |
| 334 | return "instructions" |
| 335 | } |
| 336 | return string(kind) + "s" // "skills", "agents", "plugins" |
| 337 | } |
| 338 | |
| 339 | // MigrateRepoConfigFiles migrates legacy prompt_repos.json files to the |
| 340 | // canonical instruction_repos.json name. If instruction_repos.json already |
no outgoing calls